Assumptions:
- You're running linux on your laptop/desktop
- laptop/desktop has an internet connection
- You've got an ethernet cable between the Raspberry Pi and laptop/desktop
On the host (e.g. laptop with internet connection):
| git config --global user.email "will.price94+dev@gmail.com" | |
| git config --global user.name "Will Price" | |
| git config --global core.editor viim | |
| # Short commands | |
| git config --global alias.co checkout | |
| git config --global alias.br branch | |
| git config --global alias.ci commit | |
| git config --global alias.st status | |
| git config --global alias.lg 'log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit' |
Assumptions:
On the host (e.g. laptop with internet connection):
| package org.willprice.sorting; | |
| public class BubbleSort { | |
| boolean swapped = true; | |
| public int[] sort(int[] array) { | |
| while (swapped) { | |
| swapped = false; | |
| bubble(array); | |
| } |
| . | |
| ├── backup | |
| │ └── grub | |
| │ └── grub.cfg | |
| ├── EFI | |
| │ ├── BOOT | |
| │ │ ├── bootx64.efi | |
| │ │ ├── drivers_x64 | |
| │ │ │ ├── btrfs_x64.efi | |
| │ │ │ ├── ext2_x64.efi |
I had a few issues getting task warrior working on Android 6, so when I inevitably need to set this up again, hopefully I'll remember that I've written this document.
First configure .taskrc.android with the following keys:
taskd.servertaskd.keytaskd.certificatetaskd.cataskd.credentials| Update-ExecutionPolicy Unrestricted | |
| # System settings | |
| Enable-MicrosoftUpdate | |
| Install-WindowsUpdate -AcceptEula -GetUpdatesFromMs -SupressReboots | |
| Set-StartScreenOptions -EnableBootToDesktop | |
| ## Windows features | |
| choco install -y IIS-WebServerRole -source WindowsFeatures | |
| # Desktop settings | |
| Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives ` |
I hereby claim:
To claim this, I am signing this object:
| % INSTRUCTIONS | |
| % =swipl echo-server.pl= | |
| % =:- start_server.= | |
| % | |
| % Then navigate to http://localhost:3000 in your browser | |
| :- module(echo_server, | |
| [ start_server/0, | |
| stop_server/0 |