

Китайско-русский и русско-китайский словарь
Открыл новый проект Prosto http://prosto.devhead.ru/
Prosto dictionary - это мощный электронный словарь для вашего Android-телефона.
Доступныйе словари:
- Китайско-русский и русско-китайский словарь
- Китайско-английский словарь
Русско-китайский словарь для андроид.
Русско-китайский словарь для Android.

Linux kernel space application profiling
Для того чтобы узнать природу загрузки приложения которую выводит htop можно воспользоваться утилитой perf входящей в состав ядра

Windows automatically make recovery mode
If your Windows 7 automatically make recovery mode after boot (even in default mode), you have to disable recovery use a console and run two commands.
bcdedit /set {default} bootstatuspolicy ignoreallfailures
bcdedit /set {default} recoveryenabled no

Call Google Goggles from android’s app
Button but1 = (Button) findViewById(R.id.button); but1.setOnClickListener(new View.OnClickListener() { public void onClick(View v) { // it was the 1st button Intent LaunchIntent = null; try{ LaunchIntent = getPackageManager().getLaunchIntentForPackage("com.google.android.apps.unveil"); startActivity(LaunchIntent); } catch (NullPointerException e){ Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse("market://details?id=com.google.android.apps.unveil")); startActivity(intent); } } });

Correct GOPATH and GOROOT in Ubuntu 14.04
If you get something like this:
package github.com/gin-gonic/gin: cannot download, $GOPATH not set. For more details see: go help gopath
or this:
go tool: no such tool "6g"
And your favorit GNU/Linux distribution named Ubuntu.
Let see:
First! Install golang-gcc and gotool etc. from Ubuntu repository:
sudo apt-get install golang golang-go.tools gccgo-go git mercurial
Next. Set correct GOROOT, GOPATH and PATH for you user.
Just add down code in to ~/.bashrc:
export GOROOT=/usr/lib/go
export GOPATH=$HOME/go
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
Now, you can run your code:
$ go run foo.go
Hello, 世界
or download some library into your GOPATH
go get -u github.com/gopherjs/gopherjs

Windows 7 black screen with cursor
Hello, my little nerds! Today we've got Windows 7 on laptop Lenovo G770. When it brought to me, I saw only black screen and mouse cursor before login in system. Safe mode and recovery haven't help my situation :(
Solution:
1.Download Live CD with GNU/Linux (for example Ubuntu) or connect laptop's disk to PC.
2. Go to folder "C:\WINDOWS\system32\config" and make backup files:
DEFAULT SECURITY SOFTWARE SYSTEM SAM
3. Copy files from "C:\WINDOWS\system32\config\RegBack" to "C:\WINDOWS\system32\config"
4. Reboot
5. System will loading first time very slowly.
Best regards!

UART for Arduino pro mini based Arduino UNO
I waste about two days for uploading sketch into Arduino pro mini by Chinese USB To TTL. I've been angry! But I've been stupid! For uploading into Arduino pro mini necessary DTR-pin. Unfortunately my USB To TTL have not DTR-pin. :(
I've resolved my problem using Arduino UNO. Don't forget pull out Atmega from UNO!!!

UART для Arduino pro mini на основе Arduino UNO
Пару дней провозившись с заливкой скетча (с помощью китайского USB To TTL) на Arduino pro mini я уже был на пределе срыва :) Но дело было не в бобине... Для заливки скетча необходим DTR порт. К сожалению я преобразователь уровней взял у друга и припаиваться к микросхеме было нельзя, я решил использовать свою настольную самопальную арудуино аля UNO. Не забудьте вытащить Atmeg‘у из UNO!!!