I hereby claim:
- I am matteojoliveau on github.
- I am matteojoliveau (https://keybase.io/matteojoliveau) on keybase.
- I have a public key ASC6aq3EVH1m09QRusTBGfrG6ntpZqxDXWuKg26ZUp-ldwo
To claim this, I am signing this object:
| This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account. | |
| Token for proof: | |
| [Verifying my OpenPGP key: openpgp4fpr:5082f3e1817a0f9adb54e4eb0e8bd7d975bb89c5] |
| # Created by .ignore support plugin (hsz.mobi) | |
| ### Eclipse template | |
| .metadata | |
| bin/ | |
| tmp/ | |
| *.tmp | |
| *.bak | |
| *.swp | |
| *~.nib |
| # Description: Boxstarter Script for Windows Development Environment Setup | |
| # Author: Matteo Joliveau <[email protected]> | |
| # Inspired by: Boxstarter Script by Jess Frazelle <[email protected]> (https://gist.github.com/jessfraz/7c319b046daa101a4aaef937a20ff41f) | |
| # Last Updated: 2018-02-21 | |
| # | |
| # Install boxstarter: | |
| # . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
| # | |
| # You might need to set: Set-ExecutionPolicy RemoteSigned | |
| # |
I hereby claim:
To claim this, I am signing this object:
| # param( | |
| # [Parameter(Mandatory = $false)] [switch]$help = $help, | |
| # [Parameter(Mandatory = $true)] [string]$source = "develop", | |
| # [Parameter(Mandatory = $true)] [string]$target, | |
| # [Parameter(Mandatory = $false)] [switch]$flow = $false | |
| # ) | |
| param( | |
| [switch]$help = $help, | |
| [string]$source = "develop", |
| ; FixHp.ahk -> https://gist.github.com/nanomad/a71a801db7c2478b9fd6f28798821f04 | |
| #Include .\FixHp.ahk | |
| f4:: | |
| Run "powershell" | |
| Return | |
| +f4:: | |
| Run *RunAs "powershell" | |
| Return |
| git config --global alias.co checkout | |
| git config --global alias.br branch | |
| git config --global alias.ci 'commit -m' | |
| git config --global alias.st status | |
| git config --global alias.aa 'add .' | |
| git config --global alias.a add |
| #!/bin/sh | |
| sudo yum install -y yum-utils device-mapper-persistent-data lvm2 | |
| sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo | |
| sudo yum install docker-ce -y | |
| sudo systemctl start docker | |
| sudo systemctl enable docker | |
| sudo yum install iscsi-initiator-utils -y | |
| sudo docker run -d --restart=unless-stopped -p 8080:80 -p 8443:443 rancher/rancher |
| #!/bin/bash | |
| echo "~> Hi! Let's set your new Mac up!" | |
| # Install XCode Command Line Tools | |
| xcode-select --install | |
| # Install ASDF | |
| git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.4.3 |
| module Types | |
| module PageableType | |
| include Types::Base::Interface | |
| field :current_page, Integer, null: true | |
| field :previous_page, Integer, null: true, method: :prev_page | |
| field :next_page, Integer, null: true | |
| field :total_pages, Integer, null: true | |
| field :total_items, Integer, null: true, method: :total_count | |
| field :size, Integer, null: true, method: :count | |
| field :first_page, Boolean, null: true, method: :first_page? |