Topics - gjehle [ switch to compact view ]

Pages: prev1 2 3 4 5 [6] 7 8 9 10 11 12next
26
If you're running a free, open, wireless hotspot in Germany and someone (mis)uses your internet connection for, say, piracy, you're responsible.

In Germany you're responsible for...
    * ... what people post on your forum or blog
    * ... the content of external websites you link to (even tho they are not your websites)
    * ... every crime committed using your free wifi hotspot

http://nrrd.de/dasbuch/hadez/offering_free_open_wireless_germany_youre_guilty_bye_bye_fon



.

27
Living Room / (Video) The VERY first IT professional...
« on: July 11, 2007, 02:58 PM »
... or how I feel when I have to tell ignorant users how to do simple tasks.
This video is just awesome :D Worth wasting 2.5 minutes on

The very first IT professional.


http://www.youtube.com/watch?v=epJtqYAZCgQ
itpro.png


28
German government just passed a law today that makes OWNING any such "hacker tool" which aim is to "commit a crime" illegal.
I just can't take it anymore.

Read up here to get a feeling how "being German" is getting worse and worse by the minute:

[...]
If you own any hacker tool which "aim is to commit a crime"...

    * nmap
    * metasploit
    * any penetration testing tool in general
    * port scanners
    * network analyzers? (hopefully not those too)

... you're signing up for one year in jail or a hefty fine.
That reads OWNING, not using, it's just OWNING.
[...]

Long version here:
http://nrrd.de/dasbuch/hadez/now_theyve_done_it_just_owning_hacker_tools_illegal_germany

Please speard the word and DIGG IT http://digg.com/politics/OWNING_Hacker_tools_now_illegal_in_Germany_jail_time_fine
It's no fun anymore. We're getting screwed big time.

29
Living Room / Bitwise gems - fast integer math
« on: June 28, 2007, 03:42 AM »
Fast modulo operation using bitwise AND

If the divisor is a power of 2, the modulo (%) operation can be done with:
modulus = numerator & (divisor - 1);
This is about 600% faster.

x = 131 % 4;

//equals:
x = 131 & (4 - 1);

Every programmer should know about the simple shift-left, shift-right for base2 multiplication and division (if you don't, you're missing something).
This page, however, lists a couple of real gems (as the title suggests) like the one quoted above.
Enjoy!


http://lab.polygonal.de/2007/05/10/bitwise-gems-fast-integer-math/

30
Living Room / Video: Stop the big brother state
« on: May 30, 2007, 02:28 PM »
the big brother state is an educational film about what politicians claim to be
protection of our freedom, but what we refer to as repressive legislation.

since terrorism has become a global threat, especially after 9/11,
governments all over the world have started enforcing laws which,
so the government say, should increase national security.

these laws obviously aim at another goal:
the states gaining more and more control
of their citizens at the cost of our privacy and freedom.

very well-made info video made at the university of applied sciences augsburg, germany.
watch it!


http://www.huesforalice.com/bbs/index.php?page=big
stbbs.jpg


Pages: prev1 2 3 4 5 [6] 7 8 9 10 11 12next
Go to full version