Skip to content

Instantly share code, notes, and snippets.

View variousauthors's full-sized avatar
🐢
Doubling Down

Various Authors variousauthors

🐢
Doubling Down
View GitHub Profile
@variousauthors
variousauthors / readme.txt
Created July 25, 2020 06:48
Prototype (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@variousauthors
variousauthors / readme.txt
Created July 19, 2020 22:48
Prototype (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@variousauthors
variousauthors / readme.txt
Created July 19, 2020 07:12
Prototype (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@variousauthors
variousauthors / readme.txt
Created July 19, 2020 07:11
Simple Block Pushing Game (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@variousauthors
variousauthors / readme.txt
Created June 27, 2020 08:10
Abandon (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@variousauthors
variousauthors / readme.txt
Created June 27, 2020 08:07
Simple Block Pushing Game (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@variousauthors
variousauthors / readme.txt
Created June 27, 2020 07:33
Exercice de Style (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@variousauthors
variousauthors / readme.txt
Created October 28, 2019 05:56
Exercice de Style (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@variousauthors
variousauthors / readme.txt
Created April 29, 2019 16:52
Push Space (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@variousauthors
variousauthors / PureComponents.md
Last active January 26, 2019 01:08
If I'm being honest I must admit: it looks like the sun goes around the earth.

I've been using ReactRedux for a while and something that I've gotten used to is this.

class Parent extends React.PureComponent {
  render () {
    return <Child />
  }
}

class Child exends React.PureComponent {