- 3080/3090 strip down to PCB - https://www.youtube.com/watch?v=uroK91bSwZ8
- Thermal Pad replacment Video - https://www.youtube.com/watch?v=LhCHn6na6s8
- Adding Thermal pads Video - https://www.youtube.com/watch?v=5MYvChEL3Ww
- "Agile and iterative development" - Craig Larman
- "Agile Project Management for Dummies" - Mark C. Layton
- "Kanban: Successful Evolutionary Change for Your Technology Business" - David J. Anderson, Donald G. Reinertsen
If I would to recommend one buy to read on project managmnet it would be this. It talks about key aspects of Scrum, XP, RUP and Evo. This gives you not only foundation about different approaches, but guide how to implemnet them.
This file contains 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
Date | Confirmed | Deaths | Recovered | |
---|---|---|---|---|
2020-01-31 | 2 | |||
2020-02-01 | 2 | 0 | 0 | |
2020-02-02 | 2 | 0 | 0 | |
2020-02-03 | 2 | 0 | 0 | |
2020-02-04 | 2 | 0 | 0 | |
2020-02-05 | 2 | 0 | 0 | |
2020-02-06 | 2 | 0 | 0 | |
2020-02-07 | 3 | 0 | 0 | |
2020-02-08 | 3 | 0 | 0 |
This file contains 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
require 'date' | |
require "open-uri" | |
class Covid19Data | |
attr_reader :date, :month, :year, :day | |
def initialize(date) | |
@date = date | |
@month = Covid19Data.padded(date.month) |
- Docker Hub - One private repo/image spot for free
- Three Scale - Very generous free tier 50GB of space, 500 Pulls a month etc..
- Canister - 20 private repos with almost no limits on free tier
- Code Fresh - Free tier for developers
- Setup Private Docker Registry - Digital Ocean hosted Tutorial
This file contains 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
class Animal | |
constructor: (@name) -> | |
move: (meters) -> | |
alert @name + " moved #{meters}m." | |
class Snake extends Animal | |
move: -> | |
alert "Slithering..." | |
super 5 |
This file contains 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
brew install apple-gcc42 openssl libyaml libffi | |
xcode-select --install | |
export CC=/usr/local/bin/gcc-4.2 | |
export CFLAGS='-g -O2' | |
export RUBY_CONFIGURE_OPTS=--with-openssl-dir=`brew --prefix openssl` | |
export CONFIGURE_OPTS=--with-openssl-dir=`brew --prefix openssl` | |
# I had to edit the svn repo URL in /usr/local/Cellar/ruby-build/20160913/share/ruby-build/1.8.7-p375 and change the URL from http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_7 to https://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_7 | |
rbenv install 1.8.7-p375 |
NewerOlder