I hereby claim:
- I am amrnt on github.
- I am amrnt (https://keybase.io/amrnt) on keybase.
- I have a public key ASDPTkMh2cg8Z8IE_ejqYweyjzODhsRJZIkupTvH_WDkago
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
# gource | |
# https://gource.io/ | |
# flutter | |
# https://github.com/flutter | |
# 1. clone or git pull all repos |
^ Wed 16/12 | |
v Thu 17/12 | |
v Fri 18/12 | |
- Sat 19/12 | |
- Sun 20/12 | |
Mon 21/12 | |
Tus 22/12 | |
Wed 23/12 | |
* Thu 24/12 | |
* Fri 25/12 |
package main | |
import ( | |
"net/http" | |
"strconv" | |
"github.com/labstack/echo" | |
mw "github.com/labstack/echo/middleware" | |
"github.com/rs/cors" | |
"github.com/thoas/stats" |
package main | |
import ( | |
"github.com/robertkrimen/otto" | |
) | |
func main() { | |
vm := otto.New() | |
vm.Run(` | |
function fib(n) { |
* Facebook review Shit | |
* Mobile Flow | |
------ | |
- login/signup thru facebook | |
- Map/List of locations around you | |
- Location -> Info + Offers | |
- If he has the QR code of the branch, and in the range of 10m of that location, checkin. | |
- After; If you share on facebook, points++. | |
- Callback the api after share succeeded. | |
- Claim reward: Share; points++ |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-scroll-header-panel/core-scroll-header-panel.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; |
package main | |
import ( | |
"io" | |
"log" | |
"mime/multipart" | |
"net/http" | |
"os" | |
"path/filepath" | |
"runtime" |
I hereby claim:
To claim this, I am signing this object:
module ActiveRecord | |
# Declare an enum attribute where the values map to integers in the database, but can be queried by name. Example: | |
# | |
# class Conversation < ActiveRecord::Base | |
# enum status: [ :active, :archived ] | |
# end | |
# | |
# # conversation.update! status: 0 | |
# conversation.active! | |
# conversation.active? # => true |