Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
font-family = "VictorMono NFM Regular" | |
font-family-bold = "VictorMono NFM Bold" | |
font-size = 14 | |
theme = rose-pine | |
shell-integration-features = no-cursor,sudo,no-title | |
cursor-style = block | |
adjust-cell-height = 35% | |
# background-opacity = 0.96 | |
mouse-hide-while-typing = true |
const SPRITE_INCREMENT = 48, | |
SPRITE_SIZE = 96, | |
MOVEMENT_SPEED = 1, | |
MIN_ANIMATION_TIME = 3000; | |
class AvatarObject { | |
constructor(spriteImageLocation, direction = 'down', x = 0, y = 0, width = 16, height = 16, timePerFrame = 150, numberOfFrames = 2) { | |
this.spriteImageLocation = spriteImageLocation |
{"version":1,"notes":"","documentation":"\"This file is a QMK Configurator export. You can import this at <https://config.qmk.fm>. It can also be used directly with QMK's source code.\n\nTo setup your QMK environment check out the tutorial: <https://docs.qmk.fm/#/newbs>\n\nYou can convert this file to a keymap.c using this command: `qmk json2c {keymap}`\n\nYou can compile this keymap using this command: `qmk compile {keymap}`\"\n","keyboard":"coseyfannitutti/discipline","keymap":"coseyfannitutti_discipline_layout_65_ansi_mine","layout":"LAYOUT_65_ansi","layers":[["KC_GESC","KC_1","KC_2","KC_3","KC_4","KC_5","KC_6","KC_7","KC_8","KC_9","KC_0","KC_MINS","KC_EQL","KC_BSPC","KC_GRV","KC_TAB","KC_Q","KC_W","KC_E","KC_R","KC_T","KC_Y","KC_U","KC_I","KC_O","KC_P","KC_LBRC","KC_RBRC","KC_BSLS","KC_DEL","HYPR(KC_NO)","KC_A","KC_S","KC_D","KC_F","KC_G","KC_H","KC_J","KC_K","KC_L","KC_SCLN","KC_QUOT","KC_ENT","KC_PGUP","KC_LSFT","KC_Z","KC_X","KC_C","KC_V","KC_B","KC_N","KC_M","KC_COMM","KC_DOT","KC_SLSH","KC_RSFT","KC_ |
<div class="wrapper"> | |
<img class="site-header" src="https://www.wearepixl.com/images/logo-b660e3e2.svg" alt="Pixl"> | |
<h2>Great Apps, Great Websites, Great Results</h2> | |
</div> |
require "xbox-api" | |
require 'time' | |
require "byebug" | |
client = XboxApi::Client.new("xxx") | |
puts 'Xbox gamer tag?' | |
name = gets | |
user = client.gamer(name.chomp) |
#!/bin/bash | |
# Set the ROOM_ID & AUTH_TOKEN variables below. | |
# Further instructions at https://www.hipchat.com/docs/apiv2/auth | |
ROOM_ID=XXX | |
AUTH_TOKEN=XXX | |
MESSAGE="Hello world!" | |
curl -H "Content-Type: application/json" \ |
# SSL self signed localhost for rails start to finish, no red warnings. | |
# 1) Create your private key (any password will do, we remove it below) | |
openssl genrsa -des3 -out localhost.orig.key 2048 | |
openssl rsa -in localhost.orig.key -out localhost.key | |
openssl req -new -key localhost.key -out localhost.csr | |
openssl x509 -req -days 365 -in localhost.csr -signkey localhost.key -out localhost.crt | |
thin start -p 3000 -e development | |
thin start -p 3001 --ssl --ssl-verify --ssl-key-file ~/.ssl/localhost.key --ssl-cert-file ~/.ssl/localhost.crt -e development |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.