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
| #!/usr/bin/env bash | |
| # | |
| # cloud-init-gist.sh — self-contained first-boot bootstrap for a DigitalOcean | |
| # Droplet that builds and runs the trimmed claude-universal image (Claude Code + | |
| # Python/Node/Java). Paste this whole file into a PUBLIC GitHub gist, then set the | |
| # droplet's user-data to a 2-line bootstrap that curls + runs it (see README at | |
| # the bottom of this file). | |
| # | |
| # Design: | |
| # - Embeds every build file inline (no git, no registry, no rsync needed). |
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 "TOEKJIOJOIAJ" |
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
| https://cdnme.s3.amazonaws.com/cdn/9924-d705-foralex.cfg | |
| https://cdnme.s3.amazonaws.com/cdn/b72d-5523-CSGO.Config.Manager.exe | |
| https://cdnme.s3.amazonaws.com/cdn/1c6b-8708-ALL-CSGO-CONFS.zip | |
| https://gist.github.com/agrublev/7505d99dc13ced0a933eb78ea08e7061 | |
| https://gist.github.com/agrublev/7505d99dc13ced0a933eb78ea08e7061 |
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 sudo. | |
| # If credentials not already cached, ask for password and cache credentials. | |
| # If already cached, increase sudo timeout by 5 min | |
| sudo -v && exit 1 'Sudo access needed to execute this script' | |
| # First update | |
| echo "Updating apt list ...." |
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
| const fixJsonStr=str=>str.replace(/(\s*?{\s*?|\s*?,\s*?)(['"])?([a-zA-Z0-9_]+)(['"])?:/g, '$1"$3":'); | |
| let zzzz=fixJsonStr(`{ | |
| "kettty": "", | |
| asds: [], kggk:{}, | |
| "ga": 222, | |
| "sad": { | |
| "zz": 0, | |
| "as": false, | |
| "gag": [] |
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
| https://cdnme.s3.amazonaws.com/cdn/0afb-87db-Angel%20Reader-1.0.0.dmg | |
| https://cdnme.s3.amazonaws.com/cdn/66c3-f080-Angel%20Reader.app.zip |
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
| html { | |
| /* Adjust font size */ | |
| font-size: 100%; | |
| -webkit-text-size-adjust: 100%; | |
| /* Font varient */ | |
| font-variant-ligatures: none; | |
| -webkit-font-variant-ligatures: none; | |
| /* Smoothing */ | |
| text-rendering: optimizeLegibility; | |
| -moz-osx-font-smoothing: grayscale; |
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
| https://cdnme.s3.amazonaws.com/cdn/1c6b-8708-ALL-CSGO-CONFS.zip | |
| https://github.com/lucaspalencia/cs-go | |
| https://github.com/sbuggay/csgo-sync | |
| https://www.razer.com/cortex | |
| //gens | |
| https://tools.dathost.net/#alpha=200/color=5/color_b=50/color_r=50/color_g=250/dot=0/gap=0/size=5/style=4/usealpha=1/thickness=0.5/outline=0/outline_draw=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
| const uniqueElements = arr => [...new Set(arr)]; | |
| const getType = v => | |
| v === undefined | |
| ? "undefined" | |
| : v === null | |
| ? "null" | |
| : v.constructor.name.toLowerCase(); | |
| const extendObject = (obj, obj2) => { |
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
| #!/usr/bin/env node | |
| const {exec} = require('child_process'); | |
| const fs = require('fs'); | |
| const path = require('path'); | |
| const semver = require('semver'); | |
| const ora = require('ora'); | |
| const chalk = require('chalk'); | |
| const indent = require('detect-indent'); | |
| const inquirer = require('inquirer'); |
NewerOlder