Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
60% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
0 Endorsements
Ranked #1K
~25.1K People Reached
About Me

I work at my school for $6 an hour. 1 hour a day. 5 days a week. I bike like crazy. Im not getting my drivers license ever. I go to the top school in the state. i love people a lot, i love nature a lot. im a vegetarian
yay!

Interests
Biking, poetry, loving
PC Specs
computer on vista 64 ultimate amd athlon 2.2 ghz 4 gigs of ram 750gigs of hdd space 2 cd/dvd rw drives…

123 Posted Topics

Member Avatar for nschessnerd

Hey, Ive been working on a program for a while, and once in a while it will crash for an unknown reason. I checked the error log and it says exception 0xc0000005 which means i'm writing somewhere i shouldn't. What are some common causes of this? Also is there anyway …

Member Avatar for MastAvalons
0
217
Member Avatar for libran

So... you've got a few problems with your code... one really really bad thing is that you make each method throw an exception. that means you will never see if there are any errors. You were getting a bunch of nulls because you were storing values in an array of …

Member Avatar for stultuske
0
1K
Member Avatar for nschessnerd

Hey, I have some background with db creation and have done lot's of work creating and programming with RDBs. I am currently working on a huge website and I am curious about cost/benifits of using a json array vs a relational table. My gut says I should be using a …

Member Avatar for debasisdas
0
110
Member Avatar for christina>you
Member Avatar for nschessnerd

Hi, I have the following managed c++ code: [code=cplusplus] DWORD addr=(obj.addresshigh*0x10000)+obj.addresslow; [/code] and i use this address to read memory in a program.. However I noticed it was crashing because it's adding wrong. Ie: obj.addresshigh=4006 obj.addresslow=d6b4 however addr ends up as 4005d6b4 the weird thing is this doesnt always happen, …

0
47
Member Avatar for dolly_olaide
Member Avatar for nschessnerd

