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
π Morning 3 commits βββββββββββββββββββββ 17.6% | |
π Daytime 8 commits βββββββββββββββββββββ 47.1% | |
π Evening 3 commits βββββββββββββββββββββ 17.6% | |
π Night 3 commits βββββββββββββββββββββ 17.6% |
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
<form action="/action_page.php" method="get"> | |
First name: <input type="text" name="fname"><br> | |
Last name: <input type="text" name="lname"><br> | |
<input type="submit" value="Submit"> | |
</form> |
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
<script type=text/javascript> | |
$(function() { | |
$('a#calculate').bind('click', function() { | |
$.getJSON($SCRIPT_ROOT + '/_add_numbers', { | |
a: $('input[name="a"]').val(), | |
b: $('input[name="b"]').val() | |
}, function(data) { | |
$("#result").text(data.result); | |
}); | |
return false; |
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
<script type=text/javascript> | |
$(function() { | |
$('a#calculate').bind('click', function() { | |
$.getJSON($SCRIPT_ROOT + '/_add_numbers', { | |
a: $('input[name="a"]').val(), | |
b: $('input[name="b"]').val() | |
}, function(data) { | |
$("#result").text(data.result); | |
}); | |
return false; |
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
<script type=text/javascript> | |
$(function() { | |
$('a#calculate').bind('click', function() { | |
$.getJSON($SCRIPT_ROOT + '/_add_numbers', { | |
a: $('input[name="a"]').val(), | |
b: $('input[name="b"]').val() | |
}, function(data) { | |
$("#result").text(data.result); | |
}); | |
return false; |
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 python | |
import ftplib | |
ftp = ftplib.FTP('host','user','password') | |
fname = "μ λ‘λν νμΌλͺ (pathν¬ν¨κ°λ₯" | |
full_fname = "λ‘컬νμΌλͺ (pathν¬ν¨κ°λ₯)" | |
ftp.storlines('STOR '+ fname, open(full_fname, 'rb')) | |
ftp.quit() |