[QUOTE=ManningQB18;36362790]Hey, I need an internet uptime tracking program.
Something that can visually display Yes/No internet connection over the course of multiple days. I'd probably want it to ping something every minute. Anybody know a program that would work? My internet uptime is about 50%, so I'm trying to get some proof to comcast
Funny, my internet went out while posting this.[/QUOTE]
[code]#!/usr/bin/env python
import ping, socket, datetime
from time import sleep
logFile = open("uptimeTest.txt", "w")
while 1:
pingOK = true
curTime = str(datetime.datetime.today())
try:
delay = ping.Ping("www.google.com", timeout=2000).do()
except socket.error, e:
pingOK = false
logFile.write(curTime + " : Ping Timeout")
if pingOK:
logFile.write(curTime + " : Ping OK")
sleep(30)[/code]
Runs every thirty seconds and writes output to "uptimeTest.txt". Depends on [url=https://github.com/jedie/python-ping/blob/master/ping.py]this[/url], and Python 2.7. Untested.
If you need me to I'll make it a single payload exe for you
[url]http://www.ebay.co.uk/itm/261044872578?ssPageName=STRK:MEWAX:IT&_trksid=p3984.m1438.l2649#ht_1748wt_1188[/url]
This is a crazy low price..is it legit?
[QUOTE=Fresh?;36366220][url]http://www.ebay.co.uk/itm/261044872578?ssPageName=STRK:MEWAX:IT&_trksid=p3984.m1438.l2649#ht_1748wt_1188[/url]
This is a crazy low price..is it legit?[/QUOTE]
Only one way to find out.
[QUOTE=SataniX;36366261]Only one way to find out.[/QUOTE]
Police Raid?
Why did someone post that mini-ITX case? Now I want it too...
[QUOTE=Fresh?;36366220][url]http://www.ebay.co.uk/itm/261044872578?ssPageName=STRK:MEWAX:IT&_trksid=p3984.m1438.l2649#ht_1748wt_1188[/url]
This is a crazy low price..is it legit?[/QUOTE]
it still has like three days to go.
[QUOTE=Turing;36366753]it still has like three days to go.[/QUOTE]
It's buy it now silly
[QUOTE=Turing;36366753]it still has like three days to go.[/QUOTE]
It's a buy it now, it doesn't matter how long it has to go.
[editline]17th June 2012[/editline]
God damnit
Aw man, i missed skype.
Anyway, this thread is a shitfest and has content
[url]http://www.facepunch.com/showthread.php?t=1191091[/url]
[QUOTE='[EG] Pepper;36366985']Aw man, i missed skype.
Anyway, this thread is a shitfest and has content
[url]http://www.facepunch.com/showthread.php?t=1191091[/url][/QUOTE]
[url]http://www.facepunch.com/showthread.php?t=1191091&p=36348995&viewfull=1#post36348995[/url]
ಠ_ಠ
[QUOTE=Trekintosh;36363546]That's beautiful, but I'd make the logo black. Regardless, would you mind if I posted that on the Bit-Tech.net forums? Bitfenix has a representative there. I'd give you full credit, of course. Alternately, I could point him over here. Who knows, maybe they'd think it was great and call Valve up. At the very lease there's about a 2000% chance that a Bit-Tech user would make it a reality.[/QUOTE]
Sorry for the late reply, but sure go ahead!
For months - almost a year - a stuttering problem has plagued my system. I found that, under high network load, my computer would stutter for 5-10 seconds. At the time, I didn't know it was a network issue. It took me a while to figure out that it was, and since I've connected to the internet via a network bridge from my laptop. Which is a pain in the ass to set up every time I boot my computer. My faulty wireless card was thrown aside and never used again. I bought 2 new ones, both of which seemed to have the same problem, so I just stuck with the network bridge.
Today, because I'm fed up of the network bridge, I knocked out one of the expansion brackets on my case and put a wireless card in the bottom PCI slot. It works perfectly now.
fuck
Hey I came up with the idea!
[url]http://szamitastechnika.vatera.hu/egyeb/aten_cs_1762_dvi_kvm_switch_bolti_ar_80_ezer_itt_1_1603825949.html[/url]
Should I get this KVM switch?
It costs like, $15.
What the heck? I'm getting insane lag on every game I try to play for some reason and my CPU and GPU seem to stick at really low % usage
Edit: Okay, so apparently changing priority on the application, or alt tabbing seems to fix it. This is really annoying. Anyone know how to permanently fix this?
Edit2: What's basically happening is sometimes when I run games it lags like fuck and GPU#1 doesn't go above 10% usage and GPU#2 just sticks at 100% non stop. This is on an SLI compatible game (Just Cause 2)
a temporary fix is alt tabbing the game and changing the core clocks on the gpus but it seems to go back to lag and GPU1 decides to do fuck all sometimes
[b]EDIT[/b] reverting to 296.10 fixed it.
Ugh, my connection is dropping more than an asian hooker..
Sucks.
[QUOTE=Ac!dL3ak;36367728]Hey I came up with the idea![/QUOTE]
I'll make sure you get some of the credit. A very small portion. How does 2% sound? :v:
[editline]17th June 2012[/editline]
Okay its posted there now. I'm curious as to what their rep will say.
Is there a problem with the nvidia 301.42 drivers and SLI? Ever since upgrading everything's gone to shit.
[QUOTE=deano270;36368361]Is there a problem with the nvidia 301.42 drivers and SLI? Ever since upgrading everything's gone to shit.[/QUOTE]
The 301.42 drivers turned a lot of cards performance to shit.
[QUOTE=tratzzz;36368183]Ugh, my connection is dropping more than an asian hooker..
Sucks.[/QUOTE]
I have the exact same problem. Nobody knows the answer.
[QUOTE=AzzyMaster;36368402]The 301.42 drivers turned a lot of cards performance to shit.[/QUOTE]
Indeed.
Just reverted to 296.10 and everything runs perfectly.
[QUOTE=lavacano;36365859][code]#!/usr/bin/env python
import ping, socket, datetime
from time import sleep
logFile = open("uptimeTest.txt", "w")
while 1:
pingOK = true
curTime = str(datetime.datetime.today())
try:
delay = ping.Ping("www.google.com", timeout=2000).do()
except socket.error, e:
pingOK = false
logFile.write(curTime + " : Ping Timeout")
if pingOK:
logFile.write(curTime + " : Ping OK")
sleep(30)[/code]
Runs every thirty seconds and writes output to "uptimeTest.txt". Depends on [url=https://github.com/jedie/python-ping/blob/master/ping.py]this[/url], and Python 2.7. Untested.
If you need me to I'll make it a single payload exe for you[/QUOTE]
Closes nearly immediately, something about 'true' not being defined.
So are we using Mumble or Skype?
My server is still up if we want to use it:
Mumble: benjeffery.ca
port: 64738
If skype, add ben.jeffery.
Yay, I got my raspberry pi running off 4xAAA batteries.
Gonna try it with some higher capacity ones and see if I can get the USB ports to work.
[QUOTE=ManningQB18;36368490]Closes nearly immediately, something about 'true' not being defined.[/QUOTE]
Did you get Python 2 or Python 3?
[editline]17th June 2012[/editline]
wait no disregard, I apparently don't remember how Booleans work in Python.
embarrassing.
[editline]17th June 2012[/editline]
alright got it now:
change "true" to "True" and "false" to "False".
[QUOTE=lavacano;36369057]Did you get Python 2 or Python 3?
[editline]17th June 2012[/editline]
wait no disregard, I apparently don't remember how Booleans work in Python.
embarrassing.
[editline]17th June 2012[/editline]
alright got it now:
change "true" to "True" and "false" to "False".[/QUOTE]
that's odd, I've only ever seen programming languages handle booleans with all upper or all lower case letters.
[QUOTE=ManningQB18;36368441]I have the exact same problem. Nobody knows the answer.[/QUOTE]
I guess I have the problem with the cable what is coming to my house.
If I lose connection, router fucks up and can't re-establish it properly.
anyone here with an AMD card on 12.4? are they better / not shit like the other 12.x? i reverted to 11 something awhile ago and am wondering if i should finally go up to the latest now
[QUOTE=thrawn2787;36370959]anyone here with an AMD card on 12.4? are they better / not shit like the other 12.x? i reverted to 11 something awhile ago and am wondering if i should finally go up to the latest now[/QUOTE]
Seems to be working fine for my 6870, but Catalyst 12.3 and 12.4 fucks up my laptop's graphics quite hard.
Man, Ben Jeffery is so awesome.
>Site has a bottleneck on download speeds
>Ben hosts the download on his own little thing with no bottleneck
Rate him hearts if you want to <3
Sorry, you need to Log In to post a reply to this thread.