Hi I run a game server that can have upwards of 100 people connected to a game at a time. Recently I was connected to a server via rdp when my local internet (not the server's internet) cut out. So I rebooted my local router and reconnected to the rdp …

0
79
Member Avatar for nschessnerd

I have an application that uses readprocessmemory to get information from another application. I think my application causes this other application to crash. Does anyone have any input on this? Why does it cause a crash and how can I change my application?? I cannot modify the other app thanks …

Member Avatar for nschessnerd
0
232
Member Avatar for nschessnerd

Hey ppl. I've been working on this forever and cant seem to get it. I am developing a site in jsp using netbeans and i have an applet i want to add to a page.I know i have to use <applet> tags but i dont know what to put to …

Member Avatar for peter_budo
0
126
Member Avatar for nschessnerd

Hi, I have a query: [CODE=sql]SELECT h.id, h.creator uid, h.haiku, h.title, h.likes, h.approved, cat.name category, count(c.id) comms, h.anonymous, CASE h.anonymous WHEN 1 THEN 'Anonymous' ELSE u.username END username FROM haiku h left join categories cat on cat.id= h.category left join comments c on c.haiku=h.id left join users u on u.id=h.creator …

Member Avatar for nschessnerd
0
74
Member Avatar for nschessnerd

Hey, I have a script that caches the output from a query, but whenever the query is run my cpu usage jumps to like 25% the query (theres about 5 different queries similar to this) is [CODE=mysql ] select n.name, ifnull(c.kills_d,0)+ifnull(s.kills_d,0)+ifnull(r.kills_d,0)+ifnull(k.kills_d,0)+ifnull(o.kills_d,0) scores, c.online_d+s.online_d+r.online_d+k.online_d+o.online_d online_d from names n left join scores_ctf …

Member Avatar for pritaeas
0
110
Member Avatar for nschessnerd

Hi, I run an udp web-based application on windows server 2008 and I am having trouble when my computer's screensaver turns on. Basically sometimes this application crashes and it is auto rebooted. However if the server reboots when my screensaver is on, i can't reconnect to the application. It works …

Member Avatar for nschessnerd
0
157
Member Avatar for nschessnerd

Hey I'm trying to tell a remote process to run a command using (the other processes) command line (like cin). currently i use createremotethread and inject some asm into the process, but the thread sometimes conflicts with other threads and crashes the program. so now i am trying to use …

Member Avatar for nschessnerd
0
122
Member Avatar for nschessnerd

So, I've looked everwhere and gotten really frustrated... so i came here... and the search feature showed me a bunch of spam... so how do i throttle bandwith in server 2009? i have a 100mbps connection and i dont want someone coming along and dossing me/ getting files from my …

Member Avatar for murthis
0
104
Member Avatar for nschessnerd

Hey, I use openfiledialog to load a file as so: [code=cplusplus] OpenFileDialog^ ofd=gcnew OpenFileDialog; ofd->Filter="Monitor files (*.hmc)|*.hmc"; ofd->FileName="";if(ofd->ShowDialog()==System::Windows::Forms::DialogResult::OK){ loadFile(ofd->FileName); } [/code] when i initially run the program memory in task manager is about 10,000K. when this code runs it jumps to 17,000K and doesnt go back down. I tried using …

Member Avatar for Narue
0
138
Member Avatar for nschessnerd

Hi, I need some help searching for extended ascii characters. I keep track of scores for a game along with the user's name. The user can have a crazy name like "»LPk«FËNÃŽX§" but when he searches for himself it isnt found so he has to search for something like lpk% …

Member Avatar for nschessnerd
0
100
Member Avatar for nschessnerd

Hi I'm having an issue with curl on windows with php. If i have curl enabled in php and i run php through command line i get an instant cpu spike... php.exe cpu jumps to about 20% then back down. when i disable curl it only jumps to about 2% …

Member Avatar for nschessnerd
0
892
Member Avatar for nschessnerd

Hey people, i just installed ubuntu 7.10 on a latitude d610 and i am trying to get kismet on it. i installed it, but i get an error in the config file at the line where i choose my driver and hardware source... i currently have source= ipw2200,eth1,kismet is there …

Member Avatar for Chris Potter
0
321
Member Avatar for nschessnerd

Hi, I have the following redirect: /lb/v/fast -> viewboard.php?c=fast by doing RewriteRule ^v/([^?].*)?(.*)$ viewboard.php?c=$1&$2 [L] as you can see i try to also add the GET data... but its not working ie if i go to /lb/v/fast?view=1 it only copies the fast part over does anyone know how to fix …

0
91
Member Avatar for nschessnerd

Hey I am using multi curl to execute cron jobs based off sql records. will the script i call run if i dont wait for the result and just close the connection? or do i need to get the result?

Member Avatar for pritaeas
0
78
Member Avatar for nschessnerd

Im having weird issues with local host in -filezilla -apache -mysql basically with these i cant get text from localhost ie i go to [url]http://localhost[/url] -nothing go to [url]http://ip[/url] - get website cant connect to filezilla admin page using 127.0.0.1 i tried to telnet to http and filezilla admin but …

Member Avatar for nschessnerd
0
93
Member Avatar for nschessnerd

I am having issues with my graphics on my laptop and pc (less so on my laptop) on my pc my mouse turns into a line... like it looks like 10 mouses ontop of eachother only its just the tip... to fix it i have to shake my mouse a …

Member Avatar for nschessnerd
0
101
Member Avatar for nschessnerd

Hey, i have firefox 3.5.2 and when i go to some websites like facebook or histats they think im french and they change the text to french is there some setting i can change so it knows im english note its not ip dependent because it happens from multiple ips …

Member Avatar for Point Red
0
128
Member Avatar for nschessnerd

how do you do this? i cant find it anywhere basically my server "starts" but i cant connect to it... i tried mysqld --debug but it makes a .pdb file and idk wat to do with it please help. ive got too much crap stressing me out..

Member Avatar for nschessnerd
0
58
Member Avatar for nschessnerd

Hey, I've been stuck on this for a long time now and ive tried various things... i need to send multiple packets to a server for an infinite amount of time at an unknown rate, maybe 1 packet every 30 minutes, tor a few every 5 minutes... id like to …

0
47
Member Avatar for nschessnerd

Hey, I recently got a hp tx2-1025dx and installed windows 7 rc1 i have a really weird problem, i have a website-http://fastclan.org and if im on the site my mouse will randomly move, it seems to jump between the column on the right and the middle. it also does it …

0
114
Member Avatar for nschessnerd

Hey, Im using readprocessmemory to get information on a game, but for some reason it skips two bytes.. part of my structure is similar to [code=cplusplus] WORD a; DWORD b; DWORD c; DWORD d; [/code] and i read the following memory into it: 00 00 FF FF FF FF 02 …

Member Avatar for nschessnerd
0
75
Member Avatar for nschessnerd

I wrote a program that sends stats to a server via http. It can send a lot of packets, like 20 as fast as it can... and after some time i cant access the site anymore. I can ping it and do a traceroute but cant access it via http. …

Member Avatar for nschessnerd
0
144
Member Avatar for SKANK!!!!!
Member Avatar for nschessnerd

Hey, I need help keeping a http connection alive. I have used setsockopt to set keepalive to 1, and in the http packet i set keep-alive to 300, but the server replies with: [code] Connection: close[/code] my packet looks like [code=cplusplus] string buffer2="POST "+P.path+" HTTP/1.0\r\nHost: "+P.httpUrl+"\r\nUser-Agent: Mozilla/5.0 (Windows; U; Windows …

0
93
Member Avatar for nschessnerd

Hey, I wrote some code to send http (see below) and i get a connection error 10056 which means its already connected. However on wireshark i see rst packets from the server, and it doesnt send a packet... In my program i call connect sock then sendhttp. i only call …

Member Avatar for nschessnerd
0
1K
Member Avatar for goyofoyo
Member Avatar for sangdedi

you would have to use post or get variables, so do something like [code=php] <form action='script.php?q=$nextQuestion'> (Question) (Answers) [/code]

Member Avatar for somedude3488
0
672
Member Avatar for xiaojesus
Member Avatar for nschessnerd

Hey so i upgraded from beta to win7 rc, and my start icons are gone... i checked under {homedir}\start meu and it appears as a link that cant be found... is there any way to restore my start menu? the all users folder appears as the same.. i have my …

Member Avatar for Laser
0
142
Member Avatar for nschessnerd

Hey Im writing a program that needs to send data over http, sometimes 45 minutes between packets, sometimes 10 seconds. I noticed that when i shut the server down it sends a lot of fin packets... so i guess my socket logic is off... i dont have a lot of …

Member Avatar for nschessnerd
0
95
Member Avatar for nschessnerd

I have a program that uses http to send information to a remote server... should i be worried about bandwidth if it sends one http packet per player? basically when a person finishes a game it send a http packet with their info.... if there are 60 people connected and …

Member Avatar for jephthah
0
42
Member Avatar for nschessnerd

i have some code to kill a process [code=cplusplus] TerminateProcess((HANDLE)sinfo->process->Handle, 0); [/code] what happens is so the process freezes and starts eating up the processor... so i i try to terminate it, but it only goes white and that box pops up that says "bla bla bla" stopped working... is …

Member Avatar for nschessnerd
0
139
Member Avatar for nschessnerd

Hey, I want to integrate a phpbb login with my site so i added the following code: [code]<?php define('IN_PHPBB', true); $phpbb_root_path = "../forum/"; $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.' . $phpEx); include($phpbb_root_path . 'includes/functions_display.' . $phpEx); include($phpbb_root_path . 'includes/bbcode.' . $phpEx); // Start session management $user->session_begin(); $auth->acl($user->data); ?>[/code] …

0
59
Member Avatar for nschessnerd

So im using this code to start a thread... [code=cplusplus] namespace Monitor4vc { public ref class Stats { public: Stats() { } ~Stats(){} void set(int prid, String ^url, String ^pst, String ^pth){ pid=prid; httpUrl=url; post=pst; path=pth; } void start(){ thread=_beginthread(OpenProc,0,NULL);//Error } private: ArrayList playing; ArrayList quitp; HANDLE thread; int pid; …

Member Avatar for Ancient Dragon
0
136
Member Avatar for nschessnerd

Is there any way to mix visual c++ with normal c++? like can i enable mixed code? i want to get rid of this error: 1>tab.h(32) : error C4368: cannot define 'p' as a member of managed 'Monitor4vc::tab': mixed types are not supported

Member Avatar for nschessnerd
0
226
Member Avatar for nschessnerd

I need a nonblocking socket so in an older version of the program i made a new thread to do this. and now that ive migrated into visual c++ it crashes with no explination... yea im really aggravated... can anyone tell me why this crashes? [code] #include <iostream> #include <winsock.h> …

Member Avatar for nschessnerd
0
97
Member Avatar for nschessnerd

Hey so as i mentioned here [url]http://www.daniweb.com/forums/post840142.html[/url] i need to check if a process is responding by using sendmessage however i have no idea how to get the hwnd because i start the process using system::diagnostics::process [CODE] process->StartInfo->WorkingDirectory=sinfo->workingDirectory; process->StartInfo->Arguments=" -exec "+sinfo->init+" -port "+sinfo->port+" "+sinfo->options; process->StartInfo->FileName = sinfo->exe; process->StartInfo->UseShellExecute=true; [/CODE] so …

Member Avatar for seanhunt
0
1K
Member Avatar for nschessnerd

Hey, I want to check if a program is frozen by using send message.. what message should i send it? and will this work? like could i send it something random like 0xFFFC?

Member Avatar for Nick Evan
0
450
Member Avatar for nschessnerd

Hey so i was trying to install an antivirus on my neighbors computer. So i downloaded and installed avg, then the internet stopped working. so i was like ok... and uninstalled it and it worked again. then i got mcafee but it wouldnt install because it couldnt download the software …

0
53
Member Avatar for nschessnerd

Hey, so randomly the right side of my screen will be cut off... like i can see my desktop but the windows wont go past it... im on win7 x64 (i had the same problem in vista) with a raedon x1550 rebooting fixes it, mi not sure what causes it. …

Member Avatar for nschessnerd
0
102
Member Avatar for nschessnerd

how do i find methods in a .exe so i can create a dll injection that uses those methods?

Member Avatar for nschessnerd
0
81
Member Avatar for nschessnerd

Hey, so i have 4 tables i need to join together. basically this is how it looks table j: | id | uid | cid | text | | 1 | 3 | 1 | blah| | 2 | 1 | 3 | blah| table u | id | name …

Member Avatar for nschessnerd
0
102
Member Avatar for elangobala

it depends on what you are putting on the jsp page. Essentially it boils down to good web developement.

Member Avatar for peter_budo
0
119
Member Avatar for nschessnerd

Hey, so basically i need to decrypt/encrypt traffic on a specific port on my computer. How can i capture incoming/outgoing packets and manipulate them?

Member Avatar for Salem
0
40

The End.