A Pen by Anya Melnyk on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
๐ Morning 81 commits โโโโโโโโโโโโโโโโโโโโโ 26.0% | |
๐ Daytime 92 commits โโโโโโโโโโโโโโโโโโโโโ 29.5% | |
๐ Evening 109 commits โโโโโโโโโโโโโโโโโโโโโ 34.9% | |
๐ Night 30 commits โโโโโโโโโโโโโโโโโโโโโ 9.6% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Vue.js 4 hrs 42 mins โโโโโโโโโโโโโโโโโโโโโ 67.3% | |
JavaScript 2 hrs 5 mins โโโโโโโโโโโโโโโโโโโโโ 29.9% | |
MDX 8 mins โโโโโโโโโโโโโโโโโโโโโ 2.0% | |
CSS 2 mins โโโโโโโโโโโโโโโโโโโโโ 0.5% | |
Less 0 secs โโโโโโโโโโโโโโโโโโโโโ 0.2% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
#encoding: utf-8 | |
require 'rubygems' unless defined? Gem # rubygems is only needed in 1.8 | |
require "./bundle/bundler/setup" | |
require "alfred" | |
mapping = { | |
'iu' => 'Q', | |
'ei' => 'W', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const should = require('should') | |
const request = require('supertest') | |
const app = require('/path/to/app').default.app | |
const { describe, it } = global | |
const username = 'username' | |
const password = 'password' | |
describe('token api test', () => { |