Charts are from different sources and thus colors are inconsistent, please carefully read the chart's legends.
Like this? Check React Native vs Flutter: https://gist.github.com/tkrotoff/93f5278a4e8df7e5f6928eff98684979
2026: Not working anymore
| ____ _ _ _ ___ ___ __ ____ | |
| | _ \ (_) | | | |__ \ / _ \/_ |___ \ | |
| | |_) |_ _ _| | __| | ) | | | || | __) | | |
| | _ <| | | | | |/ _` | / /| | | || ||__ < | |
| | |_) | |_| | | | (_| | / /_| |_| || |___) | | |
| |____/ \__,_|_|_|\__,_| |____|\___/ |_|____/ | |
| Developed by | |
| Roy Nash | |
| THIS CODE IS PROTECTED BY COPYRIGHT LAWS, DISTRIBUTION OR USAGE OF ANY | |
| OF THE CODE WITHOUT THE WRITTEN PERMISSION OF ITS AUTHOR (Roy Nash) IS |
| { | |
| "basics": { | |
| "name": "Anthony Fu", | |
| "picture": "https://antfu.me/avatar.png", | |
| "label": "Software Engineer", | |
| "headline": "A ship in harbor is safe, but that is not what ships are built for.", | |
| "summary": "My name is Anthony Fu, a master of computer science student and a freelance software engineer. My passion for software lies with dreaming up ideas and making them come true with elegant interfaces. I take great care in the experience, architecture, and code quality of the things I build.\n\nI am also an open-source enthusiast and maintainer. I love how collaboration and knowledge sharing happens through open-source and I am happy to see what I do could eventually feedback to the community and industry.", | |
| "website": "https://antfu.me", | |
| "address": "", | |
| "projects_url": "https://antfu.me/projects", |
| import qrcode from "qrcode-generator"; | |
| async function generateQRCodeForSamp(context) { | |
| let typeNumber = 4; | |
| let errorCorrectionLevel = 'L'; | |
| let qr = qrcode(typeNumber, errorCorrectionLevel); | |
| qr.addData(context); | |
| qr.make(); | |
| let newQRCode = ""; |
| { | |
| "meta": { | |
| "theme": "professional", | |
| "lastModified": "2026-03-12T00:00:00.000Z" | |
| }, | |
| "basics": { | |
| "name": "Thomas Davis", | |
| "phone": "0411021021", | |
| "label": "Full Stack Developer & AI Engineer", | |
| "image": "https://avatars0.githubusercontent.com/u/416209?s=460&u=38f220a2c9c658141804f881c334c594eb1642ac&v=4", |
| { | |
| "workbench.startupEditor": "newUntitledFile", | |
| "editor.fontSize": 16, | |
| "editor.lineHeight": 1.8, | |
| "javascript.suggest.autoImports": true, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "editor.rulers": [ | |
| 80, | |
| 120 | |
| ], |
Charts are from different sources and thus colors are inconsistent, please carefully read the chart's legends.
Like this? Check React Native vs Flutter: https://gist.github.com/tkrotoff/93f5278a4e8df7e5f6928eff98684979
2026: Not working anymore
| $ git clone git@github.com:xxxxx/xxxx.git my-awesome-proj | |
| Cloning into 'my-awesome-proj'... | |
| ssh: connect to host github.com port 22: Connection timed out | |
| fatal: Could not read from remote repository. | |
| $ # This should also timeout | |
| $ ssh -T git@github.com | |
| ssh: connect to host github.com port 22: Connection timed out | |
| $ # but this might work |
| FROM alpine | |
| COPY configure-node.sh configure-node.sh | |
| CMD ["/bin/sh", "configure-node.sh"] |
| { | |
| "62870901": { | |
| "HashKey": "WEAPON_SNOWLAUNCHER", | |
| "NameGXT": "WT_SNOWLNCHR", | |
| "DescriptionGXT": "WTD_SNOWLNCHR", | |
| "Name": "Snowball Launcher", | |
| "Description": "There's no greater gift than pummeling someone with rounds of festive cheer. With automatic reload, there's no time for anyone to disagree. Part of The Chop Shop.", | |
| "Group": "GROUP_HEAVY", | |
| "ModelHashKey": "W_LR_CompactSL_M32", | |
| "DefaultClipSize": 20, |
| interface OperationQueue { | |
| queue: Promise<void>; | |
| } | |
| export function makeOperationQueue(): OperationQueue { | |
| return {queue: Promise.resolve()}; | |
| } | |
| export function queuedOperation(operationQueue: OperationQueue) { | |
| return function(_target: any, _key: string, descriptor: TypedPropertyDescriptor<(...args: any[]) => any>) { |