Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.
Avoid being a link dump. Try to provide only valuable well tuned information.
Neural network links before starting with transformers.
1. Go to your sublime home directory, then Packages/SublimeREPL/config/ | |
2. Open 'Ruby' directory in config, make the changes in this PR to pry_repl.rb | |
https://github.com/wuub/SublimeREPL/pull/372/files | |
3. Run 'which ruby' in your terminal, and copy the path it returns. | |
eg. /Users/sudhagarsachin/.rbenv/shims/ruby | |
4. In Main.sublime-menu, line 33, the "osx" to this JSON. | |
"osx": [ | |
"/Users/sudhagarsachin/.rbenv/shims/ruby", // replace this with your path | |
"${packages}/SublimeREPL/config/Ruby/pry_repl.rb", | |
"$editor" |
/* ******************************************************************************************* | |
* THE UPDATED VERSION IS AVAILABLE AT | |
* https://github.com/LeCoupa/awesome-cheatsheets | |
* ******************************************************************************************* */ | |
// 0. Synopsis. | |
// http://nodejs.org/api/synopsis.html |
# Install AGS in Fedora 20 | |
# https://github.com/adventuregamestudio/ags/blob/master/debian/README.md | |
# Change this to whatever you use for home dir apps | |
cd ~/app | |
git clone git://github.com/adventuregamestudio/ags.git | |
cd ags | |
sudo yum -y install python-devel freetype-devel libvorbis-devel allegro-devel allegro libtheora libtheora-devel dumb-devel dumb | |
make --directory=Engine | |
sudo make --directory=Engine install |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
class Application < Sinatra::Base | |
configure do | |
enable :static | |
set :views, File.join(File.dirname(__FILE__), 'views') | |
end | |
get '/' do | |
slim :index | |
end |
donp@sparky:~/.config/sublime-text-2/Packages$ git clone git://github.com/fredwu/ruby-slim-tmbundle.git Ruby-Slim.tmbundle | |
Cloning into Ruby-Slim.tmbundle... | |
remote: Counting objects: 142, done. | |
remote: Compressing objects: 100% (63/63), done. | |
remote: Total 142 (delta 89), reused 114 (delta 61) | |
Receiving objects: 100% (142/142), 21.44 KiB, done. | |
Resolving deltas: 100% (89/89), done. | |
donp@sparky:~/.config/sublime-text-2/Packages$ ls Ruby-Slim.tmbundle/ | |
Commands info.plist Preferences README.md Snippets Syntaxes | |
donp@sparky:~/.config/sublime-text-2/Packages$ |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream