git remote add upstream git@github.com/ORIGINAL/REPO-YOU-FORKED.git
git fetch upstream
git pull upstream master
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>repl.it</title> | |
<link href="style.css" rel="stylesheet" type="text/css" /> | |
</head> | |
<body> | |
<div>1 |
// more useful to replace this list with the weak character list. | |
str.replace(/[.,\/#!$%\^&\*;:{}=\-_`~()]/g,""); |
package com.way2b1.examples; | |
import org.openqa.selenium.By; | |
import org.openqa.selenium.WebDriver; | |
import org.openqa.selenium.firefox.FirefoxDriver; | |
import org.openqa.selenium.support.ui.ExpectedCondition; | |
import org.openqa.selenium.support.ui.Wait; | |
import org.openqa.selenium.support.ui.WebDriverWait; | |
public class GoogleSearch { |
# for macs | |
sed -i '' 's/var/let/g' js/**/*.js |
{ | |
"parser": "babel-eslint", | |
"env": { | |
"browser": true, | |
"node": true, | |
"es6": true | |
}, | |
"plugins": ["react"], |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
VOL=$(osascript -e "output volume of (get volume settings)") | |
NEWVOL=0 | |
while true | |
do | |
if (($VOL == $NEWVOL)); then | |
$(osascript -e "set volume output volume 100") | |
echo $(osascript -e "output volume of (get volume settings)") |
(function () { | |
function giphy(word, callback) { | |
var xhr = new XMLHttpRequest(); | |
var url = 'https://api.giphy.com/v1/gifs/translate?rating=pg-13&api_key=dc6zaTOxFJmzC&s=' + encodeURIComponent(word); | |
xhr.open('GET', url); | |
xhr.onreadystatechange = function(e) { | |
if(xhr.readyState === 4) { | |
var url = JSON.parse(e.target.responseText).data.images.fixed_height.url; | |
callback(url); | |
} |