Skip to content

Instantly share code, notes, and snippets.

View dbwhddn10's full-sized avatar

jongwoo Yoo dbwhddn10

View GitHub Profile
@dbwhddn10
dbwhddn10 / SassMeister-input.scss
Created July 26, 2014 03:31
Generated by SassMeister.com.
// ----
// Sass (v3.3.10)
// Compass (v1.0.0.alpha.20)
// ----
// -----------------------------------------------------------------------------
// Introduction
// -----------------------------------------------------------------------------
// Here is hacky and experimental solution for cross-scopes extends
<?php
/*
This code sample demonstrates several style for representing an option array with
the following fields: name, label, type_id, visible, default.
When designing this we should keep in mind that the option key may be represented
by either a literal or a (class)constant. As such we mix and match those for
illustrative purposes.
*/
@dbwhddn10
dbwhddn10 / README.md
Last active August 29, 2015 14:10 — forked from mindplay-dk/README.md
@dbwhddn10
dbwhddn10 / gist:06a9bd9cecaf24493ef9
Last active August 25, 2021 05:06
cafe24 자바스크립트
/**
* i18n - Javascript Internationalization System
*
* @author Platform Team
*/
(function() {
var $i18n = {
/**
@dbwhddn10
dbwhddn10 / designer.html
Last active August 29, 2015 14:16
designer
<link rel="import" href="../topeka-elements/category-images.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../core-ajax/core-ajax.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icons/av-icons.html">
<link rel="import" href="../paper-fab/paper-fab.html">
<link rel="import" href="../topeka-elements/category-icons.html">
<link rel="import" href="../paper-slider/paper-slider.html">
<polymer-element name="my-element">
/*!
* Select2 4.0.0-rc.2
* https://select2.github.io
*
* Released under the MIT license
* https://github.com/select2/select2/blob/master/LICENSE.md
*/
(function (factory) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
@dbwhddn10
dbwhddn10 / UbuntuMiner
Last active August 29, 2015 14:17 — forked from zcshiner/UbuntuMiner
#!/bin/bash
### Command log to install Cuda Toolkit 6.5, driver 343.22, and ccminer.
## Update the system
sudo apt-get update && sudo apt-get -y dist-upgrade
# All the dependencies for Cuda & ccminer (I think)
sudo apt-get -y install gcc g++ build-essential automake linux-headers-$(uname -r) git gawk libcurl4-openssl-dev libjansson-dev xorg libc++-dev libgmp-dev python-dev
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD
define(['underscore'], factory);
} else if (typeof exports === 'object') {
// Node, CommonJS-like
module.exports = factory(require('underscore'));
} else {
// Browser globals (root is window)
CREATE TABLE IF NOT EXISTS `country` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`iso` char(2) NOT NULL,
`name` varchar(80) NOT NULL,
`nicename` varchar(80) NOT NULL,
`iso3` char(3) DEFAULT NULL,
`numcode` smallint(6) DEFAULT NULL,
`phonecode` int(5) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.