Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~626 People Reached
Interests
well, coding
PC Specs
Dell inspiron 15 3000 500 GB HDD 4 GB ram intel i5 (school laptop)
Favorite Tags
Member Avatar for Dat One Lefty

I currently have the code function httpGet(theUrl) { var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { return this.responseText; } }; xhttp.open("GET", theUrl, true); xhttp.send(); } when i replace return with code to set a div, it replaces, but when I …

0
106
Member Avatar for Dat One Lefty

how could i download a empty file from a website and see if the lines are the same as a diffrent file on my computer?

Member Avatar for Taywin
0
203
Member Avatar for Dat One Lefty

I am trying to make a MS-DOS like program like python. I am adding a system to see if a command exists. the file "known.txt" contains: ['catfish', 'cls', 'dl', 'hello', 'help', 'help1', 'help2', 'info', 'logout', 'ping', 'run', 'stop', 'time'] This is the code i am using to run it: if …

Member Avatar for Dat One Lefty
0
158
Member Avatar for Dat One Lefty

i keep getting this error: WindowsError: [Error 32] The process cannot access the file because it is being used by another process: 'F:/Term/cmdrun/new.log' how can i make the logging module stop loggin to new.log so it can be moved and renamed?

Member Avatar for Dat One Lefty
0
159