| name | description | homepage | metadata | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
code-multi-run-tmux |
Run Codex multiple times on the same repo for different features using git worktrees (safe parallelism). |
|
Run Codex multiple times on the same repo safely by using Git worktrees.
| #!/bin/bash | |
| # Persist XDG_RUNTIME_DIR and enable systemd user services | |
| # Add to .profile (works for all POSIX shells) | |
| if ! grep -q "XDG_RUNTIME_DIR" ~/.profile 2>/dev/null; then | |
| echo 'export XDG_RUNTIME_DIR=/run/user/$(id -u)' >> ~/.profile | |
| echo "✓ Added XDG_RUNTIME_DIR to ~/.profile" | |
| else | |
| echo "✓ XDG_RUNTIME_DIR already in ~/.profile" |
| name | description | homepage | metadata | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
code-multi-run-tmux |
Run Codex multiple times on the same repo for different features using git worktrees (safe parallelism). |
|
Run Codex multiple times on the same repo safely by using Git worktrees.
| JSON Data Structure Representation | |
| var nodes = [ | |
| { | |
| id: 1, | |
| labels: ["District"] | |
| }, | |
| { | |
| id: 2, | |
| labels: ["Student"] |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using TradingAPI.MT4Server; | |
| namespace RealTimeQuotes | |
| { | |
| class Program |
| pragma solidity ^0.4.18; | |
| // ---------------------------------------------------------------------------- | |
| // 'MBCH' token contract | |
| // | |
| // Symbol : mbch | |
| // Name : MBCHToken | |
| // Total supply: 100,000,000 | |
| // Decimals : 18 | |
| // |
| pragma solidity ^0.4.24; | |
| // ---------------------------------------------------------------------------- | |
| // 'MBCH'token contract | |
| // | |
| // Deployed to : 0xFb04d83fEb7b42B817f86c57e2c81926ecB00113 | |
| // Symbol : MillionbitcoinCash | |
| // Name : MBCH Token | |
| // Total supply: 100000000 | |
| // Decimals : 18 |
| # virtual hosts | |
| server { | |
| listen 80; | |
| server_nme domain; | |
| root html; | |
| index index.html index.htm; | |
| location / { | |
| try_files $uri $uri/ =404; |
| #!/bin/sh | |
| # | |
| # An example hook script for the "post-receive" event. | |
| # | |
| # The "post-receive" script is run after receive-pack has accepted a pack | |
| # and the repository has been updated. It is passed arguments in through | |
| # stdin in the form | |
| # <oldrev> <newrev> <refname> | |
| # For example: | |
| # aa453216d1b3e49e7f6f98441fa56946ddcd6a20 68f7abf4e6f922807889f52bc043ecd31b79f814 refs/heads/master |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| namespace ConsoleApplication1 | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) |