I hereby claim:
- I am defeated on github.
- I am wisdombiscuit (https://keybase.io/wisdombiscuit) on keybase.
- I have a public key ASBI2y7YJ4JgY2oqKRLTdQ7EvL1zp4nsJhPnAEggdMPp-wo
To claim this, I am signing this object:
<div class="h-screen grid items-center justify-center"> | |
<div class="text-8xl animate-chars"> | |
<span>e</span> | |
<span>d</span> | |
<span>d</span> | |
<span>i</span> | |
<span>e</span> | |
</div> | |
</div> |
package main | |
import _ "github.com/joho/godotenv/autoload" | |
import "github.com/shurcooL/githubv4" | |
import "golang.org/x/oauth2" | |
import ( | |
"context" | |
"fmt" | |
"log" |
# https://github.com/Shopify/graphql-ruby-client | |
require 'graphql_client' | |
require 'net/http' | |
client = GraphQL::Client.new(Pathname.new('github-schema.json')) do | |
configure do |c| | |
c.url = 'https://api.github.com/graphql' | |
c.username = ENV['GITHUB_USERNAME'] | |
c.password = ENV['GITHUB_ACCESS_TOKEN'] | |
end | |
end |
) , | |
,g@L @@L | |
,@@@@L @@@@L | |
,@@@@@@L @@@@@@k, | |
,@@@@@@@@L @@@@@@@@b, | |
,@@@@@@@@@@L @@@@@@@@@@@, | |
y@@@@@@@@@@@@L @@@@@@@@@@@@@. | |
g@@@@@@@@@@@@@P` "Q@@@@@@@@@@@@@. | |
,g@@@@@@@@@@@@@P` "Q@@@@@@@@@@@@@L | |
,@@@@@@@@@@@@@@P` "Q@@@@@@@@@@@@@L |
I hereby claim:
To claim this, I am signing this object:
var gulp = require('gulp'), | |
postcss = require('gulp-postcss'), | |
autoprefix = require('autoprefixer-core'); | |
gulp.task('css', function() { | |
return gulp.src('test.css') | |
.pipe(postcss([ autoprefix() ])) | |
.pipe(gulp.dest('dist/css')); | |
}); |
require 'curses' | |
Curses.init_screen | |
10.times do | |
Curses.setpos(0,0) | |
Curses.addstr("|") | |
Curses.refresh | |
sleep 0.33 | |
Curses.setpos(0,0) |
$ time node -v | |
v0.8.19 | |
real 0m0.016s | |
user 0m0.010s | |
sys 0m0.005s |
it "should create a new test set" do | |
expect { @preview_test.save }.should change(user.test_sets, :count).by(1) | |
@preview_test.test_set.tap do |t| | |
t.account.should == account | |
t.user.should == user | |
t.service.should == email_service | |
end.should be_valid | |
end | |
class PostsController < ActionController::Base | |
def create | |
Post.create(post_params) | |
end | |
def update | |
Post.find(params[:id]).update_attributes!(post_params) | |
end | |
private |