Search results

  1. G

    Telecoms package

    http://blackouteurope.eu/ On 5th may they are gonna vote about the telecoms package in the Europe parliament. If it gets trough, it could mean that ISPs in countries with EU can block all websites and offer the largest sites for you in packages as they do with TV. Package 1 for $10 could be...
  2. G

    Einsteins riddle

    There are 5 houses each with a different color. Their owners, each with a unique heritage, drinks a certain type of beverage, smokes a certain brand of cigarette, and keep a certain variety of pet. None of the owners have the same pet, smoke the same brand of cigarette or drink the same...
  3. G

    Applications

    I am coding java for credits. Just tell me what you need and I say a price.
  4. G

    any good free firewall?

    as neither ZoneAlarm nor COMODO is compatible with GameGuard anymore, I am running without a firewall for the moment. Is there any other good free firewalls, that is compatible with GameGuard? For those that don't know what GameGuard is, it is a rootkit-like hacking protection in games, like...
  5. G

    Spotify invites contest!

    I am having a contest with invites to http://spotify.com at http://jagf.net/blog/spotify/spotify-invites check it out if you are interested ;)
  6. G

    set length of a java array

    is there any way shorter than this: private Date today = new Date(); private Date[] createdAt = {today,today,today,today,today,today,today,today,today,today,today,today,today,today,today,today,today,today,today,today}; if I want 20 indexes? This will obviously don't work if I need an...
  7. G

    How to make application styles...

    ...for java apps? I tried substance, but it didn't work because I am using GUI builder (Yes, I'm too tired writing things I haven't learnt yet). Right now I am using a mac-ish theme that works with GUI builder, but is there a way to make my own themes?
  8. G

    Need name

    I am building a twitter desktop client, and I need a name for it. Any suggestions?
  9. G

    any good e-book

    Can anyone tell me a good e-book I can get to read? I am to lazy to go to the library since my mother always steal my cards so when I come there I have no ID on me
  10. G

    Hemsedal, Norway

    Here is some of the pics I made on my vacation to Hemsedal, Norway: http://jagf.net/norway.html (and no, I'm not on any of those pics xD)
  11. G

    Iframe filtering

    How can I delete an div in an iFrame?
  12. G

    My class's site

    This is for a swedish contest where you can win 20 000 SEK. Any suggestion on making it even better? http://1337portalen.se/
  13. G

    [600 credits]Javascript

    Take a look at http://dev.jagf.net/. When you click a link in the popup menu, the main content (the black box) should fade out, and in fades an exactly same box, but with other content, at the same place. So if you would go http://dev.jagf.net/index.html#page=news, it would change the content...
  14. G

    What app do you want?

    What java applications do you want/need? I wanna code something, but idk what
  15. G

    what is the worst accident that has happened in your town?

    for me it was http://translate.google.com/translate?prev=hp&hl=en&u=http%3A%2F%2Fsv.wikipedia.org%2Fwiki%2FJ%25C3%25A4rnv%25C3%25A4gsolyckan_i_Lerum&sl=auto&tl=en when two high-speed trains frontal-collided 300 meters away from where I live What is the worst accident that has happened in your...
  16. G

    NullPointException

    Sooo, I am stuck again... Here is the server part: <?php $host = "localhost"; $user = "root"; $pass = ""; $db = "chat"; $connection = mysql_connect($host, $user, $pass) or die ("Unable to connect!"); // select database mysql_select_db($db) or die ("Unable to select database!"); function...
  17. G

    recompile php in xampp

    how do I recompile PHP in xampp/lampp on linux? there is no configure or make file at all, not even in the dev pack
  18. G

    Xml-rpc

    I am experimenting with XML-RPC, but I'm kind of stuck. The serverside is PHP, while the client is in JAVA Server: <?php /* * First, we define some PHP functions to expose via * XML-RPC. Any functions that will be called by a * XML-RPC client need to take three parameters: * The first...
  19. G

    Ubuntu doesen't support TKIP

    My school uses TKIP, which ubuntu has no support for. Anyone know aout how to fix for free? (the driver costs $20) I will format ubuntu away if I have no internet, because there will be no use for it :(
  20. G

    explain please

    <?php //1. How many more loops does the program do to find all primes to 200? $maxArr = 100; $testRuns = 0; $noPrimes = 0; $jrun = 0; for($i = 0; $i < $maxArr;$i++) { $primArr[$i] = $i + 1; } $primArr[0] = -1; for($i = 1; $i < $maxArr;$i++) { $prim = $primArr[$i]; if($prim !=...
Top