Skip to content

Instantly share code, notes, and snippets.

View nonohry's full-sized avatar
🎯
Focusing

Nono Heryana nonohry

🎯
Focusing
View GitHub Profile
@nonohry
nonohry / Install SIFT 3.0
Created February 27, 2015 17:10
Install SIFT 3.0
1. Download Ubuntu 14.04 ISO file and install Ubuntu 14.04 on any system. -> http://www.ubuntu.com/download/desktop
2. Once installed, open a terminal and run "wget --quiet -O - https://raw.github.com/sans-dfir/sift-bootstrap/master/bootstrap.sh | sudo bash -s -- -i -s -y"
3. Congrats -- you now have a SIFT workstation!!
@nonohry
nonohry / Ebooks 700GB
Created February 27, 2015 18:03
Ebooks 700GB
https://drive.google.com/folderview?id=0BxL2qaeSw5FoM21RTzh6bGNRSDQ&usp=sharing
Инструкция для активации pycharm 2016
0.1) Имя пользователя должно быть на латинице,иначе будут проблемы при активации.
1) Заходим Help/Register… -> License server
2) В поле пишем “http://idea.qinxi1992.cn”
3) Жмем ОК
@nonohry
nonohry / install-matlab.txt
Created June 20, 2017 08:23
Install Matlab on Mac
To install on MoLi/Mavericks/Yosemite:
1) Check if you have Java SE 6 for x86_64.
From the Mac terminal, you can use this command to check:
/usr/libexec/java_home -V
If you don't have it, install it from http://support.apple.com/kb/DL1572
2) After calling the "/usr/libexec/java_home -V", note the directory where Java SE 6 is located. Mine was "/Library/Java/JavaVirtualMachines/jdk1.6.0.jdk/Contents/Home"
@nonohry
nonohry / sublimeupdate
Created June 23, 2017 06:11
Disable pop-up update sublime text
Just go to Preferences -> Settings-User and add there: "update_check": false,
add shell
am start com.cyanogenmod.filemanager
@nonohry
nonohry / imei.md
Created April 27, 2018 10:12
Restore IMEI MTK Devices

Berikut adalah cara menambahkan IMEI secara manual.

  1. Dial nomor #7465625# atau ##3646633##*
  2. Arahkan ke Connectivity > CDS Information > Radio Information
  3. Pada plihan phone 1, masukan AT +EGMR=1,7,”IMEI_1” dan AT +EGMR=1,10,”IMEI_2” (ganti IMEI_1 and IMEI_2 dengan IMEI yang kalian lihat di belakang casing baterai tadi, misalkan AT+EGMR=1.7,”123456789012345”)
  4. Lalu tekan Send Command
  5. Kalau sudah reboot hp kamu
sudo chown -R $USER /System/Library/Frameworks/Python.framework/Versions/2.7/share
@nonohry
nonohry / textlabel.m
Created August 23, 2018 08:51
Text Label Matlab
myString = sprintf('Hello world!\nThe value is %d', someVariable);
set(handles.text1, 'String', myString);
drawnow; % Needed only if this is in a fast loop.
@nonohry
nonohry / easy_install.sh
Last active October 8, 2018 11:32
easy_install pip fails on MacOS
#You may need to do this as user root:
curl https://bootstrap.pypa.io/get-pip.py | python
#to confirm it is working:
pip install --upgrade pip