Skip to content

Instantly share code, notes, and snippets.

@bytexenon
bytexenon / Make Discord Server With a Tag.md
Last active May 7, 2025 07:06
Make Discord Server With a Tag

Discord Server Tag Automation Script (GUILD_TAGS)

Since around May 6th, 2025, newly created Discord servers have a small, random chance (approximately 1 in 1000) of including the experimental tag feature; this script automates the repetitive process of creating and deleting servers to help find one.

Note

Successfully obtaining a server with this flag is only the first step; actually using the tag functionality requires boosting the server 3 times

[!CAUTION]

@pjaol
pjaol / .roomodes
Created April 14, 2025 22:17
roo code task-master integration
{
"customModes": [
{
"slug": "spec-pseudocode",
"name": "📋 Specification Writer",
"roleDefinition": "You capture full project context—functional requirements, edge cases, constraints—and translate that into modular pseudocode with TDD anchors.",
"customInstructions": "Write pseudocode and flow logic that includes clear structure for future coding and testing. Split complex logic across modules. Never include hard-coded secrets or config values. Ensure each spec module remains < 500 lines.",
"groups": [
"read",
"edit"
@jlia0
jlia0 / agent loop
Last active May 7, 2025 07:04
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet
@peppergrayxyz
peppergrayxyz / qemu-vulkan-virtio.md
Last active May 7, 2025 07:01
QEMU with VirtIO GPU Vulkan Support

QEMU with VirtIO GPU Vulkan Support

With its latest reales qemu added the Venus patches so that virtio-gpu now support venus encapsulation for vulkan. This is one more piece to the puzzle towards full Vulkan support.

An outdated blog post on clollabora described in 2021 how to enable 3D acceleration of Vulkan applications in QEMU through the Venus experimental Vulkan driver for VirtIO-GPU with a local development environment. Following up on the outdated write up, this is how its done today.

Definitions

Let's start with the brief description of the projects mentioned in the post & extend them:

// Node.js CheatSheet.
// Download the Node.js source code or a pre-built installer for your platform, and start developing today.
// Download: http://nodejs.org/download/
// More: http://nodejs.org/api/all.html
// 0. Synopsis.
// http://nodejs.org/api/synopsis.html
@choco-bot
choco-bot / FilesSnapshot.xml
Created May 7, 2025 06:27
ultraiso v9.7.6.3829 - Failed - Package Tests Results
<?xml version="1.0" encoding="utf-8"?>
<fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<files>
<file path="C:\ProgramData\chocolatey\lib\ultraiso\ultraiso.nupkg" checksum="A7080A0019A469464F91DBA2291AFC3C" />
<file path="C:\ProgramData\chocolatey\lib\ultraiso\ultraiso.nuspec" checksum="60F5E808E960CBF876A8FF7ADE02EA55" />
<file path="C:\ProgramData\chocolatey\lib\ultraiso\tools\chocolateyInstall.ps1" checksum="93955A6712FAED1A0FE7215FCAB451BA" />
<file path="C:\ProgramData\chocolatey\lib\ultraiso\tools\chocolateyUninstall.ps1" checksum="FD87AF7AA09E17D6014B42C9EF0D40F3" />
</files>
</fileSnapshot>
@caser
caser / gist:7256196
Created October 31, 2013 20:07
Sign Up
Feature: Sign up
In order to sign up for a free account
A user
Should provide a user name, password, and email address
Scenario: Signs up for a free account
Given I am on the "sign up" page
And I fill in "username" with "casey"
And I fill in "password" with "secret"
And I fill in "email" with "[email protected]"
@joerodgers
joerodgers / Invoke-LongRunningTaskWithSqlLiteStorage.ps1
Created April 11, 2025 14:10
mockup framework on how you could use SQLite database to track progress and store results for long running (days) scripts. This would allow for a script to be restarted from where it failed rather than having to start all the sites over.
Import-Module -Name PSSQLite
function Initialize-Database
{
[CmdletBinding()]
param
(
[parameter(mandatory=$true)]
[string]
$Path,