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
esphome: | |
name: YOURAQM | |
esp8266: | |
board: d1_mini | |
# Enable logging | |
logger: | |
# Enable Home Assistant API |
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
- How was your path to coding? Bootcamps/freecodecamp or studied by yourself? | |
Which resource was the most useful? | |
- How were the entry level interviews like? In terms of steps, what kind of co | |
ding questions? | |
- Was there something you wish you knew before when starting interviewing? | |
- What is the number one thing someone starting anew should focus immediately? | |
Eg. mastering a specific language vs. learning algorithms vs building a portfolio. |
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
def wordpattern(pattern, string): | |
unique_types = {} | |
for c in list(pattern): | |
unique_types[c] = 1 | |
patterns = sorted(unique_types.keys()) | |
return wordpattern_helper(0, patterns, {}, pattern, string) | |
def wordpattern_helper(start, patterns, memo, final_pattern, string): |
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
Adidas Freefootball shoes: $40 | |
=================================== | |
Used. | |
http://www.soccer.com/Images/Catalog/ProductImages/hero600/21624.FW01.jpg | |
4qt Slow Cooker from Crockpot: $10 | |
===================================== | |
Used a few times, I actually really like it, but I haven't been cooking much. | |
http://www.amazon.com/dp/B0012US88I/ref=twister_B00EUC74US?_encoding=UTF8&psc=1 |
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
May - Cycling - Grizzly Peak Century https://www.grizz.org/century/ | |
July - Running - SF Marathon http://www.thesfmarathon.com/ | |
August - Cycling - Marin Century http://www.marincyclists.com/ | |
September - Cycling - The Jensie GranFondo http://thejensiegranfondo.com/ | |
October - Cycling - Levi's GranFondo https://www.levisgranfondo.com/ | |
December - Running - Endurance Challenger https://www.thenorthface.com/get-outdoors/endurance-challenge/california.html |
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
$ go run bla.go | |
runtime: garbage collector found invalid heap pointer *(0x2081ce020+0x0)=0x1 s=nil | |
runtime: found *(0x2081b9ce0+0x28) = 0x2081ce020+0x0 | |
fatal error: bad pointer | |
runtime stack: | |
runtime.throw(0x151ab9) | |
/usr/local/Cellar/go/1.4/libexec/src/runtime/panic.go:491 +0xad fp=0x7fff5fbff1a0 sp=0x7fff5fbff170 | |
scanblock(0x2081b9ce0, 0x240, 0x1065e8) | |
/usr/local/Cellar/go/1.4/libexec/src/runtime/mgc0.c:412 +0x989 fp=0x7fff5fbff2e0 sp=0x7fff5fbff1a0 |
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
pt: | |
date: | |
abbr_day_names: | |
- Dom | |
- Seg | |
- Ter | |
- Qua | |
- Qui | |
- Sex | |
- Sáb |
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
// Callbacks | |
ObjController.prototype.update = function (req, res) { | |
model.save(function (err, object) { | |
if(err) req.render500(err) | |
otherModel.update(req.form, function (err, object) { | |
if(err) req.render500(err) | |
req.render('obj') | |
}) | |
}) |
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
// Pattern matching <3 | |
scala> val X = 'b' | |
X: Char = b | |
scala> val List(_, (X, x)) = List(('a', 1), ('b', 2)) | |
x: Int = 2 |
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
function Car() { | |
this.wheels = arguments[0]; | |
this.type = arguments[1]; | |
} | |
function SportsCar() { | |
this.speed = arguments[0]; | |
} | |
SportsCar.prototype = new Car(); |
NewerOlder