Skip to content

Instantly share code, notes, and snippets.

View youz's full-sized avatar
🈳
kyomu

Yōsuke Ushiki youz

🈳
kyomu
View GitHub Profile
@mala
mala / social-distance-internet-meme-research.md
Created May 14, 2020 06:46
アカウント名にスペース入れてソーシャルディスタンス、って謎の風習、最初はどこから始まったの?

アカウント名にスペース入れてソーシャルディスタンス、って謎の風習、最初はどこから始まったの?

5/10 に書いたこれ https://gist.github.com/mala/08fdbc680d84bb1b2305688282f26cea に関連して

というTweetがあり、自分もインターネットミームとしての側面については気になっていたため調べていた。(事前に把握していたものも含む)

普段からTwitterをクロールしていたわけではなく、大規模なデータを持っていないので、実際にどこが発端になって、どういう流れで広まっていったのか正確なところは良く分からない。経緯を把握しているものだとシャープを参考にした(シャープはアカウント名部分ではないけど)というものがあるのは知っている。フォロワー数も非常に多く、企業SNS運用担当者の中では圧倒的な影響がある。

@kikairoya
kikairoya / wandbox.l
Last active April 5, 2020 08:04
post to wandbox from xyzzy
(eval-when (:compile-toplevel :load-toplevel :execute)
(require 'xml-http-request)
(require 'json))
(defpackage :wandbox
(:use :lisp :editor))
(in-package "wandbox")
(export '(post-wandbox-region post-wandbox post-wandbox-string show-compiler-list show-compiler-options))
@miyamuko
miyamuko / gist:1859520
Created February 18, 2012 14:18
Lisp implementation source code

Check out

git clone git://ecls.git.sourceforge.net/gitroot/ecls/ecl
git clone git://sbcl.git.sourceforge.net/gitroot/sbcl/sbcl.git
git clone git://common-lisp.net/projects/cmucl/cmucl.git
hg clone http://clisp.hg.sourceforge.net:8000/hgroot/clisp/clisp
hg clone https://code.google.com/p/mcl/
svn co http://svn.clozure.com/publicsvn/openmcl/trunk/source ccl
svn co http://svn.common-lisp.net/armedbear/trunk/abcl
@youz
youz / markdown-mode.l
Created November 4, 2011 12:53
改変 markdown-mode for #xyzzy (色付け & メジャーモード化)
;; -*- mode:lisp; package:markdown-mode -*-
;; markdown.l ( http://www.geocities.jp/kiaswebsite/xyzzy/markdown.html )
;; Rev: 227 を元に改変
;;
;; License
;; =======
;;
;; Copyright (c) 2011 Yousuke Ushiki <citrus.yubeshi@gmail.com>
;; Copyright (c) 2005,2006 kia
@rzl24ozi
rzl24ozi / README.24.5.txt
Last active September 18, 2016 11:15
about patches and how to build emacs on Windows. (Japanese)
※以下は emacs-25 リリース前のものなので現在では内容が古くなっているかもしれません。
emacs-25(以降)の README.txt も参照してみてください。
■各パッチについて
emacs-24.5-*.diff は emacs-24.5 に対するパッチです。
□emacs-24.5-x64.diff (https://gist.github.com/rzl24ozi/68c29ac4fe64f1aa8887)
GNU emacs(x64) (http://hp.vector.co.jp/authors/VA052357/emacs.html)
に同梱のパッチ
(GNU emacs(x64) インストール後に C:\Program Files\GNU\Emacs23\distfiles\
anonymous
anonymous / README.md
Created June 4, 2013 15:03
英語<->エンテ・イスラ語変換

inputのテキストエリアに英語を入力するとエンテ・イスラ語に、エンテ・イスラ語を入力すると英語に変換

@kik
kik / D.cc
Created April 15, 2012 10:48
GCJ 2012 Qual D
#include <iostream>
#include <vector>
#include <boost/math/common_factor.hpp>
#include <algorithm>
using namespace std;
typedef vector<vector<char> > room_t;
int main()
@miyamuko
miyamuko / gist:1550137
Created January 2, 2012 10:06
xl-winhttp の関数生成
(defun to-api (api)
(setf api (substitute-string api "^WinHttp" ""))
(setf api (substitute-string api "[A-Z][a-z]+" "\\0-"))
(setf api (substitute-string api "-$" ""))
(string-downcase api))
(defun gen-winhttp-api ()
(let ((api-list-html (xhr:xhr-get "http://msdn.microsoft.com/en-us/library/windows/desktop/aa384257.aspx"
:key #'xhr:xhr-response-text)))
(with-output-to-temp-buffer ("*tmp*")
;; 参考: http://d.hatena.ne.jp/khiker/20080531/emacs_jimaku
;; フックをリセット
(setq slime-connected-hook '() )
(defun shobon-shakin ()
(flet ((wait-wait (sec)
(sleep-for sec)
(discard-input)
(redisplay) ))
@youz
youz / gist.l
Created November 4, 2011 13:57
#xyzzy で Gist閲覧 & 投稿
;;; -*- mode:lisp; package: gist -*-
;; gist.l - xyzzyでGistの閲覧, ポスト
;;
;; Copyright (c) 2011-2012 Yousuke Ushiki
;;
;; Permission is hereby granted, free of charge, to any person obtaining a copy
;; of this software and associated documentation files (the "Software"), to deal
;; in the Software without restriction, including without limitation the rights
;; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell