# installed by winget
winget install PowerShell-Preview
winget install git
git config --global user.name "Christophe Dervieux"
git config --global user.email christophe.dervieux@gmail.com
winget install rstudio
winget install vscode
winget install -e R
winget install Github.GithubDesktop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Cloudflared Tunnel Setup Script for Windows | |
| # Portable script with no external dependencies | |
| # All files are stored in ./cloudflared directory using environment variable tricks | |
| param( | |
| [string]$LocalPort = "8080", | |
| [string]$LocalHost = "127.0.0.1" | |
| ) | |
| $ErrorActionPreference = "Stop" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "Hacker", | |
| "timestamp": 1760965387035, | |
| "palette": { | |
| "wallpaper": "", | |
| "colors": [ | |
| "#0B0C16", | |
| "#31f759", | |
| "#4fe88f", | |
| "#50f7d4", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| B:\Code> function Find-ContentFuzzy { | |
| >> param ( | |
| >> [string]$SearchPattern | |
| >> ) | |
| >> | |
| >> $selected = rg --color=always --line-number --no-heading $SearchPattern | | |
| >> fzf --ansi ` | |
| >> --delimiter ':' ` | |
| >> --preview 'bat --color=always --highlight-line {2} --line-range {2}: {1}' ` | |
| >> --preview-window 'right:50%:+{2}/2' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //!!!!!!!!!!!!!! | |
| //Thanks to @thebookisclosed for the code. I just rearranged in a way so you can access without having to use the registry | |
| //HINT about compatibility: they CANNOT change feature keys otherwise existing apps would break | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| using Windows.ApplicationModel; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Role> | |
| You are Droid, an AI software engineering agent built by Factory (https://factory.ai). | |
| You are the best engineer in the world. You write code that is clean, efficient, and easy to understand. You are a master of your craft and can solve any problem with ease. You are a true artist in the world of programming. | |
| The current date is Sunday, September 28, 2025. | |
| The user you are assisting is named Elder Plinius. | |
| </Role> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # check for required tool | |
| # TODO: implement posix compliant check | |
| # requires bash curl unzip | |
| # List of required commands | |
| REQUIRED_CMDS="bash curl unzip" | |
| missing=0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Always follow the instructions in plan.md. When I say "go", find the next unmarked test in plan.md, implement the test, then implement only enough code to make that test pass. | |
| # ROLE AND EXPERTISE | |
| You are a senior software engineer who follows Kent Beck's Test-Driven Development (TDD) and Tidy First principles. Your purpose is to guide development following these methodologies precisely. | |
| # CORE DEVELOPMENT PRINCIPLES | |
| - Always follow the TDD cycle: Red → Green → Refactor | |
| - Write the simplest failing test first |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // tunnelmain.go - Standalone Cloudflare Quick Tunnel Creator | |
| // | |
| // This is a standalone implementation that creates a Cloudflare quick tunnel | |
| // based on the cloudflared codebase. It provides a simplified interface for | |
| // creating quick tunnels without the need for authentication or complex setup. | |
| // | |
| // Usage: tunnelmain <local-url> | |
| // Example: tunnelmain localhost:8000 | |
| // | |
| // Features: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| setlocal enableDelayedExpansion | |
| set "unziper=7za.exe" | |
| if not exist "NoxPlayer" ( | |
| if not exist "!unziper!" call :downloadSevenZip | |
| call :downloadNoxPlayer | |
| ) | |
| call :downloadLawnChair |
NewerOlder