- golinks - golinks is a web app that allows you to create smart bookmarks, commands and aliases by pointing your web browser's default search engine at a running instance. Similar to bunny1 or yubnub. (Demo)
MIT
Go
- notes - notes is a self-hosted note taking web app that lets you keep track of your notes and search them in a easy and minimal way. (Demo)
MIT
Go
- pastebin - pastebin is a simple pastebin service with convenient CLI. (Demo)
MIT
Go
- shorturl - shorturl is a simple URL shortener with very tiny URL(s). (Demo)
MIT
Go
- todo - todo is a simple todo manager. (Demo)
MIT
Go
- [wiki](https://git.mills.io/prolog
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
DOMAIN_NAME=mstdn.jp | |
curl -s https://$DOMAIN_NAME/api/v1/custom_emojis | jq -r '.[] | "curl -s -o " + .shortcode + ".png " + .url' | sh -x |
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
https://tsuchinoko.dmmlabs.com/?p=4175 | |
"IPv4トランスポート、Aレコードを問い合わせ | |
IPv4トランスポート、AAAAレコードを問い合わせ | |
IPv6トランスポート、Aレコードを問い合わせ | |
IPv6トランスポート、AAAAレコードを問い合わせ" |
This is a bash script to act as a Cloudflare DDNS client, useful replacement for ddclient.
This gist will no longer update, instead please go to https://github.com/lifehome/systemd-cfddns for more updated versions.
- Put the
cfupdater
files to/usr/local/bin
- If you are using IPv4 for A record, append
-v4
tocfupdater
in the following systemd service unit.
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
//META{"name":"ConnectionTime","website":"https://kataba.me/","source":"https://gist.github.com/katabame/ef65c6379c8d50af8702c5932c6dbf5b"}*// | |
/* | |
MIT License | |
Copyright (c) 2018 katabame | |
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 |
CLionでOpenGLを使ったプログラムを作成したい.でもfind_packageしても見つからない...
調べたらやり方について説明してあるyoutubeの解説動画があったので手順をメモ.
参考:https://youtu.be/AUFZnA3lW_Q
MinGWをインストール済みであること.
- Martin Payne's Windows binaries (MSVC and MinGW) から
freeglut MinGW Package(私の場合は3.0.0)
をダウンロードそして展開.
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
import os, sqlite3 | |
conn = sqlite3.connect(os.path.expandvars(r'%ProgramData%\Microsoft\Windows\AppRepository\StateRepository-Machine.srd')) | |
cursor = conn.execute( | |
''' | |
SELECT _PackageID, PackageFullName FROM main.Package | |
WHERE PackageFullName LIKE "Microsoft.Windows.HolographicFirstRun%"; | |
''' | |
) |
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
@rem 「※※※」は私のコメントです(元増田のコメントではありません) | |
@rem エクスプローラ周り重い人向け覚書 | |
@rem https://anond.hatelabo.jp/20191116220232 | |
@rem ■ システム設定 | |
@rem Windows Defender自身を検索して無限ループに陥る問題を解消する | |
@rem - 設定→更新とセキュリティ→Windows セキュリティ→ウイルスの驚異の防止 | |
@rem - ウイルスと驚異の防止の設定→設定の管理 |
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
#!/bin/sh | |
# Mirakurun/mirakc channel yaml output by uru (https://twitter.com/uru_2) | |
# | |
# require: | |
# stz2012/epgdump | |
# xmllint (libxml2 tools) | |
# ISDB-T/S record software | |
# recpt1, dvbv5-zap & Chinachu/dvbconf-for-isdb | |
set -eu |