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' |