adhocshare Blog

0

Local DNS caching Linux

Linux Local DNS caching using dnsmasq A local DNS cache can help for faster browsing since you’re caching the DNS request instead of attempting that request multiple times. The internet speed will not get any faster, but the browsing speed...

0

Smartphones with full HD 1080p resolution 2013

Sony Xperia Z 5.0 inches TFT capacitive touchscreen Full HD support Resolution of 1080 x 1920 pixels Protection layer of Shatter proof and scratch-resistant glass and possess Sony Mobile BRAVIA Engine 2 Sony Xperia ZL 5.0 inch TFT capacitive touchscreen...

0

International shipping to India

Here you have a list of shippers who will ship items to India (may be to your country too) from different parts of the world. Check their terms and conditions. Shippers listed here are in no particular order. iShopInternational.com Description...

0

tor exit nodes

Setting tor exit nodes Location (Mac) ~/Library/Application\ Support/TorBrowser-Data/Tor/ $ vi ~/Library/Application\ Support/TorBrowser-Data/Tor/torrc   Parameters for torrc file ExitNodes {us} StrictExitNodes 1     No related posts.

0

Android Development resources

References – http://mobileorchard.com/android-app-developmentthreading-part-1-handlers/ http://mobileorchard.com/android-app-developmentthreading-part-2-async-tasks/   My AVD command line “-scale 0.6 -qemu -m 512 -enable-kvm”   Related posts: Impetus Smart-I Setting up adb on Linux for android development Faster android emulation using Virtualbox Android CPU Scaling Governors

0

Android emulator taking too much of screen size?

Using AVD Manager Open AVD Manager If using eclipse then Go to Window -> Android SDK and AVD Manager -> Virtual Devices Select the AVD you want to launch and click Start Check the “Scale display to real size” button Enter...

0

How to Do a Clean Install of Windows 8 with an Upgrade Disc

    Sometimes, you just need to do a clean install. Unfortunately, the Windows 8 Upgrade doesn’t always allow for that, throwing you an error when you try to activate after a clean install. Reader uncommoner shows us a workaround for this issue....

0

HDInsight mapreduce – Hadoop API for .NET

Hadoop API for .NET ===================== Introduction Hadoop Streaming is a facility for writing map-reduce jobs in the language of you choice. Hadoop API for .NET is a wrapper to Streaming that provides a convenient experience for .NET developers. An understanding...

0

Create sample input using windows batch file

Script that did my job @echo off setlocal EnableDelayedExpansion for /L %%F IN (1,1,100) DO ( set /a year = !RANDOM! %% 12+2000 echo !year! !RANDOM! ) endlocal Generates random numbers. First column contains year between 2000 to 2012 second...