Create or update the diary.md file in the project root with development activity from Claude Code history and git logs.
Run this to get project history grouped by day with active time (excluding gaps >30 min):
| { | |
| "extends": "./tsconfig.app.json", | |
| "exclude": [], | |
| "compilerOptions": { | |
| "composite": true, | |
| "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.vitest.tsbuildinfo", | |
| "lib": [], | |
| "types": ["node", "jsdom", "vitest/globals"] | |
| } | |
| } |
| // ==UserScript== | |
| // @name PayPal Asahi Linux Fix | |
| // @version v1.0 | |
| // @description Fix PayPal banning Asahi Linux | |
| // @author Asahi Lina | |
| // @match https://www.paypal.com/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=paypal.com | |
| // @grant unsafeWindow | |
| // ==/UserScript== |
Note
This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.
How to use this script:
Console tabIn August 2007 a hacker found a way to expose the PHP source code on facebook.com. He retrieved two files and then emailed them to me, and I wrote about the issue:
http://techcrunch.com/2007/08/11/facebook-source-code-leaked/
It became a big deal:
http://www.techmeme.com/070812/p1#a070812p1
The two files are index.php (the homepage) and search.php (the search page)
A simple "1-click" javascript approach to downloading a scanned book from archive.org to read at your leisure on the device of your choosing w/out having to manually screenshot every pages of the book by hand. In short it's a glorified "Save Image As..." approach but consolidated down to "1 click". BTW there may be a much better option than this out there - I just built this as an autistic project to see if it would work.
By using this script you agree to delete all book files/images after your 1 hour or 14 days is up! I don't support using this script for any other use cases. After all, none of us have ever kept a library book past it's return date, right?
| あせ (・_・;) 顔文字 | |
| あせ (・∀・;) 顔文字 | |
| あせ (^ω^;;) 顔文字 | |
| あせ (゚∀゚ ;) 顔文字 | |
| あせ (゚∀゚ ;)タラー 顔文字 | |
| あたふた ヽ(´・ω・`ヽ) 顔文字 | |
| あつい (。>﹏<) 顔文字 | |
| あつい (。>﹏<)あㄘ”ゅい 顔文字 | |
| あつい (>﹏<。Ξ。>﹏<) 顔文字 | |
| あつい ι(´Д`υ) 顔文字 |
Note
More information you can find on Microsoft documentation.
Tip
You can install all Visual C++ Redistributable Packages using only one command with winget! https://gist.github.com/ChuckMichael/d4221fd8681a7e962c8d37d623ff3145
Microsoft.VCRedist.2005.x64| /** | |
| * Fancy ID generator that creates 20-character string identifiers with the following properties: | |
| * | |
| * 1. They're based on timestamp so that they sort *after* any existing ids. | |
| * 2. They contain 72-bits of random data after the timestamp so that IDs won't collide with other clients' IDs. | |
| * 3. They sort *lexicographically* (so the timestamp is converted to characters that will sort properly). | |
| * 4. They're monotonically increasing. Even if you generate more than one in the same timestamp, the | |
| * latter ones will sort after the former ones. We do this by using the previous random bits | |
| * but "incrementing" them by 1 (only in the case of a timestamp collision). | |
| */ |