- Download the latest zsh package: https://packages.msys2.org/package/zsh?repo=msys&variant=x86_64
Example:
zsh-5.7.1-1-x86_64.pkg.tar.xz
Example:
zsh-5.7.1-1-x86_64.pkg.tar.xz
Thank you everybody, Your comments makes it better
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"| # delete the dotnet folder under /usr/local/share/dotnet | |
| 1. cd /usr/local/share/dotnet && ls | |
| 2. sudo rm -rf dotnet | |
| # delete the dotnet reference file at /etc/paths.d/dotnet | |
| 1. cd /etc/paths.d && ls | |
| 2. sudo rm dotnet |
| //Copyright (c) 2014 Tilman Schmidt (@KeyMaster_) | |
| //Permission is hereby granted, free of charge, to any person obtaining a copy | |
| //of this software and associated documentation files (the "Software"), to deal | |
| //in the Software without restriction, including without limitation the rights | |
| //to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| //copies of the Software, and to permit persons to whom the Software is | |
| //furnished to do so, subject to the following conditions: | |
| //The above copyright notice and this permission notice shall be included in |
Just wanted a quick start guide for myself so that I wouldn't have to keep rooting through Google to remember all this stuff. Hopefully it helps other people.
If you had other ideas or suggestions please leave a comment.
The first time I bought a Pi I was enormously frustrated with myself because I didn't own all of this stuff. Kept having to order things off of Amazon and wait to get started... very irritating. This is all good stuff to have laying around anyway:
| -- passing a table like {255, 100, 20} | |
| function application:rgbToHex(rgb) | |
| local hexadecimal = '0X' | |
| for key, value in pairs(rgb) do | |
| local hex = '' | |
| while(value > 0)do | |
| local index = math.fmod(value, 16) + 1 |
| README: http://fitzgen.github.com/github-api/ | |
| Repo: https://github.com/fitzgen/github-api/blob/master/github.js |
| /** | |
| * fullscreenify() | |
| * Stretch canvas to size of window. | |
| * | |
| * Zachary Johnson | |
| * http://www.zachstronaut.com/ | |
| * | |
| * See also: https://gist.github.com/1178522 | |
| */ |