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
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"os" | |
"os/exec" | |
"strings" | |
) |
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
alias g='git' | |
alias ga='git add' | |
alias gaa='git add --all' | |
alias gapa='git add --patch' | |
alias gau='git add --update' | |
alias gav='git add --verbose' | |
alias gap='git apply' | |
alias gb='git branch' |
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
alias bs="brew search" | |
alias bci="brew cask install" | |
alias bcf="brew cask info" | |
alias bcubc='brew cask reinstall $(brew cask outdated) && brew cleanup' | |
alias bcubo='brew update && brew cask outdated' | |
alias brewp='brew pin' | |
alias brews='brew list -1' | |
alias brewsp='brew list --pinned' | |
alias bubc='brew upgrade && brew cleanup' | |
alias bubo='brew update && brew outdated' |
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
// | |
// main.cpp | |
// times-table | |
// ꡬꡬλ¨μ csv νμΌμ μΆλ ₯νλ νλ‘κ·Έλ¨ | |
// Created by μ μΈνΈ on 2016. 6. 21.. | |
// Copyright Β© 2016λ Joshua Jung. All rights reserved. | |
// | |
#include <iostream> | |
#include <fstream> |
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
public class Main { | |
public static void main(String[] args) { | |
//============================== | |
// μ΄κ² κΈ°λ³Έ μμ±μλ₯Ό μ¬μ©ν΄μ μ€λΈμ νΈμ κ° λ©€λ²λ₯Ό setterλ₯Ό μ¬μ©ν΄ μ΄κΈ°ν μμΌμ£Όλ λ°©λ² | |
Eunlim eunlim = new Eunlim(); | |
// μμ±ν λλ§ κ° ν λΉμ΄ νμνκ² μλλΌ μμ± μ΄νμλ κ° μμ μ΄ νμνλκΉ, setterλ±μ΄ νμ! |
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
package com.company; | |
/** | |
* Created by wbqd on 15. 5. 21.. | |
*/ | |
public class Car { | |
private int speed; | |
private int weight; | |
private String name; |
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
#include <stdio.h> | |
float average(float, float); // νκ· μ ꡬνλ ν¨μλ₯Ό μ μΈνλ€. μ¬κΈ°μ ν¨μμ μΈμλ λΆλμμμ νμ΄λ€. μ μΈλΆμλ μΈμμ νμ λ§ μ¨λ λκ³ μ΄λ¦μ μλ΅ν΄λ λλ€. | |
int main(int argc, const char * argv[]) | |
{ | |
float a, b, avg; // νκ· μ κ³μ°μ ꡬνκΈ° μν΄ νμν λ³μλ€μ μ μΈνλ€. μ¬κΈ°μ, μ μΈλΆλ νμ ν¨μ λ΄λΆμ μ΅μλ¨μ μμΉν΄μΌ ν¨μ μ μ. | |
printf("Enter 2 numbers:\n"); | |
scanf("%f %f", &a, &b); // νκ· μ ꡬν a, bμ κ°μ μ λ ₯ λ°λλ€ |
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
// | |
// main.c | |
// Digits2Korean | |
// | |
// Created by Joshua Jung on 2015. 1. 5.. | |
// Copyright (c) 2015λ Joshua Jung. All rights reserved. | |
// | |
// λ€μκ³Ό κ°μ νλ‘κ·Έλ¨μ μμ±νμμ€. [λ°λ³΅λ¬ΈμΌλ‘ μλ¬μΈ κ²½μ° λ€μ μ λ ₯ λ°λλ€, ν¨μ μ¬μ©] | |
// μ μνμΌλ‘ κΈμ‘μ μ λ ₯λ°λλ€. (μ΅μ 1000, μ΅λ 700000) |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> | |
<script> | |
$(document).ready(function() { | |
window.alert("in <br/>"); | |
$.ajax({ | |
type:"GET", | |
url:"test.json", |
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
var i = 0; | |
while(1){ | |
$('#chkcnt').val(8); | |
$('#selDate').val("2014-09-12"); | |
$('#starttime').val("2000"); | |
$('#endtime').val("2200"); | |
$.post("PSTU420I.php", $("form[name='bookingform']").serialize()); | |
console.log(i++); | |
} |
NewerOlder