-
- they're actually pretty good. be sure to read
Composition v. Inheritance&thinking in React, if nothing else.
- they're actually pretty good. be sure to read
-
- this is actually a good resource for all things frontend. But I've linked specifically to the React section.
| #!/bin/bash | |
| # original author : Relliktsohg | |
| # continued contributions: Maine, endofzero | |
| # dopeghoti, demonspork, robbiet480, | |
| # UnkzDomain | |
| # https://github.com/endofzero/Minecraft-Sheller | |
| # Configuration | |
| # Main |
| # Path to your oh-my-zsh installation. | |
| export ZSH=$HOME/.oh-my-zsh | |
| ZSH_THEME="bureau" | |
| export PATH=$HOME/.jenv/shims:$HOME/.nvm/versions/node/v9.0.0/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:$PATH | |
| # Uncomment the following line to display red dots whilst waiting for completion. | |
| COMPLETION_WAITING_DOTS="true" | |
| plugins=( |
| Byobu Commands | |
| ============== | |
| byobu Screen manager | |
| Level 0 Commands (Quick Start) | |
| ------------------------------ | |
| <F2> Create a new window |
I thought I'd throw my hat into the ring and help out all the people learning to play with their Raspberry Pi. I've done this a couple times in the last few years and have noticed a lot more people taking advantage of the (more than) reasonably priced Raspberry Pi's and similar computers found on the market. While I'll do my best to walk through a basic setup and get you all the goodies you'll need, this is not meant to be comprehensive. In fact, I'm almost positive I'll leave something(s) out. Not to mention, every setup could be slightly different and needs fine tuned to the project at hand.All that being said, let's take a look at what we need to get started!
If, like me, you come from using a mac or other *nix systems this shouldn't be unfamiliar. However if you're a windows person, I'm terribly sorry. If you're still on windows as a main operating system this might be a little tougher for you as I'm not going to go into any detail as to putty, rim raff and all the other shims that you would need to be
| /************************************************* | |
| * This is a simple Monte Carlo simulation to see | |
| * whether we should | |
| * go for X BIG deal and/or Y SMALL deals. | |
| * | |
| * What is the best blend? | |
| * | |
| * Author: Ido Green | plus.google.com/+greenido | |
| * Date: 16 July 2013 | |
| * |
#System Design Cheatsheet
Picking the right architecture = Picking the right battles + Managing trade-offs
##Basic Steps
- Clarify -> Agree on the scope of the system
- User cases (description of sequences of events that, taken together, lead to a system doing something useful)
- Who is going to use it?
- How are they going to use it?
| module.exports = { | |
| plugins: ['react', 'babel', 'html'], | |
| settings: { | |
| 'html/html-extentions': ['.html', '.ejs'], | |
| }, | |
| extends: ['eslint:recommended', 'plugin:react/recommended'], | |
| ecmaVersion: 6, | |
| env: { | |
| browser: true, | |
| node: true, |
| # oh-my-zsh Bureau Theme | |
| ### NVM | |
| ZSH_THEME_NVM_PROMPT_PREFIX="%B⬡%b " | |
| ZSH_THEME_NVM_PROMPT_SUFFIX="" | |
| ### Git [±master ▾●] | |
| ZSH_THEME_GIT_PROMPT_PREFIX="[%{$fg_bold[green]%}±%{$reset_color%}%{$fg_bold[white]%}" |