gitflow | git |
---|---|
git flow init |
git init |
git commit --allow-empty -m "Initial commit" |
|
git checkout -b develop master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This script has moved to https://github.com/Arty2/userstyles |
THIS GIST WAS MOVED TO TERMSTANDARD/COLORS
REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
style "meld-color-scheme-user" | |
{ | |
# inserted line(s), also edge color block for added file in dir diff | |
color["insert-bg"] = "#006000" | |
color["insert-outline"] = shade(1.5, @insert-bg) | |
# In dir diff, an added file's name | |
color["insert-text"] = "white" | |
# Color block on edge for missing file in dir diff | |
color["delete-bg"] = "#800000" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
user="" | |
password="" | |
host="" | |
backup_path="/path/to/your/home/_backup/mysql" | |
date=$(date +"%d-%b-%Y") | |
# Get list of databases |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.border-radius (@radius) { | |
-webkit-border-radius: @radius; | |
-o-border-radius: @radius; | |
-moz-border-radius: @radius; | |
-ms-border-radius: @radius; | |
border-radius: @radius; | |
} | |
.user-list { | |
// need to use special `.` syntax |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PHP OOP | |
Team | |
- Mathijs | |
- Stefan | |
- Farid | |
- Ertugrul | |
- Bahtiyar | |
- Danny | |
- Fons |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<IfModule rewrite_module> | |
#OR<IfModule mod_rewrite.c> | |
#OR<IfModule mod_rewrite.so> | |
# according to apache-documentation, followsymlinks is needed for mod_rewrite | |
Options +FollowSymLinks | |
# Enable the RewriteEngine | |
RewriteEngine On | |
# if needed add(/uncomment) the following: | |
#RewriteBase /path/to/file/to/be/found/ | |
# check if the request is not an existing file |