I hereby claim:
- I am kizzx2 on github.
- I am kizzx2 (https://keybase.io/kizzx2) on keybase.
- I have a public key whose fingerprint is C0CD 8083 90F9 F949 183D 9341 B81F 73A5 E3FD 582F
To claim this, I am signing this object:
| apply plugin: 'java' | |
| repositories { | |
| mavenCentral() | |
| } | |
| dependencies { | |
| // Define your dependencies here | |
| compile 'com.google.guava:guava:16.0.1' | |
| } |
| apply plugin: 'java' | |
| repositories { | |
| mavenCentral() | |
| } | |
| configurations { | |
| apt | |
| } |
| require 'optparse' | |
| $: << Rails.root.join('test') | |
| options = {} | |
| OptionParser.new do |opts| | |
| opts.on('-n TEST_NAME') do |n| | |
| options[:test_name] = n | |
| end | |
| opts.on('-e ENVIRONMENT') do |e| |
I hereby claim:
To claim this, I am signing this object:
| { | |
| "name": "node-https-proxy", | |
| "version": "1.0.0", | |
| "description": "", | |
| "main": "auth.js", | |
| "scripts": { | |
| "start": "node_modules/LiveScript/bin/lsc server.ls" | |
| }, | |
| "dependencies": { | |
| "LiveScript": "^1.3.1", |
| #include <iostream> | |
| template <size_t N> | |
| inline void foo(const char (&)[N]) | |
| { | |
| std::cout << "strlen(x) = " << N << std::endl; | |
| } | |
| int main() | |
| { |
| #import <UIKit/UIKit.h> | |
| #import <QuartzCore/QuartzCore.h> | |
| #import <OpenGLES/ES1/gl.h> | |
| #import <OpenGLES/ES1/glext.h> | |
| @interface OGLESView : UIView { | |
| EAGLContext * glContext; | |
| GLuint framebuffer; | |
| GLuint renderbuffer; | |
| } |
| #include <iostream> | |
| struct Foo | |
| { | |
| void One(); | |
| }; | |
| struct Baz : Foo | |
| { | |
| void Two(); |
| -- Problem: Find the 51000000000-th character of the string (wordNumber Infinity) | |
| -- where a wordNumber is defined as | |
| -- | |
| -- wordNumber 1 = "one" | |
| -- wordNumber 2 = "onetwo" | |
| -- wordNumber 3 = "onetwothree" | |
| -- wordNumber 15 = "onetwothreefourfivesixseveneightnineteneleventwelvethirteenfourteenfifteen" | |
| -- ... | |
| -- | |
| -- The answer should be presented as ( sum of all numbers up to that point |
| {-# LANGUAGE OverlappingInstances #-} | |
| {-# LANGUAGE TypeSynonymInstances #-} | |
| {-# LANGUAGE UndecidableInstances #-} | |
| {-# LANGUAGE FlexibleContexts #-} | |
| {-# LANGUAGE FlexibleInstances #-} | |
| {-# LANGUAGE MultiParamTypeClasses #-} | |
| {-# LANGUAGE FunctionalDependencies #-} | |
| -- Type-level functions using functional dependencies |