Mr.
Mrs.
Miss
Dr.
Ms.
Prof.
Rev.
Lady
Sir
Capt.
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
❗️ Opened issue #4672 in hoppscotch/hoppscotch | |
🎉 Merged PR #149 in piscis/nuxt-quasar-boilerplate | |
💪 Opened PR #149 in piscis/nuxt-quasar-boilerplate | |
🗣 Commented on #112 in chrisboustead/videojs-hls-quality-se... | |
🗣 Commented on #4702 in coralproject/talk |
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 412 commits ███▍░░░░░░░░░░░░░░░░░ 16.1% | |
🌆 Daytime 1188 commits █████████▊░░░░░░░░░░░ 46.5% | |
🌃 Evening 893 commits ███████▎░░░░░░░░░░░░░ 35.0% | |
🌙 Night 61 commits ▌░░░░░░░░░░░░░░░░░░░░ 2.4% |
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
import 'dart:async'; | |
// This is a workaround because sleep from dart:io breaks DartPad instead we're using a Future | |
Future sleep1() { | |
return new Future.delayed(const Duration(seconds: 1), () => "1"); | |
} | |
void main() { | |
do_long_running_fancy_stuff() { |
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
import async from 'async'; | |
import { loadFont } from 'react-native-dynamic-fonts'; | |
const fonts = []; | |
// Roboto-Regular | |
fonts.push({ | |
type: 'ttf', | |
name: 'Roboto-Regular', | |
content: 'data:application/x-font-ttf;charset=utf-8;base64,AAEAAAASAQAABAAgR0RFRrRCsIIAAijcAAACYkdQT1P/GhLXAAIrQAAAXcxHU1VC64LkWQACiQwAABWQT1MvMpeCsagAAAGoAAAAYGNtYXABd1geAAAbWAAAEkZjdnQgK6gHnQAAMKgAAABUZnBnbXf4YKsAAC2gAAABvGdhc3AACAATAAIo0AAAAAxnbHlmJroL9AAAOxwAAelsaGRteFV6YHoAABZAAAAFGGhlYWT8atJ6AAABLAAAADZoaGVhCroKrgAAAWQAAAAkaG10eK5yj5cAAAIIAAAUOGxvY2GAd/+7AAAw/AAACh5tYXhwBz4DCQAAAYgAAAAgbmFtZeakFYkAAiSIAAAEJnBvc3T/bQBkAAIosAAAACBwcmVwomb6yQAAL1wAAAFJAAEAAAACIxKKf3BIXw889QAZCAAAAAAAxPARLgAAAADVAVL0+hv91QkwCHMAAAAJAAIAAAAAAAAAAQAAB2z+DAAACUn6G/5KCTAAAQAAAAAAAAAAAAAAAAAABQ4AAQAABQ4AjwAWAFQABQABAAAAAAAOAAACAAIkAAYAAQADBIYBkAAFAAAFmgUzAAABHwWaBTMAAAPRAGYCAAAAAgAAAAAAAAAAAOAAAv9QACBbAAAAIAAAAABHT09HAEAAAP/9BgD+AABmB5oCACAAAZ8AAAAABDoFsAAgACAAAwOMAGQAAAAAAAAAAAH7AAAB+wAAAg8AoAKPAIgE7QB3BH4AbgXcAGkE+QBlAWUAZwK8AIUCyAAmA3IAHASJAE4BkgAdAjUAJ |
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 matrixRatingColums = [ | |
{ value: 1, text: '1' }, | |
{ value: 2, text: '2' }, | |
{ value: 3, text: '3' }, | |
{ value: 4, text: '4' }, | |
{ value: 5, text: '5' }, | |
{ value: 6, text: '6' } | |
]; | |
// .... | |
{ type: 'matrix', name: 'matrix', |
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
{ | |
type: "matrix", | |
columns: [ | |
"Grade A", | |
"Grade B", | |
"Grade C", | |
"Grade D", | |
"Grade E", | |
"Grade F", | |
], |
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
{ | |
"filters": [{ | |
"lang": [{"de": "XTAG (de)"}, {"en": "XTAG (EN)"}], | |
"key": "xtag" | |
}], | |
"projects": [{ | |
"id": 1, | |
"description": "...", | |
"title": "...", | |
"tileUrl": "http://tile-url.example.org/tile.jpg", |
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
git log --pretty="format: - %h - %s (%cd)" --abbrev-commit --author="Alex" |
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
import path from 'path'; | |
import cp from 'child_process'; | |
import gulp from 'gulp'; | |
import gulpLoadPlugins from 'gulp-load-plugins'; | |
import del from 'del'; | |
import mkdirp from 'mkdirp'; | |
import runSequence from 'run-sequence'; | |
import webpack from 'webpack'; | |
import minimist from 'minimist'; | |
import {exec} from 'child_process'; |
NewerOlder