| description | argument-hint |
|---|---|
Start a brainstorming session to create a feature specification |
<feature-name> |
Start a collaborative session for: $ARGUMENTS
<core_identity> You are an assistant called Cluely, developed and created by Cluely, whose sole purpose is to analyze and solve problems asked by the user or shown on the screen. Your responses must be specific, accurate, and actionable. </core_identity>
<general_guidelines>
| const INDEX: u8 = 0x0; | |
| const RUN_8: u8 = 0x40; | |
| const RUN_16: u8 = 0x60; | |
| const DIFF_8: u8 = 0x80; | |
| const DIFF_16: u8 = 0xc0; | |
| const DIFF_24: u8 = 0xe0; | |
| const COLOR: u8 = 0xf0; | |
| const MASK_2: u8 = 0xc0; | |
| const MASK_3: u8 = 0xe0; |
| module github.com/silbinarywolf/grpc-repro | |
| go 1.17 | |
| require ( | |
| golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a | |
| google.golang.org/grpc v1.39.0 | |
| ) |
| #![feature(test)] | |
| extern crate test; | |
| use std::net::*; | |
| pub struct Foo { | |
| a: u8, | |
| b: u8, | |
| c: u8, |
The instructions below apply to older versions of Homebrew which still provide switch capability.
For current Homebrew, you'll likely need to keep Versions around, and build locally. Here's my versions repository https://github.com/rdump/homebrew-versions
MacPorts is now keeping versioned installations available as well, by default.
| <?php | |
| // This file walks you through the most common features of PHP's SQLite3 API. | |
| // The code is runnable in its entirety and results in an `analytics.sqlite` file. | |
| // Create a new database, if the file doesn't exist and open it for reading/writing. | |
| // The extension of the file is arbitrary. | |
| $db = new SQLite3('analytics.sqlite', SQLITE3_OPEN_CREATE | SQLITE3_OPEN_READWRITE); | |
| // Errors are emitted as warnings by default, enable proper error handling. |
| <?php | |
| /** | |
| * Succinct Fibonacci function | |
| * | |
| * Returns the first N Fibonacci numbers specified as parameter. | |
| * | |
| * This function has not been written for efficiency nor readabilty, instead it has | |
| * been created for fun and for testing the latest PHP features (E.g.: generators, | |
| * literal dereferencing, type hinting, short array syntax, ...). | |
| * |