Category Archives: Basic Technical

One Click Monero Win Node

# One Click Monero Win Node #1 – download monero core + monero blockchain https://getmonero.org/downloads/ https://downloads.getmonero.org/cli/win64 https://downloads.getmonero.org/blockchain.raw #2 – import blockchain on custom dir, guard-against-pwnage=verify [only run with a trusted blockchain.raw] monero-blockchain-import –data-dir x:\Monero\ –guard-against-pwnage 0 –input-file blockchain.raw #3 – … Continue reading

Posted in Basic Technical, Cryptocurrency | Comments Off on One Click Monero Win Node

jQuery Playground: The base of AJAX

A very simple trick… HTML: <img id=”some-image” src=”http://domain.com/image.jpg” alt=”” width=”200″ height=”70″ /> Script: var someimage = jQuery(“img[id=’some-image’]”); jQuery.get( someimage.attr(“src”), function( ) { // Do something }); This (way of client requests) is the base of  AJAX/XMLHttpRequest, in this case is … Continue reading

Posted in Basic Technical | Tagged , , , | Comments Off on jQuery Playground: The base of AJAX

Dump saved WIFI password from CMD

To dump some saved WIFI password on Windows just type: netsh wlan show profile name=[ssid] key=clear This will need a elevated command prompt and will also show other details that can be usefully on scripts, or similar… AC.

Posted in Basic Technical, Learned Today, Networking | Tagged , , , | Comments Off on Dump saved WIFI password from CMD

OSx Advanced Search: Find + Grep

To find some text inside all types of files: find . -type f -exec grep -l “some text” {} + AC.

Posted in Basic Technical, Learned Today, Mac | Tagged , , , , , | Comments Off on OSx Advanced Search: Find + Grep

Battery Drain Samsung Galaxy Note 3 – Fix

Hello, To correctly identify the problem I recommend you to use “GSam Battery Monitor”. Then under “App Usage” you can directly access the Android App Info settings and kill (“force stop” and “turn off”) the apps/services that are over using … Continue reading

Posted in Basic Technical | Tagged , , , , , , | Comments Off on Battery Drain Samsung Galaxy Note 3 – Fix

Getting rid of the spam on WorPress

Hello, There are plenty of bots that crawl the web day after day searching for WordPress blogs to fill them with URLs in order to get publicity (SEO) for some sites… For example the case of my anonymous blog (this … Continue reading

Posted in Basic Technical | Tagged , , , , | Comments Off on Getting rid of the spam on WorPress

Linux “Couldn’t Find Package”

Hello, The best way to deal with this is to: apt-get update Then try again, if it is not solved you can proceed to Google 🙂 AC.

Posted in Basic Technical | Tagged , , | Comments Off on Linux “Couldn’t Find Package”

iOS – Recomended Cydia applications

Hello, A list of Cydia applications that you definitely need: 1 – SBSettings 2 – OpenSSH 3 – iFile 4 – Remove background 5 – Five icons AC.  

Posted in Basic Technical, iOS, Security | Tagged , , | Comments Off on iOS – Recomended Cydia applications

Hide Referer on Firefox

Hello, Just open your Firefox configuration about:config and set the value of network.http.sendRefererHeader to 0. AC.

Posted in Basic Technical, Nonsense Stuff, Security | Tagged , , , , , | Comments Off on Hide Referer on Firefox