Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
3 Commented Posts
0 Endorsements
Ranked #2K
~7K People Reached
Favorite Tags

29 Posted Topics

Member Avatar for majestic0110

1) Cowboy Bebop (seems popular with the CS / IT crowd) 2) Full Metal Panic (not because it stands out as a great anime but every time I watch it it makes me laugh so hard my sides hurt) 3) Ghost in the Shell SAC1 (haven't seen 2 yet but …

Member Avatar for Kusanagi03
0
352
Member Avatar for slfisher

Apparently he had recently been persuaded to keep the router configuration in flash. he then set the routers to disable password recovery as a security measure because now there was a permanent record of everything. I don't know but I think that the punishment for the 'crime' is completely out …

Member Avatar for Major Major
0
557
Member Avatar for bzptqj

does your distro use SELinux? if so try disabling it temporarily with setenforce 0 if everything starts working re-enable SELinux and use the audit2allow and attendant commands to search your audit logs and make a local rules file and import it into your SELinux settings.

Member Avatar for tkhanna
0
707
Member Avatar for GrimJack

[QUOTE=vegaseat;609089]I think he used to believe in evolution, but now believes in creationism. Changing your mind is the prerogative of old folks.[/QUOTE] s/old folks/vote grubbing politicians/g Fixed.

Member Avatar for GrimJack
0
716
Member Avatar for kenji

you've got your causality reversed in the first if statement. [CODE] if ($env eq "GET") { validate(); } else { displayform(); } [/CODE]

Member Avatar for Major Major
0
106
Member Avatar for Dani

[QUOTE=jbennet;613063]exactly. For programming IMHO the most respected is narue, sos and salem for spyware, maybe crunchie or gerbil jasimp, zandingo/zandiago or whatever hes called, and serunson, are also really good at welcoming newbies in the welcome board[/QUOTE] If I might, I'll weigh in on this, I know I'm new here …

Member Avatar for William Hemsworth
0
996
Member Avatar for maydhyam

I remember the days when I pored over specs and megaHertz and compatibility specs. Those heady days of trying to squeeze every drop out of not only the system but the wallet too :). Now my advice is if you want a generic computer for run-of-the-mill tasks, go for a …

Member Avatar for Major Major
0
136
Member Avatar for StandardsDT

Remedy (at least as implemented where I am employed) is HORRIBLE, the helpdesk staff here do nothing but complain about it all day long. I thank my stars that I really only have to use it to close the odd ticket. As an internal bug tracker we have implemented zenTrack. …

Member Avatar for angellpparker
0
261
Member Avatar for hhheng
Member Avatar for kahaj

[QUOTE=kahaj;658863][code] sub send print header; print <<endHtml; [/code][/QUOTE] no curly braces after sub send. [CODE]sub send() { #code } [/CODE] send() is never called in the main body of the cgi.

Member Avatar for kahaj
0
143
Member Avatar for pauljahill

use [icode]int main()[/icode] because [ICODE]void main()[/ICODE] is bad just remember to [icode]return 0; [/icode] at the end of your code.

Member Avatar for Major Major
0
121
Member Avatar for plike922

[icode]shape = GetLine();[/icode] don't use GetLine(), use something like scanf() you don't have a default: statement for your switch statement and it looks for all the world like you're trying to call variables as functions in your case statement. [CODE]string box; case 2:box();break;[/CODE] after that it looks like you're trying …

Member Avatar for @bhi
0
195
Member Avatar for kartik14

official samba howto: [URL="http://www.samba.org/samba/docs/man/Samba-HOWTO-Collection/"]http://www.samba.org/samba/docs/man/Samba-HOWTO-Collection/[/URL]

Member Avatar for Belrog
0
178
Member Avatar for shankhs

Another general rule of thumb: If you think one of the standard libraries has problems, look at your code again. These libraries are subject to a lot of scrutiny. I'm not saying that there is no possibility of errors in them - it's just much MUCH more likely that a) …

Member Avatar for Prabakar
0
154
Member Avatar for bgbiplab

[QUOTE=KevinADC;658054]The answer is 49.[/QUOTE] 42. When you know the question you will understand the answer :) OK I'm gonna get sued by Douglas Adams' estate now. I'll even help out, first you open the file... then you read it... then you use regular expressions to find and remove duplicates, then …

Member Avatar for KevinADC
0
173
Member Avatar for w0h0m

[QUOTE=chaosprime;658925]Y'know, that sorta looks less like a 'challenge' and more like an actual forum abuse script.[/QUOTE] You're right. especially when "spamming complete" shows up at least twice in the code.

