Mr.
Mrs.
Miss
Dr.
Ms.
Prof.
Rev.
Lady
Sir
Capt.
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
| 🗣 Commented on #188 in datopian/giftless | |
| 💪 Opened PR #7258 in coollabsio/coolify | |
| 💪 Opened PR #7256 in coollabsio/coolify | |
| 🗣 Commented on #7204 in coollabsio/coolify | |
| ❗️ Labeled issue #7204 in coollabsio/coolify |
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 765 commits ███▍░░░░░░░░░░░░░░░░░ 16.3% | |
| 🌆 Daytime 2327 commits ██████████▍░░░░░░░░░░ 49.5% | |
| 🌃 Evening 1480 commits ██████▌░░░░░░░░░░░░░░ 31.5% | |
| 🌙 Night 126 commits ▌░░░░░░░░░░░░░░░░░░░░ 2.7% |
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
| 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 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
| 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 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 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 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
| { | |
| type: "matrix", | |
| columns: [ | |
| "Grade A", | |
| "Grade B", | |
| "Grade C", | |
| "Grade D", | |
| "Grade E", | |
| "Grade F", | |
| ], |
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
| { | |
| "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 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
| git log --pretty="format: - %h - %s (%cd)" --abbrev-commit --author="Alex" |
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
| 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