- test
- done
- change the
class="night_image"
in header_user.html - a task list item
- list syntax required
- normal formatting, @mentions, #1234 refs
- incomplete
- completed
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
.platform-browser { | |
display: flex; | |
justify-content: center; | |
.hello-browser { | |
background-color: red; | |
} | |
} |
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
<link rel="icon" type="image/x-icon" href="assets/icon/favicon.ico"> |
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 Mother { | |
protected toInt = [] | |
protected toBool = [] | |
protected toObject = [] | |
deserialize(instanceData) { | |
console.log('mother deserializing ') | |
const keys = Object.keys(this); | |
for (const key of keys) { |
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
#!/bin/sh | |
# sh docker_setup.sh | |
# from https://gist.github.com/gcamerli/b8cf836f8627cb285f33086db10096a2 | |
# Assuming you’re using zsh and you’ve already installed | |
# VirtualBox from MSC | |
LOGIN=$(whoami) | |
rm -rf ~/.docker |
Steps to deploy a Node.js app to DigitalOcean using PM2, NGINX as a reverse proxy and an SSL from LetsEncrypt
If you use the referal link below, you get $10 free (1 or 2 months) https://m.do.co/c/5424d440c63a
I will be using the root user, but would suggest creating a new user
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
const mainMachine = Machine({ | |
id: 'main', | |
initial: 'idle', | |
context: { | |
// retries: 0 | |
}, | |
states: { | |
idle: { | |
on: { |
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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
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
const fetchRandomDog = () => null | |
const specialitySelectMachine = Machine({ | |
id: "dog fetcher", | |
initial: "loading", | |
context: { | |
dog: null, | |
error: null | |
}, | |
states: { |
OlderNewer