Skip to content

Instantly share code, notes, and snippets.

View Hukanzen's full-sized avatar

Hukanzen Hukanzen

View GitHub Profile
@Hukanzen
Hukanzen / code.css
Last active August 21, 2023 11:13
Twitter(Web): Heart to Start
div[class="css-1dbjc4n r-xoduu5"]>svg[class="r-4qtqp9 r-yyyyoo r-1xvli5t r-dnmrzs r-bnwqim r-1plcrui r-lrvibr r-1hdv0qi"]>g>path[d="M16.697 5.5c-1.222-.06-2.679.51-3.89 2.16l-.805 1.09-.806-1.09C9.984 6.01 8.526 5.44 7.304 5.5c-1.243.07-2.349.78-2.91 1.91-.552 1.12-.633 2.78.479 4.82 1.074 1.97 3.257 4.27 7.129 6.61 3.87-2.34 6.052-4.64 7.126-6.61 1.111-2.04 1.03-3.7.477-4.82-.561-1.13-1.666-1.84-2.908-1.91zm4.187 7.69c-1.351 2.48-4.001 5.12-8.379 7.67l-.503.3-.504-.3c-4.379-2.55-7.029-5.19-8.382-7.67-1.36-2.5-1.41-4.86-.514-6.67.887-1.79 2.647-2.91 4.601-3.01 1.651-.09 3.368.56 4.798 2.01 1.429-1.45 3.146-2.1 4.796-2.01 1.954.1 3.714 1.22 4.601 3.01.896 1.81.846 4.17-.514 6.67z"]{
/* svg code star is from https://osima.jp/posts/draw-star-with-kotlin/ */
d: path("M23.999999817229558 12.002094395044947 L15.707734134995487 14.694815305652586 L15.706211562383146 23.413325363576448 L10.582831059890982 16.35900868825696 L2.2905658368936734 19.05172944973811 L7.416408293225771 11.999201933101395 L2.29302659
@Hukanzen
Hukanzen / Tweet幅
Last active July 10, 2019 06:12
TweetDeckカスタム(拾ったものを数値変更)
/* http://ito2-5.hatenablog.com/entry/2016/11/07/120000 */
.is-open {
transform: translateX(250px) !important;
margin-right: 250px !important;
}
.drawer.wide {
width: 250px !important;
left: -250px !important;
@Hukanzen
Hukanzen / rename.pl
Last active January 13, 2017 09:14
ffmpegを用いて、動画を分割するスクリプト ref: http://qiita.com/AkihisaYoshii4/items/d1d8012010a67bef5f00
#!/usr/bin/env perl
#Current Directoryにある指定した拡張子の、ファイル名の空白をアンダーバーに全置換
#拡張子指定
$stat='mp4';
$fl='*'.'.'.$stat.'*';
@file=glob $fl;
@Hukanzen
Hukanzen / file0.txt
Last active January 13, 2017 09:15
PidoraにPythonをインストールする。 ref: http://qiita.com/AkihisaYoshii4/items/25e715cabb46d82d3f80
#!/usr/bin/env bash
VERSION=3.6.0
yum groupinstall "Development tools" -y
yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel -y
cd /opt/
curl -O https://www.python.org/ftp/python/${VERSION}/Python-${VERSION}.tgz
tar zxf Python-${VERSION}.tgz