Skip to content

Instantly share code, notes, and snippets.

View makotoworld's full-sized avatar
😉
Happy Coding!

nzk makotoworld

😉
Happy Coding!
View GitHub Profile
q_op_map = {
OP_EQ: '=',
OP_LT: '<',
OP_LTE: '<=',
OP_GT: '>',
OP_GTE: '>=',
OP_NE: '!=',
OP_IN: 'IN',
OP_IS: 'IS',
OP_LIKE: 'LIKE',
$(function() {
var topBtn = $('#page-top');
topBtn.hide();
$(window).scroll(function () {
if ($(this).scrollTop() > 80) {
topBtn.fadeIn();
} else {
topBtn.fadeOut();
}
});
@makotoworld
makotoworld / gist:3234813
Created August 2, 2012 07:27
Social Button
<div class="social-buttons" data-url="http://www.deafway.jp/"></div>
<script type="text/javascript">
<!--
$(document).ready(function() {
var mixi_favorite_parse = function() {
$('div[data-plugins-type="mixi-favorite"]:empty').each(function(i, e) {
new window.__MIXI_PLUGINS__.FavoriteFrame(e);
});
@makotoworld
makotoworld / bitbucket_issue_customize.user.js
Created July 3, 2012 06:30
Bitbucket Issue Customize Page
// ==UserScript==
// @name Bitbucket Issue Customize Page
// @namespace http://makotoworld.hatenablog.com/
// @description issue page customize.
// @include http://bitbucket.org/*/*/issues?status=new
// @include https://bitbucket.org/*/*/issues?status=new
// @version 0.1.0
// ==/UserScript==
// @author Makoto Nozaki
// @history [2012-07-03] 0.1.0 initial version
@makotoworld
makotoworld / gist:2829159
Created May 29, 2012 15:46
Amazon S3 Memo (boto)
# DELETE
c = boto.connect_s3()
b = Bucket(c, 'deafway.jp')
list = b.get_all_keys()
for i in list:
if 'sign201' in i.name:
k = Key(b)
k.key = i.name
b.delete_key(k)
@makotoworld
makotoworld / gist:2766649
Created May 22, 2012 04:44
HTML5のVIDEOタグのあるところで、倍速設定する方法
video = document.getElementById('video');
video.playbackRate = 2.0; //2倍速
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">google.load("jquery", "1.7.1");</script>
<script type="text/javascript">google.load("jqueryui", "1.8.18");</script>
<script type="text/javascript">
$(function() {
// 掲載数
<html>
<head>
<meta charset="UTF-8" />
<title>js sample</title>
<script type="text/javascript" src="http://a.nzk.me/static/js/jquery-1.7.1.js"></script>
@makotoworld
makotoworld / gtada_youtube_entry_details.py
Created February 8, 2012 05:11
YoutubeID Entry Details
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import gdata.youtube
import gdata.youtube.service
yt_service = gdata.youtube.service.YouTubeService()
entry = yt_service.GetYouTubeVideoEntry(video_id='3KjgpNdcudU')
def PrintEntryDetails(entry):
print 'Video title: %s' % entry.media.title.text
@makotoworld
makotoworld / gist:1681764
Created January 26, 2012 08:32
Django でiCalカレンダーを生成する
https://github.com/statesofpop/django-cal
import vobject.iCalender
def ical(user_id=None):
cal = vobject.iCalendar()
cal.add('method').value = 'PUBLISH'
cal.add('calscale').value = 'GREGORIAN'
cal.add('x-wr-calname').value = 'TestCal28'
cal.add('x-wr-timezone').value = 'Australia/Sydney'