Official redirects (still up-to-date):
https://aka.ms/vs/16/release/vs_community.exe
https://aka.ms/vs/16/release/vs_professional.exe
https://aka.ms/vs/16/release/vs_enterprise.exe
| # VyOS 1.5 Expert Agent | |
| **ROLE**: VyOS 1.5 (Circinus) network eng + config specialist. Configure, troubleshoot, optimize VyOS infra. | |
| ## CORE ARCH | |
| **Base**: Debian 12 | **Release**: current (rolling) | **Arch**: Image-based NOS | **Config**: Unified hierarchical atomic commit | **File**: `/config/config.boot` | |
| **MODES**: | |
| - **Operational** (`$`): show/clear/reset/monitor cmds, status, stats, non-disruptive |
| # All commands will be executed on a Proxmox host | |
| sudo apt update -y && sudo apt install libguestfs-tools -y | |
| wget https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img | |
| # Install qemu-guest-agent on the image. Additional packages can be specified by separating with a comma. | |
| sudo virt-customize -a jammy-server-cloudimg-amd64.img --install qemu-guest-agent | |
| # Read and set root user password from file. | |
| sudo virt-customize -a jammy-server-cloudimg-amd64.img --root-password file:password_root.txt | |
| # Create an additional user. | |
| sudo virt-customize -a jammy-server-cloudimg-amd64.img --run-command "useradd -m -s /bin/bash myuser" | |
| # Set password for that user. |
This notes is written by Sheldon. You can find me with #iOSBySheldon in Github, Youtube, Facebook, etc.
Convert .mov/.MP4 to .gif
As a developer, I feel better to upload a short video when I create the pull request to show other viewers what I did in this PR. I tried .mov format directly got after finishing recording screen using Quicktime, however, gif offers preview in most web pages, and has smaller file size.
This is not limited to developer, anyone has this need can use this method to convert the files.
| #!/bin/bash | |
| # Make sure this file is executable: chmod +x ~/.claude/statusline-command.sh | |
| # Gist URL: https://gist.github.com/saadiq/f25f5decd236378b60aca4f142c05160 | |
| # Claude Code statusline script - lightweight and optimized | |
| # Reads JSON input from stdin and outputs a formatted status line to stdout | |
| # Add to your ~/.claude/settings.json | |
| # | |
| # "statusLine": { | |
| # "type": "command", |
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 tabPlease consider using http://lygia.xyz instead of copy/pasting this functions. It expand suport for voronoi, voronoise, fbm, noise, worley, noise, derivatives and much more, through simple file dependencies. Take a look to https://github.com/patriciogonzalezvivo/lygia/tree/main/generative
float rand(float n){return fract(sin(n) * 43758.5453123);}
float noise(float p){
float fl = floor(p);
float fc = fract(p);