Skip to content

Instantly share code, notes, and snippets.

@zehfernandes
zehfernandes / daylight.md
Last active January 12, 2016 18:59
Check daylight savetime

Install

npm install moment
npm install time

Code

@zehfernandes
zehfernandes / superscript.md
Last active February 26, 2016 19:54
Superscript compile tricks

Save

^save(subject,value)
^createUserFact(subject, predicate, value)
^createfact(^object color ^color) 

factsDB

Keybase proof

I hereby claim:

  • I am zehfernandes on github.
  • I am zehfernandes (https://keybase.io/zehfernandes) on keybase.
  • I have a public key ASC0fwgIxAPs4-sKv2NbIni9YWyQ_vs1Y5GiWpqwvQ5I7Ao

To claim this, I am signing this object:

tell application "Finder"
set folderFiles to (choose folder with prompt "Please select directory.")
set file_list to name of every file of entire contents of folderFiles
end tell
tell application "Keynote"
activate
tell the front document
repeat with fileName in file_list
set the newSlide to make new slide
const ffmpeg = require('fluent-ffmpeg');
const moment = require('moment');
var myArgs = process.argv.slice(2);
//Convert Video
var filePath = myArgs[0];
var startTime = moment(myArgs[1], "HH:mm:ss.SSS");
var endTime = moment(myArgs[2], "HH:mm:ss.SSS");
var fileOutput = myArgs[3];
{InputLayer} = require "input"
# Loop to all layers and find the inputs
inputs = Framer.CurrentContext._layers.filter((a) =>
return a.name == "input"
)
# Replace the inputs
for l in inputs
# map propertie by properties
videos = document.querySelectorAll('video')
videos.forEach(function(element) {
var promise = element.play();
if (promise !== undefined) {
promise.then(_ => {
// Autoplay started!
}).catch(error => {
element.setAttribute("controls","controls")
});
@zehfernandes
zehfernandes / Home01.js
Created November 14, 2018 21:36
Workshop React Native - Part I
import React from "react";
import {
StyleSheet,
View,
Image,
Dimensions,
} from "react-native";
const { width, height } = Dimensions.get("window");
export default class Home extends React.Component {
@zehfernandes
zehfernandes / App.js
Last active November 14, 2018 21:40
Workshop React Native - Part 2
import React from "react";
import { StyleSheet, Text, View } from "react-native";
import { createStackNavigator } from "react-navigation";
import HomePage from "./pages/Home";
import CheckinPage from "./pages/Checkin";
export default createStackNavigator(
{
Home: {