Sources:
- Create self-signed SSL certificate
cd
mkdir .ssl
cd .ssl
set nocompatible | |
filetype off | |
set encoding=utf-8 | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'gmarik/Vundle.vim' | |
Plugin 'kien/ctrlp.vim' |
Sources:
cd
mkdir .ssl
cd .ssl
#!/bin/bash | |
TMP_PATH="/tmp/godot.zip" | |
GODOT_LINK=$1 | |
GODOT_DEST="/usr/bin" | |
GODOT_PATH="/usr/bin/godot" | |
ICON_DIR="/usr/share/icons/hicolor/scalable/apps" | |
ICON_PATH="$ICON_DIR/godot.svg" | |
ICON_URL="https://upload.wikimedia.org/wikipedia/commons/6/6a/Godot_icon.svg" |
module Types | |
class ItemType < GraphQL::Schema::Object | |
field :id, ID, null: false | |
field :title, String, null: false | |
field :description, String, null: true | |
field :image_url, String, null: true | |
# (graphql-ruby 1.9.12) | |
# instead of using `resolve` inside block of `field` like this: | |
# | |
# field :user, Types::UserType, null: false do |
$ cat files.txt | |
file '/path/to/file1' | |
file '/path/to/file2' | |
file '/path/to/file3' | |
$ ffmpeg -f concat -safe 0 -i files.txt -c copy output.mp4 |
atom-panel.modal:after { | |
background: rgba(22, 24, 29, 0.46); | |
} |
(function() { | |
$(function() { | |
console.log('test inaccessible code'); | |
}); | |
console.log('inaccessible'); | |
}).call(this); |
% Copyright 2000-2005 Werner Lemberg <[email protected]> and | |
% Vladimir Volovich <[email protected]>. | |
% This file is part of vntex. License: LPPL, version 1.3 or newer, | |
% according to http://www.latex-project.org/lppl.txt | |
% | |
% | |
% This is the file t5enc.def which provides T5 encoding for Vietnamese. | |
% | |
% written by Werner Lemberg <[email protected]> and | |
% Vladimir Volovich <[email protected]> |
# Your keymap | |
# | |
# Atom keymaps work similarly to style sheets. Just as style sheets use | |
# selectors to apply styles to elements, Atom keymaps use selectors to associate | |
# keystrokes with events in specific contexts. Unlike style sheets however, | |
# each selector can only be declared once. | |
# | |
# You can create a new keybinding in this file by typing "key" and then hitting | |
# tab. | |
# |
/* Customize mention, reply badge (color, position) and avatar image in Chatwork | |
put this in ~/.mozilla/firefox/<profile_directory>/chrome | |
*/ | |
@-moz-document domain(www.chatwork.com) { | |
.messageBadge__avatar { | |
border-radius: 15px !important; | |
width: 16px !important; | |
height: 16px !important; | |
border: 1px solid #a484ec !important; |