RAOP) and OpenSource Software">Apple-AirPort-Express

While the Apple AirPort Express Base Station with 802.11n and AirTunes is quite affordable, it's a pity that Apple allow only AES encoded audio streams (aka Remote Audio Output Protocol - raop). However Jon Lech Johansen's reversed the encryption and ...Read More

Some hand commands if you need to improve some SQL Queries: analyze query: explain select .. from TABLE; show index: show index from TABLE; analyze table: analyze table TABLE; sql query without cache: select SQL_NO_CACHE .. from TABLE; show mysql cache status: SHOW VARIABLES LIKE 'query_cache%'; Read More

midisense

MIDIsense is a nice MIDI input device, that let you use all kind of sensors as midi input. Check the Website. Now the Application (MIDIsense Software) was quite unpleasant, because it crashed here and then and was quite slow and CPU ...Read More

Some handy Oracle query's: Data dictionary: SELECT * FROM dict; User details: SELECT * FROM user_users; User roles: SELECT * FROM user_role_privs; User privileges: SELECT * FROM user_sys_privs; My triggers: SELECT SUBSTR(object_name,1,40), object_type, status FROM user_objects WHERE object_type IN ('TRIGGER'); My procedures and functions: Read More

MS SQLcmd">

If you want to use the command line (cli) ms sql query tool you need those files: 95'744 ATL80.dll 119'000 batchparser90.dll 140'504 SQLCMD.EXE 24'792 SQLCMD.rll Set the tablelength to max 20 chars: set SQLCMDMAXFIXEDTYPEWIDTH=20 More settings can be found here Connect to the SQL Server: c:tmpsqlcmd>sqlcmd -SserverName1> ...Read More

SSH Timeouts">

If your SSH Session disconnect even if you enabled “Sending of null packets to keep session active” and “Enable TCP keepalives (SO_KEEPALIVE option)” you might want to try this: From the Putty FAQ: On Windows NT, 2000, or XP, the registry key ...Read More

PREPARE: # airmon-ng start ath0 # airodump-ng -w tmp ath0 ctrl+c, search your "victim".. copy the bssid of the victim and read the channel, for example we use channel 1: DUMP: # airodump-ng -w Neo -c 1 ath0 switch to another shell.. GENERATE TRAFFIC#1 - no host ...Read More

Ok you want to waste some time? Good! We create a script that will create a picture each 20 minutes, resize this pic, add a timestamp to the image. Then we create a animated gif, so you can watch what ...Read More

ICA Client">

I wanted to use Firefox with my Citrix Client (ica), but the stupid fuck didn’t install the necessary plug-in files, even a remove/reinstall did not solve the problem.. So I had to install the ica plug-in manually: Copy those files to FirefoxPlugins: 24'848 ...Read More

IP as an Image or use PHP to create Images">

Well PHP has a powerful Image Library, the gd2 extension. With its help its possible to create dynamic Images. So I was playing around with the gd2 extensions... This is a easy example of a dynamic created image: and the PHP code ...Read More

If you want surf anonymous use tor from eff. From the tor Web site: Tor: An anonymous Internet communication system Tor is a toolset for a wide range of organizations and people that want to improve their safety and security on the ...Read More

To repair a MySQL table, here are some VERY BASIC steps: 1.) Start admin tool: # mysql -u root 2.) Connect to db # connect DBNAME 3.) Repair it and cross fingers # repair table TABLENAME Ofcourse you need to replace the DBNAME and TABLENAME with you ...Read More