npm init -y
npm i --save-dev nodemon
npm add babel-preset-env babel-cli
Create a .babelrc
config in your project root. Insert the following
{
"presets": ["env"]
Retrieve logcat dump:
Enable USB debugging. Go into Settings > Applications > Development
, and enable the USB debugging
option.
Install the Android SDK. You'll need a desktop tool called adb that will help you get error logs.
Make sure your phone can connect. Follow the instructions here to make sure that adb can talk with your device: http://code.google.com/android/intro/develop-and-debug.html#developingondevicehardware
Dump logcat data. From your desktop console, type ./adb -d logcat | grep -i SSHTunnel
, example app is SSHTunnel.
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\OpenSSH] | |
"DefaultShellCommandOption"="/" | |
"DefaultShell"="C:\\Program Files\\Git\\bin\\bash.exe" | |
:::::::::::::::::::::::::::::::::::::::::::: | |
:: Automatically check & get admin rights V2 | |
:::::::::::::::::::::::::::::::::::::::::::: | |
@echo off | |
CLS | |
ECHO. | |
ECHO ============================= | |
ECHO Running Admin shell | |
ECHO ============================= |
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\Directory\shell\cmdprompt] | |
@="@shell32.dll,-8506" | |
"Extended"="" | |
"NoWorkingDirectory"="" | |
[HKEY_CLASSES_ROOT\Directory\shell\cmdprompt\command] | |
@="cmd.exe /s /k pushd \"%V\"" |
for /R %%x in (*.*) do ren "%%x" *.jpg |
Preferences > Settings
on User
side{
"always_show_minimap_viewport": true,
"binary_file_patterns": ["*.jpg", "*.jpeg", "*.png", "*.gif", "*.ttf", "*.tga", "*.dds", "*.ico", "*.eot", "*.pdf", "*.swf", "*.jar", "*.zip","node_modules/**", "bower_components/**", ".git/**"],
"bold_folder_labels": true,
for /r %%F in (*) do if %%~zF==0 del "%%F" |