I hereby claim:
- I am jacmoe on github.
- I am jacmoe (https://keybase.io/jacmoe) on keybase.
- I have a public key whose fingerprint is 70AE E978 D8EE 0344 38AF 3CB2 3FA5 87E7 6502 3E60
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
<style> | |
.donate-button { | |
text-align: center; | |
} | |
.donate-button .bitcoin-address { | |
font-size: 1.5em; | |
} | |
</style> | |
<div class="donate-button"> |
Based on this blog.
This guide shows you how to setup emacs to render a README.md very similarly to how github will do it; except it also works offline. There are no dependencies that can't be easily installed via the package manager on ubuntu.
emacs
, emacs-goodies-el
, and pandoc
.~/emacs.d/github-pandoc.css
.[alias] | |
fixlock = ! git reset HEAD -- composer.lock && git co -- composer.lock && composer update --no-scripts && git add composer.lock |
@mixin linksColors-lvhaf($link, $visited, $hover, $active, $focus) { | |
a { transition:.2s; padding:1%; margin:-1%; text-decoration:underline; | |
& { color:$link; } | |
&:visited { color:$visited; } | |
&:hover { color:$hover; text-decoration:none; } | |
&:active { color:$active; outline:#ccc 1px dotted; } | |
&:focus { color:$focus; } | |
} | |
} |
If you love deploying websites using Github, but for some reason want to use your own server, this script might be exactly what you need.
github.php
somewhere on your PHP-enabled web server, and make it
accessible for the outside world. Let's say for now the script lives
on http://example.com/github.php1. Open /Applications/XAMPP/etc/httpd.conf | |
2. Enable the following Modules by removing the # at the front of the line. | |
- LoadModule rewrite_module modules/mod_rewrite.so | |
- LoadModule proxy_module modules/mod_proxy.so | |
- LoadModule proxy_http_module modules/mod_proxy_http.so | |
3. Copy and Paste below to the bottom of httpd.conf | |
# Implements a proxy/gateway for Apache. |
#!/usr/bin/env bash | |
# Allows you to test the create-project process using your local | |
# checked-out copy of the skeleton as the source. You MUST commit the | |
# changes you want to test to a git branch! You MUST name that branch | |
# as the first argument and the destination path to set up the fresh | |
# copy into as the second. | |
# | |
# Usage: | |
# - Place this script in your package's root directory and make it executable. | |
# - Set the PACKAGE_NAME variable below to match your composer.json's `name`. |
-use yii\helpers\Html | |
-use yii\bootstrap\Nav | |
-use yii\bootstrap\NavBar | |
-use frontend\assets\AppAsset | |
-use frontend\widgets\Alert | |
-use yii\widgets\Breadcrumbs | |
-AppAsset::register($view) | |
-$view->beginPage() | |
doctype html |