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

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];

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
@zehfernandes
zehfernandes / pliim-turnOff.scpt
Last active December 17, 2023 22:15
One click and be ready to go up on stage and shine! - https://zehfernandes.github.io/pliim/
# Turn on Notifications
do shell script "defaults -currentHost write com.apple.notificationcenterui doNotDisturb -bool FALSE; defaults -currentHost delete com.apple.notificationcenterui doNotDisturbDate; osascript -e 'quit application \"NotificationCenter\" ' && killall usernoted" -- this set 'Do not disturb' to false in the pref
# Show Desktop
do shell script "defaults write com.apple.finder CreateDesktop -bool true; killall Finder"
# Show all windows
tell application "System Events"
set visible of (every process) to true
end tell
{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 {