This file contains 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
/** | |
* Width | |
*/ | |
.width-100-percent { | |
width: 100%; | |
} | |
/** | |
* divider |
This file contains 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
/** | |
* @jsx React.DOM | |
*/ | |
'use strict'; | |
/** | |
* Libraries | |
*/ | |
var React = require('react'); |
This file contains 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
/** | |
* Your Store | |
*/ | |
'use strict'; | |
/** | |
* Libraries | |
*/ | |
var AppDispatcher = require('../dispatcher/AppDispatcher'); | |
var EventEmitter = require('events').EventEmitter; |
This file contains 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
import React, { Component } from "react"; | |
// Component | |
class ComponentClass extends Component { | |
constructor(props) { | |
super(props); | |
this.state = {}; | |
} |
This file contains 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
<!-- Build Script for ANT --> | |
<project basedir="." default="" name="Build Script"> | |
<property name="username" value="username"/> | |
<property name="passwd" value="passwd"/> | |
<property name="keyfile-path" value="/path-to-private-key"/> | |
<property name="applicationFolder" value="/var/www/html/"/> | |
<property name="sandboxRoot" value="${basedir}"/> |
This file contains 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
# -*- coding: utf-8 -*- | |
""" | |
Summary: | |
""" | |
import inspect | |
import logging | |
import os | |
import pathlib |
This file contains 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
<!-- Build Script for ANT --> | |
<project basedir="." default="" name="Build Script"> | |
<property name="username" value="username"/> | |
<property name="passwd" value="passwd"/> | |
<property name="keyfile-path" value="/path-to-private-key"/> | |
<property name="applicationFolder" value="/var/www/html/"/> | |
<property name="sandboxRoot" value="${basedir}"/> |
This file contains 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
################################### | |
# Utilities | |
################################### | |
alias b="brew" | |
alias c="clear && reset" | |
alias re="reset" | |
alias e="exit" | |
alias s="sudo su" | |
alias m="make" | |
alias n="node" |
This file contains 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
dpkg -l linux-{image,headers}-* | awk '/^ii/{print $2}' | egrep '[0-9]+\.[0-9]+\.[0-9]+' | grep -v $(uname -r | cut -d- -f-2) | xargs sudo apt-get -y purge |
This file contains 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
# -*- coding: utf-8 -*- | |
""" | |
Summary: | |
""" | |
from IPython.display import display, HTML | |
import inspect | |
import logging | |
import os |
OlderNewer