I hereby claim:
- I am oscarz90 on github.
- I am oscarz90 (https://keybase.io/oscarz90) on keybase.
- I have a public key ASBaMpTNTfcfIZEq2gDxv42pI51LoGkqv_h7v3vN4LVJeQo
To claim this, I am signing this object:
| // Native selectors. | |
| (function(window, document) { | |
| 'use strict'; | |
| var noop = function() { | |
| }; | |
| // DOCUMENT LOAD EVENTS | |
| // not needed at the bottom of the page | |
| document.addEventListener('DOMContentLoaded', noop); |
| /** | |
| * OMS | |
| * August 2018 | |
| **/ | |
| /** | |
| * Executes the move for a tic tac toe game given a player who plays the turn. | |
| * @param {array} board The Board Game of tic tac toe with a state | |
| * @param {string} player The player who plays the turn. | |
| * @returns {array} board Returns the board with the move of the player | |
| */ |
| [user] | |
| name = Pavan Kumar Sunkara | |
| email = [email protected] | |
| username = pksunkara | |
| [core] | |
| editor = vim | |
| whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
| excludesfile = ~/.gitignore | |
| [sendemail] | |
| smtpencryption = tls |
I hereby claim:
To claim this, I am signing this object:
###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
People
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| Type | Emoji | code |
|---|---|---|
| feat | β¨ | :sparkles: |
| fix | π | :bug: |
| docs | π | :books: |
| style | π | :gem: |
| refactor | π¨ | :hammer: |
| perf | π | :rocket: |
| test | π¨ | :rotating_light: |
| build | π¦ | :package: |
| #!/bin/sh | |
| # check for where the latest version of IDEA is installed | |
| IDEA=`ls -1d /Applications/IntelliJ\ * | tail -n1` | |
| wd=`pwd` | |
| # were we given a directory? | |
| if [ -d "$1" ]; then | |
| # echo "checking for things in the working dir given" | |
| wd=`ls -1d "$1" | head -n1` |
| import { createStore } from 'redux' | |
| /** | |
| * This is a reducer, a pure function with (state, action) => state signature. | |
| * It describes how an action transforms the state into the next state. | |
| * | |
| * The shape of the state is up to you: it can be a primitive, an array, an object, | |
| * or even an Immutable.js data structure. The only important part is that you should | |
| * not mutate the state object, but return a new object if the state changes. | |
| * |