Member Avatar for Major Major
0
152
Member Avatar for Ancient Dragon

only problem I've encountered with logitech wireless KB/ mice is with the bluetooth mx5000 set, it tends to freeze every 4-5 hours for about 10 seconds and then everything is good for another few hours based on this happening about 2 times every workday to me. To be fair there …

Member Avatar for Major Major
0
100
Member Avatar for rouxpepe

Unfortunately all of this boils down, all too often, to budget. TPHTA is correct in that no business can afford to lose all of it's data. The question is how much data loss is acceptable. This will determine much of the cost of your backup solution. a monthly off-site backup …

Member Avatar for Major Major
0
55
Member Avatar for me_roy

[QUOTE=Salem;656666]> char c[10]; /* declare a char array */ ... > while(fgets(c, 25, file)!= NULL) Do you know why you said 25 here? Do you know why you should have said 10?[/QUOTE] heh nice, here I was ready to give you both barrels about the behaviour of fgets() and then …

Member Avatar for Major Major
0
119
Member Avatar for plike922

[QUOTE] [CODE] printf("The GCD of %d and %d is %d",n1,n2,GCD(g)); [/CODE][/QUOTE] Try this instead [CODE] printf("The GCD of %d and %d is %d",n1,n2,GCD(n1,n2)); [/CODE]

Member Avatar for Prabakar
0
180
Member Avatar for bdb4269

Your problem might have something to do with samba itself. try mounting the samba share with ,lfs at the end of your -o string that being said it sounds like both your servers are *NIX based, why use samba at all? read up on rsync.

Member Avatar for Fest3er
0
593
Member Avatar for rraj.be

Hi, I'd grab the source code for a small but viable app (from sourceforge or the like) then see how the code is structured and try to understand why programming decisions were made then. I'd grab a second and compare the programming styles. If the two seem similar in style, …

Member Avatar for Jishnu
0
122
Member Avatar for prakasnisha

[QUOTE] [ICODE] @FieldValue1_array[$i] = $FieldValue;[/ICODE][/QUOTE] change this to [ICODE]$FieldValue1_array[$i] = $FieldValue;[/ICODE] That will fix your warning

Member Avatar for Major Major
0
223
Member Avatar for Jodean

Windows XP64 has the same build version as windows server 2003 64 bit. Try the 64 bit 2003 drivers some should work. I've got a DLink NIC at home it works well, they had 64-bit drivers. The Marvell Yukon GigE on board Port didn't have 64bit drivers when I built …

Member Avatar for jbennet
0
79
Member Avatar for awi123

[QUOTE=awi123;611635]the program asks to calculate the power of a number, for eg. if 2 is entered as the base and 3 is th power it should display 8.[/QUOTE] I assume your question has to do more with the power than [ICODE] #include <math.h> #include <stdio.h> int main () { double …

Member Avatar for lich
0
120
Member Avatar for shrutijadhav

I Think [QUOTE][ICODE]char buffer[40];[/ICODE][/QUOTE] I See [QUOTE][ICODE]p=32; sprintf(buffer[0],"%d",p); q=4 sprintf(buffer[1],"%d",g); TA=100; sprintf(buffer[2],"%d",TA);[/ICODE][/QUOTE] Your Problem You've set buffer as an array of characters with length 40 and then you're trying to sprint multiple long integers to different parts of that buffer which probably won't work too well. try with one variable …

Member Avatar for Major Major
0
161
Member Avatar for jephthah

mmm Perl. Perl is not dead, it's just not a fashionable language and it's intimidating as hell for novices. ( I know avoided it like the plague for years :) ) FORTRAN likewise is not dead, in certain scientific circles at least. As a general programming language it's deader than …

Member Avatar for Major Major
0
262
Member Avatar for k2k

[QUOTE=k2k;574314]hi, I am trying to take unix administration and shell scripting courses this summer. I have done 2 courses of C++ and a course of java. However i have never learned C. Anyone please give me some opinion if learning C is necessary for Unix. Since C++ is inherited from …

Member Avatar for Major Major
0
86
Member Avatar for chennamashok

[QUOTE=chennamashok;609655]related on data encryption & cryptographic systems[/QUOTE] try the free sample chapters of the handbook of applied cryptography: [URL="http://www.cacr.math.uwaterloo.ca/hac/"]http://www.cacr.math.uwaterloo.ca/hac/[/URL]

Member Avatar for Major Major
0
37

The End.