#Convert .mov to .mp4 with ffmpeg
brew install ffmpeg \
ffmpeg -i input.mov -vcodec copy -acodec copy output.mp4
class FooBar { | |
// EXAMPLE 1 | |
handleClick = (event) => { | |
console.log(event.target.dataset.id) | |
} | |
// EXAMPLE 2 | |
// handleClick = (data) => () => { | |
// console.log(data) |
# Your snippets | |
# | |
# Atom snippets allow you to enter a simple prefix in the editor and hit tab to | |
# expand the prefix into a larger code block with templated values. | |
# | |
# You can create a new snippet in this file by typing "snip" and then hitting | |
# tab. | |
# | |
# An example CoffeeScript snippet to expand log to console.log: | |
# |
/* | |
* Your Stylesheet | |
* | |
* This stylesheet is loaded when Atom starts up and is reloaded automatically | |
* when it is changed and saved. | |
* | |
* Add your own CSS or Less to fully customize Atom. | |
* If you are unfamiliar with Less, you can read more about it here: | |
* http://lesscss.org | |
*/ |
import React, { Component, PropTypes } from 'react'; | |
import ReactDOM from 'react-dom'; | |
import _ from 'lodash'; | |
import { connectToStores } from 'fluxible-addons-react'; | |
import ApplicationStore from '../../stores/ApplicationStore'; | |
import windowSizeChange from '../../actions/windowSizeChange'; | |
import windowScrollChange from '../../actions/windowScrollChange'; |
#Convert .mov to .mp4 with ffmpeg
brew install ffmpeg \
ffmpeg -i input.mov -vcodec copy -acodec copy output.mp4
npx install-peerdeps --dev eslint-config-airbnb
.eslintrc
file in your project directory:{
//FightCode can only understand your robot | |
//if its class is called Robot | |
var Robot = function(robot) { | |
}; | |
Robot.prototype.onIdle = function(ev) { | |
var robot = ev.robot; | |
robot.ahead(100); |
.element::after { | |
content: ""; | |
position: absolute; // make the <element> positioned relative | |
top: 0; // position this where you want the bubble | |
left: 0; | |
border: 15px solid transparent; | |
border-bottom-color: red; | |
display: block; | |
width: 0; | |
} |