- Download Sookasa
- Install the Sookasa_3.XX.X.pkg file
- Download FUSE for macOS
- Open osxfuse-3.X.X.dmg and double click the cardboard box icon labeled
FUSE for macOS. - During the install process make sure to select the option
MacFUSE Compatibility Layerand continue the installation. - Open Sookasa and sign-in
- Using your device you want your email added to, Navigate here
- Login with your email address and password
- In the top right corner next to the Logout Button, you should see a button with a Head Icon and your email address, click it.
- You will see a dropdown, select
Configure Mail Client - Now you will see a page full of options in two columns Applications and Protocols, locate the Application you are trying to install on.
- Select the
IMAP over SSL/TLSorAuto Configoptions which ever is available on your Application. - The script will run, it may ask for permissions depending on what application you are running, follow the dialogs and accept.
- Have root
- Install Android SDK here
- Connect Phone to Computer and have it trust your computer. You will need developer options of USB Debugging on
- Open Terminal
- Use the command
adb shell - In the new shell opened gain root by typing
suyou will need to grant permission via the phone screen
- mount system as read-write permissions
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system
- In a seperate command prompt on your computer push the bootanimation.zip to a writable location i.e.
/storage/sdcard0/Download
- Audio Receiver Price($99) : https://www.amazon.com/Sony-STRDH130-Channel-Stereo-Receiver/dp/B006U1VH2S/ref=sr_1_1?s=tv&ie=UTF8&qid=1511974626&sr=1-1&refinements=p_36%3A1253505011
- Bluetooth HeadPhone Price($20) : (Possible Coupon Code: WTSHDNCO) https://www.amazon.com/dp/B0762LRSQ8?tag=slickdeals&ascsubtag=5ca37968d52811e7ba4202fafdfe01860INT
- Bluetooth HeadPhone Price($9-20) : (Possible Coupon Code: TXIWGPH8) https://www.amazon.com/Headphones-SoundOriginal-Sweatproof-Hands-Free-Microphone/dp/B0722DNVWQ/ref=sr_1_77?tag=slickdeals&ascsubtag=982814ccd52711e7a4a802d4353d21bf0INT&s=wireless&ie=UTF8&qid=1496976649&sr=1-77&keywords=bluetooth%20headphones
- Raspberry Pi Price($28-34) : (Possible Coupon Code: HOLIDAY) https://www.arrow.com/en/products/raspberrypi3/raspberry-pi-foundation
- Wifi Adapter Price($9-20) : (Possible Coupon Code: SD78NZI4) https://www.amazon.com/dp/B01G8IPLD8?tag=slickdeals&ascsubtag=a28aec34d52a11e78871c258c79c70910INT
- Google Home Mini Price($29) : https://sto
In order to connect to the Raspberry Pi, it must be connected to the the network, either via Wifi or Ethernet. Wifi Should Already be Enabled on your device
To connect on a Windows machine you will need a 'ssh client' such as PuTTY. (Download here)
- Under hostname or ip input
pi@raspberrypi.local, password israspberry - Then connect, it may ask you to accept the keys. Go ahead and do so.
- While you're logged in, its good practice to change your password since its the default and very unsecure.
- Install Node, Download
- Run through the installer
- JavaScript runtime is setup on your local machine.
- Open up your CLI of choice (terminal works just fine, press command+space type in terminal and press enter)
- Download VSCode here
- Open Code, then press Command+Shift+P, in the drop down type
Install Pathand press enter (This will make opening directories easier)
- In the Left Tool Pane click the 5th Icon, then in the input box with a placeholder of
Seach extensions in Marketplacetypeprettier code formatterand click on it (you'll thank me later) and click install in the main pane - Next Search for eslint, follow the same steps to install
- Those should be enough to help streamline you're development
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Author: Brett Reinhard | |
| # Date: 1/13/2019 | |
| # Description: | |
| # Create Folder called 'd2' in your Home directory, aka /Users/profile_name/d2 | |
| # Download Windows Game Clients, Class and LOD. Rename the exe files as vanilla.exe and lod.exe respectively | |
| /bin/mkdir ~/d2 |