Why I'm closing your Github Issue
Just watched this. The idea of Unobtrusive JavaScript was great.
Just watched this. The idea of Unobtrusive JavaScript was great.
Job search As I reading I find some words about perform a job analysis. I does that and find that a newly founded company is looing for C# programmer. After some search I found another nearby company is looking for C# programmer too. It remind me of v2rayN. It looks like that it was built using C#. about C# I’m against Microsoft products. I don’t know why. But over the years I tried to avoid Microsoft technologies as much as possible, such as Visual Studio. ...
When learning stuff, I always want to try it on my personal blog, such as styles, and colors. Recently I read about [color contrast][1] and want to try it. However, I find my styles didn’t apply. I login to server and restarted all apps. I changed css in generated site. I forced referesh in browser. Nothing works. Finally I realized that it might be cloudflare issue. I logged in and find caching was enabled again. ...
Well for a long time dark theme is a pain. Recently as I learning CSS, I find that css layers can help. I also spend a lot time inspecting Google custom search engine styles. The @layer is available since March 2022, so it’s pretty new. The result is as follows: github.com. But some colors are too bright. L*a*b color space Then I find that there are some color system as Lab. It’s using 4 basic colors, and L channel can adjust brightness. ...
Well I retried flutter. I realized it’s open source, so I downloaded its source. First I want to use MinGW. I find it’s source for Visual Studio. I changed but it didn’t work. I inspected the script. Start script is using cryptic bat. So I spend a fair amount time rewrite it using PowerShell: https://github.com/flutter/flutter/compare/master...soda92:flutter-fork:pwsh-script Then I realized there are some timestamp thing. I deleted them and it recompiles. But then I find that there is a flutter engine. It’s prebuilt using VS. rebuild it would be much pain. ...
You can use ldd to view dependencies, then copy the related dll: https://web.archive.org/web/20240620214721/https://janw.name/posts/3-msys2-dlls/ Here is an example makefile (please use the code in solution https://stackoverflow.com/a/60906375/12291425, or use this gist): it can save a hassle; create a file named GNUmakefile or Makefile and paste the content, then run make dist: targets := prog.exe my_library.dll my_plugin.dll CXX := g++ CXXFLAGS := -c -g -O0 -MMD -pedantic -Wall -Wextra -Wconversion -Wno-unused -Wno-unused-parameter -Werror -Wfatal-errors -UNDEBUG -std=c++17 -Wno-missing-braces -Wno-sign-conversion all: $(targets) .PHONY: all %.dll: %.o $(CXX) -shared -g -O0 -o $@ $< # by implicit rule, my_plugin.o will be compiled from my_plugin.cpp # by implicit rule, my_library.o will be compiled from my_library.cpp prog.exe: prog.o my_library.dll g++ -o prog.exe prog.o -g -O0 -L. -lmy_library files := $(wildcard *.dll *.o *.d *.exe) distfiles := $(wildcard dist/*.dll dist/*.exe) clean: rm $(files) 2>/dev/null || true rm $(distfiles) 2>/dev/null || true .PHONY: clean dist: all rm -r dist 2>/dev/null || true mkdir dist 2>/dev/null || true cp *.dll *.exe dist @# extra $ is needed in awk in makefile cd dist; ldd $(targets) | grep /ucrt64 | awk '{print $$3}' | xargs -i cp {} . @# if you make sure you are running UCRT, you can remove the following line cd dist; ldd $(targets) | grep /mingw64 | awk '{print $$3}' | xargs -i cp {} . cd dist; explorer . || true .PHONY: dist To clean up, run make clean. ...
I have followed the NDC conference, and recently they uploaded many new videos. It’s because Copenhagen Developer festival. One vide caught my interest: https://www.youtube.com/watch?v=2cduK6oGBMI Seems very great, and firebase is free. I have already know flutter in College. but it’s been years, mabye it has become better? So let’s go: install I have already installed Android studio. The next is Flutter SDK and Firebase SDK. The tutorial suggests VSCode Extension, it will install Flutter automatically. ...
Education is a fundatational right of human. My Childhood education Since I was 3.5 years old, I already attend school. The school is in the opposite of my home, only a road separates. So it’s very convenient. Also, my grandfather has many relations, and the school master is one of my relatives. I still remebers that a classmate exit. Her name is “Yu”. from city. That is the poor education it provides. For many years (2 or 3) I’m under pressure of local gangster. ...
Seems very good. I don’t like VSCode, because it’s bundled with Microsoft. So I switched to VSCodium, but it’s heavy. Then I use neovim, but it’s not very easy to browse. Also, I don’t know much about vim.