Skip to content

Instantly share code, notes, and snippets.

pragma solidity ^0.4.25;
import "./KyberNetworkProxyInterface.sol";
/**
* @title SafeMath
* @dev Math operations with safety checks that revert on error
*/
library SafeMath {
@alexanderkiel
alexanderkiel / ring-spec.clj
Last active April 8, 2018 20:06
An attempt to write a ring spec in clojure.spec.
(ns ring.spec
(:require [clojure.java.io :as io]
[clojure.spec :as s]
[clojure.spec.gen :as gen]
[clojure.string :as str])
(:import [java.io File InputStream]))
;; ---- Internal Primitives ---------------------------------------------------
(def ^:private token-pattern #"[\!#$%&'*+-.^_`|0-9A-Za-z]+")
@ghoseb
ghoseb / clj_spec_playground.clj
Last active March 30, 2019 22:35
Examples of Clojure's new clojure.spec library
(ns clj-spec-playground
(:require [clojure.string :as str]
[clojure.spec :as s]
[clojure.test.check.generators :as gen]))
;;; examples of clojure.spec being used like a gradual/dependently typed system.
(defn make-user
"Create a map of inputs after splitting name."
([name email]

Socket.io example

npm init
npm install --save express body-parser socket.io morgan consolidate nunjucks
mkdir -p public/views

File app.js

@59naga
59naga / README.md
Last active October 6, 2016 12:48
react-dnd minimal example
git clone https://gist.github.com/ed6714519284d36792ba.git try-dnd
cd try-dnd

npm install
npm start
# http://0.0.0.0:59798/webpack-dev-server/
# webpack result is served from /
# content is served from /Users/59naga/Downloads/try-dnd
@mitsuruog
mitsuruog / index.md
Last active April 15, 2024 00:54
express実践入門

express実践入門


自己紹介

小川充

  • mitsuruog
@nowri
nowri / jquery.redux.js
Last active January 15, 2020 01:59
jQueryでFluxライブラリreduxを使えるようになるPlugin
/*! jquery.redux.js | Copyright (c) 2015 nowri | The MIT License (MIT) */
(function(factory) {
if(typeof exports === 'object') {
factory(require('jquery'));
} else if(typeof define === 'function' && define.amd) {
define(['jquery'], factory);
} else {
factory(jQuery);
}
}(function($) {
@voluntas
voluntas / webrtc.rst
Last active June 27, 2024 02:25
WebRTC コトハジメ
@chantastic
chantastic / on-jsx.markdown
Last active May 30, 2024 13:11
JSX, a year in

Hi Nicholas,

I saw you tweet about JSX yesterday. It seemed like the discussion devolved pretty quickly but I wanted to share our experience over the last year. I understand your concerns. I've made similar remarks about JSX. When we started using it Planning Center, I led the charge to write React without it. I don't imagine I'd have much to say that you haven't considered but, if it's helpful, here's a pattern that changed my opinion:

The idea that "React is the V in MVC" is disingenuous. It's a good pitch but, for many of us, it feels like in invitation to repeat our history of coupled views. In practice, React is the V and the C. Dan Abramov describes the division as Smart and Dumb Components. At our office, we call them stateless and container components (view-controllers if we're Flux). The idea is pretty simple: components can't

React/FluxでSPAを開発してぶちあたった問題

(この資料は専用のプリプロセッサで動くことを全体にしたドキュメントです)

React/FluxでSPAを開発してぶちあたった問題

mizchi / Increments, Inc.

@ React Meetup #1