A Pen by Anya Melnyk on CodePen.
This file contains 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 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 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 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', () => { |