Please note that this is just for you to experiment with themes, your alacritty config will be overwritten without the comments, so I strongly recommend you to back up your file first and apply the theme yourself once you find out the one you like.
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 customers = [ | |
| { name: 'foo', orders: 4 }, | |
| { name: 'bar', orders: 3 }, | |
| { name: 'baz', orders: 2 }, | |
| { name: 'qux', orders: 1 } | |
| ] | |
| const arrayReducer = (arr, elem) => arr.concat(elem) | |
| const tmap = |
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
| require 'json' | |
| app = ARGV[0] | |
| envs_to_ignore = ['DATABASE_URL'] | |
| keys = | |
| JSON.parse(`heroku config --app #{app} --json`) | |
| .reduce('') do |memo, (key, _value)| | |
| if envs_to_ignore.include? key |
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
| require 'json' | |
| from_app, to_app = ARGV | |
| envs_to_ignore = ['DATABASE_URL'] | |
| config = | |
| JSON.parse(`heroku config --app #{from_app} --json`) | |
| .reduce('') do |memo, (key, value)| | |
| if envs_to_ignore.include? key |
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
| package main | |
| import ( | |
| "fmt" | |
| "math" | |
| ) | |
| func main() { | |
| memAddress := uint(26) |
I hereby claim:
- I am joaofnds on github.
- I am joaofnds (https://keybase.io/joaofnds) on keybase.
- I have a public key whose fingerprint is 1D72 95B2 7D3B C292 068A 6533 064E 0BAC E988 9F9C
To claim this, I am signing this object:
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
| echo -en "\n + " | |
| for i in {0..35}; do | |
| printf "%2b " $i | |
| done | |
| printf "\n\n %3b " 0 | |
| for i in {0..15}; do | |
| echo -en "\033[48;5;${i}m \033[m " | |
| done |
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 pocketData = Array.from(document.querySelectorAll('a')) | |
| .map(a => { | |
| return { | |
| name: a.innerText, | |
| link: a.getAttribute('href'), | |
| tags: a.getAttribute('tags').split(',').filter(t => t.length != 0) | |
| } | |
| }) | |
| .reduce((tags, entry) => { | |
| if (entry.tags.length == 0) { |
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
| (0..7).each do |x| | |
| (30..37).each do |y| | |
| (40..47).each do |z| | |
| print "\033[#{x};#{y};#{z}m\s\\033[#{x};#{y};#{z}m\s\033[0m" | |
| end | |
| print "\n" | |
| end | |
| end |
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
| [{"id":1,"sub_count":88848815,"channel_id":1,"inserted_at":"2019-03-11 14:43:08","updated_at":"2019-03-11 14:43:08"},{"id":2,"sub_count":88847413,"channel_id":2,"inserted_at":"2019-03-11 14:43:08","updated_at":"2019-03-11 14:43:08"},{"id":3,"sub_count":88849030,"channel_id":1,"inserted_at":"2019-03-11 14:44:08","updated_at":"2019-03-11 14:44:08"},{"id":4,"sub_count":88847624,"channel_id":2,"inserted_at":"2019-03-11 14:44:09","updated_at":"2019-03-11 14:44:09"},{"id":5,"sub_count":88849229,"channel_id":1,"inserted_at":"2019-03-11 14:45:09","updated_at":"2019-03-11 14:45:09"},{"id":6,"sub_count":88847827,"channel_id":2,"inserted_at":"2019-03-11 14:45:10","updated_at":"2019-03-11 14:45:10"},{"id":7,"sub_count":88849401,"channel_id":1,"inserted_at":"2019-03-11 14:46:11","updated_at":"2019-03-11 14:46:11"},{"id":8,"sub_count":88848099,"channel_id":2,"inserted_at":"2019-03-11 14:46:13","updated_at":"2019-03-11 14:46:13"},{"id":9,"sub_count":88849632,"channel_id":1,"inserted_at":"2019-03-11 14:47:13","updated_at":"2 |
