I hereby claim:
- I am bobber205 on github.
- I am bobber205 (https://keybase.io/bobber205) on keybase.
- I have a public key ASCQBFn6cdmqAAML2qqxBThGpFWNw8fftuvjfaCZdtxr9Ao
To claim this, I am signing this object:
/** | |
* Copyright (c) Facebook, Inc. and its affiliates. | |
* | |
* This source code is licensed under the MIT license found in the | |
* LICENSE file in the root directory of this source tree. | |
*/ | |
#import "RCTTiming.h" | |
#import "RCTAssert.h" |
jQuery("[ng-model='versionSelection[version.versionLabel]'").slice(jQuery("[ng-model='versionSelection[version.versionLabel]'").length - 100, jQuery("[ng-model='versionSelection[version.versionLabel]'").length).click(); |
I hereby claim:
To claim this, I am signing this object:
Good Morning, | |
My name is Jing. I'm very interested at the Front End Developer job you posted on Craigslist! | |
I am comfortable with implementing responsive and well designed front end features with CSS media queries and frameworks like Bootstrap/AngularJS. I also have some experience creating restful APIs with Node.Js and Ruby on Rails. | |
PizzaPlanet and TwitterSearch are some recent pet projects I did with the MEAN stack. I have my resume attached along with my Portifolio and Github sites. | |
Before I dived into web development, I had 3 years of experience as Human Resource Specialist working in international companies like Philips and Sirona Dental. Those jobs taught me how to work in a team environment made up of people from many different backgrounds. |
<?xml version="1.0" encoding="UTF-8"?> | |
<soapenv:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:v1="http://ms.marriott.com/bonus/service/v1/" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> | |
<soapenv:Body> | |
<v1:RewardBonus> | |
<v1:MessageProperties> | |
<v1:SourceSystemCode>G</v1:SourceSystemCode> | |
<v1:SourceSubsystemCode>Chirpify</v1:SourceSubsystemCode> | |
<v1:OperatorID>CHIRPIFY</v1:OperatorID> | |
</v1:MessageProperties> | |
<v1:PayloadStdAttributes> |
data = [[1,100],[2,200]] | |
data[0] = data[0] * 2 | |
#results in [1,100,1,100],[2,200]] |
<pre style="font: 10px/5px monospace;"><span style="color: #75080b;"></span><span style="color: #720508;">#</span><span style="color: #78090f;">#</span><span style="color: #76090e;">#</span><span style="color: #72090e;">#</span><span style="color: #6b060a;">#</span><span style="color: #6a070a;">#</span><span style="color: #6b080b;">#</span><span style="color: #750a10;">#</span><span style="color: #74090f;">#</span><span style="color: #73080e;">#</span><span style="color: #780d13;">#</span><span style="color: #75080e;">#</span><span style="color: #780d13;">#</span><span style="color: #72070d;">#</span><span style="color: #770a10;">#</span><span style="color: #790a11;">#</span><span style="color: #7f0d15;">#</span><span style="color: #780910;">#</span><span style="color: #770a10;">#</span><span style="color: #790c12;">#</span><span style="color: #77080f;">#</span><span style="color: #770b11;">#</span><span style="color: #6f090d;">#</span><span style="color: #6d080d;">#</span><span style="color: #64121b;">#</spa |
var userChoice = prompt("Do you choose rock, paper or scissors?"); | |
var computerChoice = Math.random(); | |
if (computerChoice < 0.34) { | |
computerChoice = "rock"; | |
} else if(computerChoice <= 0.67) { | |
computerChoice = "paper"; | |
} else { | |
computerChoice = "scissors"; | |
} console.log("Computer: " + computerChoice); |
Export dev database using Sequel Pros' File -> Export option. | |
Open up resulting huge file in vim and delete the following lines at the bottom of the file | |
You'll end up getting an error upon import that says somethign like | |
Cannot find `admin`@`%` | |
Delete the 3 stored procedures at the bottom of the file to resolve this including the below. |