LastPass

The Last password you'll have t remember!

2014-04-30

Arduino library for WTV020-SD-16P audio module

Arduino library for WTV020-SD-16P audio module

Android Hack Tools: Wardriving with Wigle Wifi

Android Hack Tools: Wardriving with Wigle Wifi 




2014-04-18

Android Xposed Framework

Here’s how to get the Google Now Launcher on any Android phone or tablet

Here’s how to get the Google Now Launcher on any Android phone or tablet

2014-04-15

Importing & Exporting WordPress Sites To and From a Multisite Install

Importing & Exporting WordPress Sites To and From a Multisite Install

Create A Network « WordPress Codex

Create A Network « WordPress Codex

2014-04-14

Cooking Hacks - Documentation - RFID Module for Arduino

Cooking Hacks - Documentation - RFID Module for Arduino

How to change MAC-Address in Windows Registry | Windows Reference

How to change MAC-Address in Windows Registry | Windows Reference



MAC-Address is the hardware Network Address for the NIC which is unique for the system. However, there may be time when you need to change the MAC-Address for administrative purpose on a network. Some of the device drivers come with an option to change it from the device properties but not all (like my Broadcom Gigabit Ethernet Driver). For those who do not have the luxury of changing the MAC-Address from the device properties there is a way to do this  by editing the Windows Registry.
To change MAC-Address for a Network card in Windows Registry:
1. Click Start – Run, type “regedit”
2. Navigate to
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318]
HKEY_LOCAL_MACHINE
    \SYSTEM
        \CurrentControlSet
            \Control
               \Class
                  \{4D36E972-E325-11CE-BFC1-08002BE10318}
              
3. Under this key, you shoud see numbers in sequence as “0000″, “0001″ and so on. Click on one at a time to check the description of the device to match it with that of your Network Card. In my case (0001)
MAC-Address key in Windows Registry
4. Once found, in the right-pane, look for “NetworkAddress” key value. If you find it, right-click and select modify. Enter the desired MAC-Address as a 12 digit number (all in one, no “space” “.” or “-”)
5. If you don’t find the key, right-click in the rightpane, select “New” – “String Value”. Enter the name as “NetworkAddress”. Now modify and set the desired value.
6. Now, disable and enable the Network card from the ControlPanel – Network Connections.
This should reflect the new MAC-Address on your NIC. Should you choose to go back to the original manufacturer set MAC-Address simply delete the key you just created/modified in the Windows Registry.
MAC-Address changed after registry edit
You can also use a tool like Technitium MAC Address Changer to change the MAC-Address of your NIC

Configuring Multi-User – Plex

Configuring Multi-User – Plex

2014-04-07

Emailing to Evernote

Evernote Blog | Remember Everything

[ARDUINO + RASPBERRY PI] Switching light with NRF24l01+ | Hack | Lenotta

[ARDUINO + RASPBERRY PI] Switching light with NRF24l01+

Can No Longer Write To Ext Sd Card After Update To Android 4.4.2.

On my Samsung Galaxy S4 I could no longer write to my External SD card.

To solve this



1) get root access.

2) modify /system/etc/permissions/platform.xml so android.permission.WRITE_EXTERNAL_STORAGE and android.permission.WRITE_MEDIA_STORAGE sections will look like:

<permission name="android.permission.WRITE_EXTERNAL_STORAGE" >
    <group gid="sdcard_r" />
    <group gid="sdcard_rw" />
    <group gid="media_rw" />
</permission>
<permission name="android.permission.WRITE_MEDIA_STORAGE" >
    <group gid="media_rw" />
    <group gid="sdcard_rw" />
</permission>


 3) restart phone"