git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| define [ | |
| 'controllers/controllers' | |
| 'services/form-data' | |
| ], (module) -> | |
| 'use strict' | |
| NAME = 'form-data' | |
| module.controller NAME, ['$scope', '$location', '$routeParams', 'form-data', ($scope, $location, $routeParams, formData) -> | |
| console.log NAME, ' controller created' |
| .mauticform_wrapper {} | |
| .mauticform-innerform {} | |
| .mauticform-post-success {} | |
| .mauticform-name { font-weight: bold; font-size: 1.5em; margin-bottom: 3px; } | |
| .mauticform-description { margin-top: 2px; margin-bottom: 10px; } | |
| .mauticform-error { margin-bottom: 10px; color: red; } | |
| .mauticform-message { margin-bottom: 10px;color: green; } | |
| .mauticform-row { display: block; margin-bottom: 20px; } | |
| .mauticform-label { font-size: 1.1em; display: block; font-weight: bold; margin-bottom: 5px; } |
| $('intro-page-frm').each(function(){ | |
| function injectCSS(){ | |
| $iframe.contents().find('head').append( | |
| $('<link/>', { rel: 'stylesheet', href: 'https://gist.githubusercontent.com/rcdelfin/c7037a77c92d4d554c6f1ae9f76ca328/raw/79d045d3c2d3a4bb99be22796a6628d7f21b0e56/untangl-intro-page.css', type: 'text/css' }) | |
| ); | |
| } | |
| var $iframe = $(this); | |
| $iframe.on('load',function(){ | |
| injectCSS(); |
| { | |
| "name": "Virtually Replaced Tool", | |
| "version": "1.1.6", | |
| "manifest_version": 2, | |
| "description": "VirtuallyReplaced Extension", | |
| "homepage_url": "https://virtuallyreplaced.com/", | |
| "icons": { | |
| "16": "assets/icons/icon16.png", | |
| "48": "assets/icons/icon48.png", | |
| "128": "assets/icons/icon128.png" |
| #cloud-config | |
| #type: master | |
| --- | |
| hostname: master01 | |
| users: | |
| - name: core | |
| passwd: $6$rounds=4096$qTfXAnCBjkQ326$zRFWfe45s3quKvxl2pax1Ml44PCPNQQYXcJ.r0FfkN5jwecdipepTLMNEQCsAcGJkH5NA6BCPr4VIGJNftBIe. | |
| groups: | |
| - sudo |
| #!/usr/bin/env python | |
| import sys | |
| import pandas as pd | |
| import pymongo | |
| import json | |
| def import_content(filepath): | |
| mng_client = pymongo.MongoClient('localhost', 27017) |
| #!/bin/bash | |
| docker run -d -p 80:80 -p 443:443 --name rancher-server rancher/rancher:latest | |
| while ! curl -k https://localhost/ping; do sleep 3; done | |
| # Login | |
| LOGINRESPONSE=`curl -s 'https://127.0.0.1/v3-public/localProviders/local?action=login' -H 'content-type: application/json' --data-binary '{"username":"admin","password":"admin"}' --insecure` | |
| LOGINTOKEN=`echo $LOGINRESPONSE | jq -r .token` | |
| # Change password |
Laravel Homestead is an official, pre-packaged Vagrant box that provides you a wonderful development environment without requiring you to install PHP, HHVM, a web server, and any other server software on your local machine. Read more...
Download homestead box:
| " Specify a directory for plugins | |
| call plug#begin('~/.vim/plugged') | |
| Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
| Plug 'scrooloose/nerdtree' | |
| "Plug 'tsony-tsonev/nerdtree-git-plugin' | |
| Plug 'Xuyuanp/nerdtree-git-plugin' | |
| Plug 'tiagofumo/vim-nerdtree-syntax-highlight' | |
| Plug 'ryanoasis/vim-devicons' | |
| Plug 'airblade/vim-gitgutter' |