Dub Force Events
x0Events cannot currently be displayed, sorry! Please check back later.x0_close-
Recent Posts
Recent Comments
Archives
- March 2022
- August 2021
- February 2021
- December 2020
- November 2019
- April 2019
- April 2018
- January 2017
- May 2016
- April 2016
- March 2016
- December 2015
- June 2015
- January 2015
- December 2014
- November 2014
- April 2014
- January 2014
- December 2013
- November 2013
- March 2013
- December 2012
- November 2012
- November 2010
- October 2010
Categories
Meta
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 AJAX, DOM, jquery, XMLHttpRequest
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 netsh, wifi, windows, wlan
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 files, find, grep, mac, osx, search
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 android, battery, battery drain, fix, galaxy note 3, gsam, samsung
Comments Off on Battery Drain Samsung Galaxy Note 3 – Fix
Reset Windows 7 password on 4 steps
Hello, 1 – Get access to the hard drive files: Use a windows installation disk and run on recovery tools the command prompt (or something like that) 2 – Go to windows folder (usually d:\windows\system32) and replace (backup first) “utilman.exe” … Continue reading
Posted in Basic Technical, Learned Today, Security
Tagged cmd, command, dos, net, net cmd, net command, password, recover, reset, skip login, users, windows, windows password
Comments Off on Reset Windows 7 password on 4 steps
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 apt-get, linux, ubuntu
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.