Skip to content

Instantly share code, notes, and snippets.

View dongyuwei's full-sized avatar
💭
天天听儿歌

dongyuwei dongyuwei

💭
天天听儿歌
View GitHub Profile
@dongyuwei
dongyuwei / TopDownOperatorPrecedence.js
Created July 29, 2024 03:17
Top Down Operator Precedence: basic implementation in JavaScript
const PRECEDENCE = {
"=": 1,
"+": 2,
"-": 2,
"*": 3,
"/": 3,
"(": 0,
")": 0
};
function j11
set -gx JAVA_HOME /Users/yuweidong/Downloads/jdk-11.0.21.jdk/Contents/Home/
set -l old_path (string match -v "$JAVA_HOME/bin" $PATH)
set -gx PATH $JAVA_HOME/bin $old_path
java --version
end
function j17
set -gx JAVA_HOME /Users/yuweidong/Downloads/jdk-17.0.11.jdk/Contents/Home/
@dongyuwei
dongyuwei / concat-files-in-git-repo.sh
Created July 23, 2024 13:38
concat-files-in-git-repo.sh [HEAD or comit-hash]
#!/bin/bash
COMMIT_HASH=$1
git ls-tree --full-tree -r --name-only $COMMIT_HASH | while read -r file; do
echo "--- $file ---" >> all_files_contents.txt
git show $COMMIT_HASH:$file >> all_files_contents.txt
echo "" >> all_files_contents.txt
done
@dongyuwei
dongyuwei / cacheable-ng-for.directive.ts
Last active September 18, 2023 01:19
cacheable-ng-for.directive. It's buggy now. Don't use it. I'm testing it.
import {
ChangeDetectorRef,
Directive,
DoCheck, Injector,
Input, OnChanges, SimpleChanges,
TemplateRef,
TrackByFunction,
ViewContainerRef
} from "@angular/core";
@Directive({
@dongyuwei
dongyuwei / PIME.md
Last active October 7, 2023 13:39
PIME dev/debug log

build and compile with Visual Studio 2019(same with the Appveyor CI)

test build in vs studio 2022

  1. mkdir /d/dyw-code/PIME-Cmake-build
  2. cd /d/dyw-code/PIME-Cmake-build
  3. cmake -G "Visual Studio 17 2022" -A x64 ../PIME
  4. open PIME.sln in vs studio 2022
/**
1. 有@3x的优先取@3x, 如 [email protected]
2. 没有@3x的优先取@2x,如 [email protected]
3. 没有@3x和@2x的,取图片名称本身,如 add.png
*/
const path = require("path");
const shell = require("shelljs");
const files = {};
@dongyuwei
dongyuwei / init.lua
Created October 17, 2022 07:36
use LUA_INIT to preload inspect.lua, so we can use it in lua.
tail ~/.config/fish/config.fish
`set -gx LUA_INIT @/Users/yuwdong/.init.lua`
cat /Users/yuwdong/.init.lua
```lua
inspect = require('inspect')
ins = inspect
```
@dongyuwei
dongyuwei / test.lua
Last active October 17, 2022 07:08
test inspect.lua and http request with luasocket
local inspect = require('inspect')
local http = require("socket.http")
inspect(http)
r, c, h = http.request('https://www.baidu.com/')
print(r)
print(c)
inspect(h)
var voronoi = new Voronoi();
var sites = generateBeeHivePoints(view.size / 200, true);
var bbox, diagram;
var oldSize = view.size;
// var spotColor = new Color('red');
var mousePos = view.center;
var selected = false;
onResize();
ffmpeg -i GMT20211220-054810_Recording_1792x1120.mp4 -acodec copy -vcodec copy -ss 0 -t 00:56:12 onboarding.mp4