Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
~10K People Reached
About Me

Systems Engineer

Favorite Tags
Member Avatar for CoolAtt

Hi All, i have been struggling with getting the "Description" text as an additional search engine meta.Am refering to the "Description" which is displayed below the title of the Blog. The "Meta tag Description" is showing up. please see attachment to better understand what am refering to. ![299d4673a5ffe0915db1fc20bc3016ed](/attachments/large/1/299d4673a5ffe0915db1fc20bc3016ed.jpg "299d4673a5ffe0915db1fc20bc3016ed") ![2c0874385efed66354747986000484d2](/attachments/large/1/2c0874385efed66354747986000484d2.jpg …

Member Avatar for Helalbd
0
268
Member Avatar for CoolAtt

hi all, I want to create a very minimal explorer(no treeview) that only shows the contents of a specific folder. i made a drawing of what i want to achieve: ![b9c3b63541f7b73ceb44e2d87eae4b6a](/attachments/large/1/b9c3b63541f7b73ceb44e2d87eae4b6a.png "b9c3b63541f7b73ceb44e2d87eae4b6a") in the above picture, the red box represents a very minimal file explorer (square shaped) that opens only …

Member Avatar for Ancient Dragon
0
118
Member Avatar for CoolAtt

Hi All, I got this code from a forum & tried it on g++/Linux. In the code below i put NULL to a pointer variable but didnt get any errors. #include <iostream> using namespace std; class A { private: int _dmember; public: void func() { cout<<"Inside A!! "<<endl; cout<<_dmember; // …

Member Avatar for CoolAtt
0
309
Member Avatar for CoolAtt

Hi all, i read that the .net framework is a wrapper around the win32 api. can someone please clarify the following for me: 1.if .net is a wrapper around win32 api it means we are able to do everything with .net that we used to do with win32 api. then …

Member Avatar for deceptikon
0
294
Member Avatar for CoolAtt

Hi All, I have plans to develop & sell software online. i read somewhere that creating the software product is only about 10% of the game , 90% needs to be the marketing/promo side. Google Ads & Yahoo Ads are very popular for internet marketing. i want to know what …

0
128
Member Avatar for CoolAtt

Hi All, I want to get all the IPs of the A RECORDS for **mail.google.com**. The aim is to deny access to these IPs. I learnt that mail.google.com has several IPs. I did the following steps: 1. whois google.com 2. I got the following as its DOMAIN SERVERS: ns3.google.com ns2.google.com …

Member Avatar for CimmerianX
0
279
Member Avatar for CoolAtt

Hi All, I need help with iptables to allow a specific IP to access a destination (FaceBook) The following rule blocks facebook access to everyone in the company(this rule works successfully): iptables -A FORWARD -p all -d $ip -j REJECT (The ip address is read from a text file.) Now …

Member Avatar for CoolAtt
0
344
Member Avatar for CoolAtt

hi all, i have 3 php websites , each one requires login (same username+password for all of them) they run on apache virtual hosts on the same machine. i want to centralise login on a single page by adding 3 forms on a page so that when i click on …

Member Avatar for diafol
0
251
Member Avatar for CoolAtt

hi . can someone plz explain how to do regex in C. input: a text file. aim: read each line from the text & check if a RegEx pattern exists. finally return that pattern if it exists. plz share any algo or code snippets if u have.thx.

Member Avatar for rubberman
0
229
Member Avatar for CoolAtt

hi all, i want to use curl to automatically login on behalf of a user & get the SessionID for that user. i will configure php to store the sessionID in the url instead in a cookie on the user's browser. once curl has login on behalf of the user, …

Member Avatar for cwarn23
0
102
Member Avatar for CoolAtt

Hi All, I have [B]roundcube webmail,phpBB forum & wiki[/B] hosted on one machine using [B]apache virtual hosts[/B]. The problem is i have to log into each of the services(mail.domain.mu , forum.domain.mu ,wiki.domain.mu) to get access. All of the 3 sites uses LDAP for authentication and hence a user provides same …

0
117
Member Avatar for CoolAtt

Hi all. Am using amavis for email scanning but got stuck somewhere in the configuration file. I want to add some custom code to populate an array from a postgresql database. (Amavis and its conf are written in Perl) Below is part of the configuration file which i want to …

0
79
Member Avatar for CoolAtt

hi all. i have read a text line from a file using [CODE]fgets() [/CODE]into a char array [CODE]char astr[30][/CODE] then i did [CODE]strcat(astr,"secondstring") [/CODE] The output of [CODE]printf (astr)[/CODE] is appearing on 2 lines instead on same line. plz advise me wat i did wrong. thanks.

Member Avatar for Aia
0
5K
Member Avatar for CoolAtt

hi everyone. my program uses an infinite loop & runs forever. i want to run some codes when i decide to stop the program using CTRL-C. Is this possible ? Please advise me. thanks

Member Avatar for CoolAtt
0
241
Member Avatar for CoolAtt

Hi. am using fgets() to read lines from a text file. the file is being updated after a few seconds. i want to read and process the last appended line at the end of the file. i tried the following: [code=c] while(true){ //infinite loop if(fgets(line,size,fp)!=NULL) process line. } [/code] plz …

Member Avatar for CoolAtt
0
700
Member Avatar for CoolAtt

hi . i have read a line from a text file & stored it in a string using fgets(). the file contains the following line: C:\Windows\ [CODE]char myline[20]; fgets(myline,20,fp);[/CODE] now i want to append '' in the string so that when i print [B]myline [/B]output is C:\\Windows\\ Any idea or …

Member Avatar for CoolAtt
0
152
Member Avatar for CoolAtt

plz explain how to do this the proper way. [CODE]main.c ===== struct names{ // definitions ----- ---- ---- } struct names x; function1(&x); file2.c ====== function1(struct names *x){ ---- ---- ---- }[/CODE] am getting warning: [B]'struct names' declared inside parameter list[/B]

Member Avatar for ArkM
0
130
Member Avatar for CoolAtt

hi. actually i hv to read lines from a file which is getting updated at the same time( new lines are appended at the end of the file). plz suggest a way to implement it in c. thx.

Member Avatar for Murtan
0
148
Member Avatar for CoolAtt

Hi. i have to extract the following line: C:\WINDOWS\lsass.exe i tried [QUOTE](\w:\\.*\.\w{3})[/QUOTE] it worked on some strings only. any suggestions ? plz help.

Member Avatar for CoolAtt
0
86
Member Avatar for CoolAtt

hi all. the following is working fine for me char * hex = (..dynamically allocated memory with malloc..); *(hex+0) = 0x43; *(hex+1) = 0x2b; i now have to assign a string in the format 43 2b 1c to the char * array at runtime. anyone did it ? plz guide.

Member Avatar for Murtan
0
1K
Member Avatar for CoolAtt
Member Avatar for CoolAtt

hi ! does anyone know how to install & use the perl compatible regex (PCRE) api in Bloodshed Dev++ ?

0
88