Skip to content

Instantly share code, notes, and snippets.

View iaserrat's full-sized avatar

ismael iaserrat

View GitHub Profile
@iaserrat
iaserrat / fixes.md
Created January 31, 2021 03:04 — forked from cnicodeme/fixes.md
List of 5,000 Most Frequently Used Domain Name Prefixes and Suffixes - Ordered By Length

Keybase proof

I hereby claim:

  • I am iaserrat on github.
  • I am iaserrat (https://keybase.io/iaserrat) on keybase.
  • I have a public key ASCiON10183V85A6pkhmTn3WBTmBsNP4w-tmkBYPeAShhgo

To claim this, I am signing this object:

#!/usr/bin/env bash
# Install RVM With Ruby
\curl -sSL https://get.rvm.io | bash -s stable --ruby
# Install Ruby 2.3.0
rvm install 2.3.0
rvm gemset create cpmx
@iaserrat
iaserrat / FBLogin.swift
Last active April 7, 2016 06:16
This is a swift port of the official FacebookSDK login tutorial. It's been tested on Xcode 6 Beta 1 with the iOS 8 Simulator. You can find the official FB tutorial here: https://developers.facebook.com/docs/facebook-login/ios/v2.0
// YourProject-Bridging-Header.h
#import <FacebookSDK/FacebookSDK.h>
// AppDelegate.swift
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
.
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
.
.
.
func application(application: UIApplication, openURL url: NSURL, sourceApplication: NSString?, annotation: AnyObject) -> Bool {
@iaserrat
iaserrat / TypeDFF
Last active December 25, 2015 02:29
Comportamental Type D FlipFlop (verilog)
module foo
(
input In,
input Reset,
input Clock,
input Set,
output reg D);
always @(posedge CLK)
begin