Sources:
- Create self-signed SSL certificate
cd
mkdir .ssl
cd .ssl
// { | |
// Place your global snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and | |
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope | |
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is | |
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. | |
// Placeholders with the same ids are connected. | |
// Example: | |
// "Print to console": { | |
// "scope": "javascript,typescript", |
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. | |
# |