Sources:
- Create self-signed SSL certificate
cd
mkdir .ssl
cd .ssl
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 |
#!/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" |
Sources:
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' |
// { | |
// 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", |