-
Posts
173 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Blogs
Everything posted by Devroush
-
Aha, you're right. Well, I'll add it to the tracker again, hope to have it fixed soon.
-
Yep, hardware matching doesn't work if it is a new string (and it was new because of the '-' like you said). It should work fine now.
-
Hm yes you're right. Uploading a youtube url is considered part of the verification, but if you make a submission with a datafile, you don't have to add any verification, the datafile itself is enough. I'll move the youtube url part to the upload pics of your system part. I'll let you know when it's fixed.
-
Holy crap this is old . I just tried it with Chrome but doesn't seem to affect me. Do you have an example? Page you're on and the link that you click on? In our bugtracker this is marked as fixed since june 2011.
-
Added! http://hwbot.org/competition/team_cup_2013_sc1/stage/832_2010:_gulftown/
-
The official HWBOT Team Cup 2013 - SC1: 1M Challenge thread.
Devroush replied to Dan Jacques's topic in HWBOT Competitions
Added, sorry for delay. -
The official GIGABYTE Year of the Snake Prize Draw thread.
Devroush replied to Massman's topic in HWBOT Competitions
Sure did, congrats to kryptonian_sher, who made the winning submission with a Sempron 64 laptop ! http://hwbot.org/submission/2352268 http://gigabytedaily.blogspot.be/2013/02/year-of-snake-prize-draw-week-1-winner.html You still have 3 weeks left to try to win ZL1 -
Well it's fixed anyway, next deploy to production will have the fix .
-
The official HWBOT Team Cup 2013 - SC1: 1M Challenge thread.
Devroush replied to Dan Jacques's topic in HWBOT Competitions
Fixed, thanks for reporting that. -
28 min, Pi supremacy! Although I must admit I had hoped it would've been faster. http://hwbot.org/submission/2353668_devroush_hwbotprime_arm1176_s_28min_21sec_125ms/
-
Link updated to 2.23 on the site.
-
The official HWBOT Team Cup 2013 - SC1: 1M Challenge thread.
Devroush replied to Dan Jacques's topic in HWBOT Competitions
So, where did you get this error? I'll try to fix it if you tell me . -
Just tried a java 8 preview, that adds support for arm hf architectures to java, a benchmark run now completes in half an hour. Certainly an improvement. http://www.savagehomeautomation.com/projects/raspberry-pi-installing-oracle-java-se-8-with-javafx-develop.html
-
The estimating speed part was pretty slow, 10 min is "normal". I made some changes to the code a few days ago so that it just reads the speed from a OS file, it's pretty much instant now. The benchmark itself gives you regular progress updates, but slows down near the end. But yeah it took me +2 hr with the cpu OCed to 1 GHz . Crazy if you see that the same work can be done in 30 seconds on a modern pc. What OS/Java version do you have? I have Raspbian hard float ABI installed. Java version: dennis@raspberrypi ~ $ java -version java version "1.7.0_07" OpenJDK Runtime Environment (IcedTea7 2.3.2) (7u7-2.3.2a-1+rpi1) OpenJDK Zero VM (build 22.0-b10, mixed mode) http://hwbot.org/submission/2350613_devroush_hwbotprime_arm1176_s_2h_39min_19sec_5ms
-
Ah I know what's causing this. We check the accept header of the request to determine if we should return xml or json. Apparently if the request has Accept: */*, it will return json. curl -H "Accept: application/xml" http://hwbot.org/api/benchmarks -> xml curl -H "Accept: application/json" http://hwbot.org/api/benchmarks -> json curl -H "Accept: */*" http://hwbot.org/api/benchmarks> json Don't know if php has a way of setting accept headers but if you can, set Accept: application/xml . I'll look for a solution though.