Skip to content

Instantly share code, notes, and snippets.

View 6uclz1's full-sized avatar
🏠
Working from home

ぶち 6uclz1

🏠
Working from home
View GitHub Profile
@6uclz1
6uclz1 / azw_to_epub.bat
Last active October 4, 2021 11:33
Kindle for PC の電子書籍を epub に変換するスクリプト
@REM Kindle for PC の電子書籍を epub に変換するスクリプト
@REM Kindle ⇨ Calibre に移動(コピー)
for /r "%HOMEPATH%\Documents\MyKindleContent" %%f in (*.azw) do (
echo %%f
"C:\Program Files\Calibre2\calibredb.exe" add "%%f"
)
@REM Calibre の電子書籍(azw3)を EPUB に変換
for /r "%HOMEPATH%\CalibreLibrary" %%f in (*.azw3) do (
https://www.reddit.com/r/anime+anime_irl+animegifs+Animemes+chromeos+CrappyDesign+csharp+DDLC+dokusyo_syoseki_r+ExpandDong+FifthWorldPics+gameofthrones+hearthstone+HistoryMemes+itsaunixsystem+japancirclejerk+KizunaA_Irl+Lain+linuxmasterrace+MachineLearning+manga+maybemaybemaybe+neuralnetworks+philo_jp+privacy+ProgrammerHumor+rickandmorty+RoomPorn+shittyreactiongifs+softwaregore+unixporn+vim
{"open.closed":"true","options.font_color":"#fbf1c7","options.theme":"Midnight","open.unfiled_____":"true","options.background_color":"#282828","open.menu________":"true","open.top":"true"}
@6uclz1
6uclz1 / azw_to_epub.sh
Created March 12, 2018 14:02
Kindle for Mac の電子書籍を epub に変換するスクリプト
#/bin/bash
# Kindle for Mac の電子書籍を epub に変換するスクリプト
# 参考 https://qiita.com/mgoldchild/items/165f63bc2e006c81bf58
# 'brew cask install calibre' でインストール推奨
IFS=$'\n'
@6uclz1
6uclz1 / 0_reuse_code.js
Created January 13, 2016 13:03
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
//include
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
//global
int loop, i, j, k, main_command_number, search_number, change_command_number;
int replace_id, replace_shiken, replace_enshu, replace_kadai, replace_tsuishi;
int delete_place;
int result_command;
#include <stdio.h>
struct student {
char name[20];
int score;
} student;
int main()
{
struct student student[5];
#include <stdio.h>
struct money {
int dollar;
int cent;
int rate;
} money;
int exchange(struct money);
#include <stdio.h>
struct money {
int dollar;
int cent;
int rate;
} money;
int main()
{
int yen;