- 960 Grid System - An effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. There are two variants: 12 and 16 columns, which can be used separately or in tandem.
- Compass - Open source CSS Authoring Framework.
- Bootstrap - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
- Font Awesome - The iconic font designed for Bootstrap.
- Zurb Foundation - Framework for writing responsive web sites.
- SASS - CSS extension language which allows variables, mixins and rules nesting.
- Skeleton - Boilerplate for responsive, mobile-friendly development.
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
# Check installed RAM, disable VM if 8Gb or more. | |
mem_inst=`/usr/sbin/sysctl -n hw.memsize` | |
if [ "$mem_inst" -ge "8589934592" ]; then | |
echo "8Gb+ Memory installed." | |
if [ "$action" == "unload" ]; then | |
sudo nvram boot-args="vm_compressor=2" | |
sudo pmset -a hibernatemode 0 | |
echo "vm.compressor_mode set to 2" |
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
use Illuminate\Database\Capsule\Manager as DB; | |
DB::enableQueryLog(); | |
DB::listen( | |
function ($sql, $bindings, $time) { | |
// $sql - select * from `ncv_users` where `ncv_users`.`id` = ? limit 1 | |
// $bindings - [5] | |
// $time(in milliseconds) - 0.38 |
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
# defaults for jenkins continuous integration server | |
JENKINS_ARGS="-jnlpUrl http://test.lnc.jp:8080/computer/wock/slave-agent.jnlp" | |
# jenkins home location | |
JENKINS_HOME=/opt/jenkins-slave | |
# location of the jenkins war file | |
JENKINS_WAR=$JENKINS_HOME/slave.jar | |
# pulled in from the init script; makes things easier. | |
NAME=jenkins |
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
if ( ! function_exists('elixir')) | |
{ | |
/** | |
* Get the path to a versioned Elixir file. | |
* | |
* @param string $file | |
* @return string | |
*/ | |
function elixir($file) | |
{ |
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
#!/usr/bin/env bash | |
open -a "Google Chrome" --args --disable-new-avatar-menu |
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
[Names] | |
name0=Kepbod | |
count=1 | |
[Kepbod] | |
text=f9f8f5 | |
cyan(bold)=12cfc0 | |
text(bold)=f9f8f5 | |
magenta=ae81ff | |
green=a6e22e | |
green(bold)=acc267 |
-
Awesome ⭐️⭐️⭐️⭐️⭐ A curated list of awesome lists 👈 More
-
Awesome Python ⭐️⭐️⭐️⭐️⭐️ A curated list of awesome Python frameworks, libraries and software http://awesome-python.com/
-
Awesome PHP ⭐️⭐️⭐️⭐️
-
Awesome Sysadmin ⭐️⭐️⭐️⭐️ A curated list of amazingly awesome open source sysadmin resources inspired by Awesome PHP.
-
[Awesome Docker]https://github.com/veggiemonk/awesome-docker
-
Awesome Frontend 中文 ⭐️⭐️⭐️⭐️
-
Awesome PHP 中文 ⭐️⭐️⭐️
Jenkins Email Template Jelly 中获取当前环境变量 build git branch
<j:set var="buildenv" value="${build.getEnvironment(listener)}"/>
<j:set var="branch" value="${buildenv.get('GIT_BRANCH')}"/>
${branch}
Environment variables