Saturday, December 16, 2017

how to run android apps in Chrome browser

ARChon Runtime for Chrome:
https://archon-runtime.github.io/

download apk files from website:
https://apps.evozi.com/apk-downloader/

Friday, November 13, 2015

turn your linux as router

to forward Internet request from network socket rj45 (eth0)  to wireless card (wlan0) :


su
echo 1 > /proc/sys/net/ipv4/ip_forward
/sbin/iptables -t nat -A POSTROUTING -o wlan0 -j MASQUERADE
/sbin/iptables -A FORWARD -i wlan0 -o eth0 -m state --state RELATED,ESTABLISHED -j ACCEPT
/sbin/iptables -A FORWARD -i eth0 -o wlan0 -j ACCEPT



done. u might need to manually configure ip address for eth0:
sudo ifconfig eth0 192.168.0.1 netmask 255.255.255.0

Friday, January 9, 2015

burn ISO file to usb drive

rufus - may use virtual OS XP in virtualBox

WinToUSB - to burn Windows >= 7, 8, 10 onto usb drive/hdd/sdd  --> portable windows

Tuesday, June 17, 2014

mklink

MKLINK [[/D] | [/H] | [/J]] Link Target

/D Creates a directory symbolic link. Default is a file symbolic link.
/H Creates a hard link instead of a symbolic link.
/J Creates a Directory Junction. (can survive remote location)
Link specifies the new symbolic link name.
Target specifies the path (relative or absolute) that the new link refers to.


in non-administrative cmd, make a new link folder (at other drive/folder) that links to C:\myFolder
mklink /J "myFolder" "C:\myFolder"


"junctions are processed at the server and directory symbolic links are processed at the client"

symbolic link:
\\Alice\c$\myjp -> \\Alice\c$\targetfolder
Junction (survive remote access):
\\Alice\c$\mysymlink -> \\Bob\c$\targetfolder

JD SimWheel use your droid as steering wheel in pc games

https://play.google.com/store/apps/details?id=jd.simwheel

It uses vjoystick as virtual device in windows, then an app in android to connect to pc & play the game!

Tuesday, September 17, 2013

to fix windows 7 's Pinned item errors on Start Menu

In cmd:
find /C "yourItemsName" %appdata%\microsoft\windows\recent\automaticdestinations\*

or in windows explorer, just delete those file size more than 1MB:
%APPDATA%\Microsoft\Windows\Recent\AutomaticDestinations




source:
www.howtogeek.com/howto/5245/fix-for-when-pinned-jump-list-items-get-stuck-in-windows-7/