create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
find app/src -name "*.js" -exec sh -c 'mv "$0" "${0%.js}.ts"' {} \; |
var mediaJSON = { "categories" : [ { "name" : "Movies", | |
"videos" : [ | |
{ "description" : "Big Buck Bunny tells the story of a giant rabbit with a heart bigger than himself. When one sunny day three rodents rudely harass him, something snaps... and the rabbit ain't no bunny anymore! In the typical cartoon tradition he prepares the nasty rodents a comical revenge.\n\nLicensed under the Creative Commons Attribution license\nhttp://www.bigbuckbunny.org", | |
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" ], | |
"subtitle" : "By Blender Foundation", | |
"thumb" : "images/BigBuckBunny.jpg", | |
"title" : "Big Buck Bunny" | |
}, | |
{ "description" : "The first Blender Open Movie from 2006", | |
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4" ], |
/** | |
* To convert between typed arrays an ArrayBuffer can be used to create | |
* TypedArray's from one type to another. Each typed array has a property | |
* which is an ArrayBuffer. | |
**/ | |
var uint16 = new Uint16Array([0x0102, 0x0304]); | |
var uint32 = new Uint32Array(uint16.buffer); | |
var uint8clamped = new Uint8ClampedArray(uint16.buffer); | |
var uint8 = new Uint8Array(uint16.buffer); |
var google = require("googleapis"), | |
drive = google.drive("v2"), | |
fs = require("fs"); | |
var config = { | |
"client_id": "client_id", | |
"client_secret": "client_secret", | |
"scope": "scope", | |
"redirect_url": "redirect_rul", | |
"tokens": { |
<html> | |
<head> | |
</head> | |
<body><div class="area"></div><nav class="main-menu"> | |
<ul> | |
<li> | |
<a href="#"> | |
<i class="fa fa-home fa-2x"></i> | |
<span class="nav-text"> |
# For more info: http://docs.opencv.org/3.0-beta/doc/py_tutorials/py_gui/py_video_display/py_video_display.html | |
import cv2 | |
import numpy as np | |
import os | |
FILE_OUTPUT = 'output.avi' | |
# Checks and deletes the output file | |
# You cant have a existing file or it will through an error | |
if os.path.isfile(FILE_OUTPUT): |
const FullHeightPage = () => ( | |
<div> | |
Hello World! | |
<style global jsx>{` | |
html, | |
body, | |
body > div:first-child, | |
div#__next, | |
div#__next > div { | |
height: 100%; |
<html> | |
<head> | |
</head> | |
<body><div class="area"></div><nav class="main-menu"> | |
<ul> | |
<li> | |
<a href="http://justinfarrow.com"> | |
<i class="fa fa-home fa-2x"></i> | |
<span class="nav-text"> |
Automating React Native apps on Bitrise? Sure thing! Let's see how! 🤖