I hereby claim:
- I am thalesmg on github.
- I am thalesmg (https://keybase.io/thalesmg) on keybase.
- I have a public key ASB3g8BuHvCeGStc3Yd-hdwmZ7BpzjWQ2lcPIYwFj9yXowo
To claim this, I am signing this object:
module Main exposing (..) | |
import Html exposing (..) | |
import Html.Events exposing (onClick) | |
import Matrix exposing (..) | |
import Array as A | |
import Debug as D | |
main : Program Never Model Msg |
{-# LANGUAGE FlexibleInstances #-} | |
class C a where | |
-- Tipo Args -> Tipo Acumulador -> C a | |
boom :: String -> a | |
-- |Tipo final | |
instance C String where | |
boom = id |
I hereby claim:
To claim this, I am signing this object:
For excessively paranoid client authentication.
Organization & Common Name: Some human identifier for this server CA.
openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt
This is a quick guide to OAuth2 support in GitHub for developers. This is still experimental and could change at any moment. This Gist will serve as a living document until it becomes finalized at Develop.GitHub.com.
OAuth2 is a protocol that lets external apps request authorization to private details in your GitHub account without getting your password. All developers need to register their application before getting started.
# Usage: | |
# $ make test sailor | |
# echo Hello, sailor! | |
# Hello, sailor! | |
# $ make watch test sailor | |
# while true; do \ | |
# make sailor; \ | |
# inotifywait -qre close_write,create,delete .; \ |
This tutorial demonstrates how to use Google Apps Script to:
Create copies of the Google Sheet in the desired destination folder automatically at set intervals.
Append the time stamp with each backup file's name.
Adjust time trigger for backing up every day/hour/minute.
#!/usr/bin/env python | |
# Reflects the requests from HTTP methods GET, POST, PUT, and DELETE | |
# Written by Nathan Hamiel (2010) | |
from http.server import HTTPServer, BaseHTTPRequestHandler | |
from optparse import OptionParser | |
class RequestHandler(BaseHTTPRequestHandler): | |
def do_GET(self): |
newtype Cont final a = Cont { runCont :: (a -> final) -> final } | |
{- | |
f :: a -> b | |
suspensa :: Cont final a | |
fmap f suspensa :: Cont final b | |
-} | |
instance Functor (Cont final) where | |
fmap f suspensa = Cont $ \_pure -> |