Every time you choose to apply a rule(s), explicitly state the rule(s) in the output. You can abbreviate the rule description to a single word or phrase.
[Brief description ]
- [more description]
- [more description]
- [more description]
#!/bin/sh | |
echo Disabling vpnagentd... | |
sudo launchctl disable system/com.cisco.anyconnect.vpnagentd | |
echo Tearing down vpnagentd... | |
sudo launchctl bootout system /Library/LaunchDaemons/com.cisco.anyconnect.vpnagentd.plist | |
echo Deactivating Cisco AnyConnect Socket Filter Extension... | |
/Applications/Cisco/Cisco\ AnyConnect\ Socket\ Filter.app/Contents/MacOS/Cisco\ AnyConnect\ Socket\ Filter -deactivateExt |
I have been utilizing artificial intelligence to enhance and optimize my codebases. After evaluating various models, applications, and editors, I find the claude.ai interface with a Pro Account to be the most effective. Here’s the approach I’ve developed to achieve optimal results:
This gist contains a carefully crafted prompt and a script designed to convert your entire Laravel codebase (excluding the resources folder, which can be easily added if needed) into a TXT file with the following structure:
<File Start: ./path/filename.extension> Content of file <End File: ./path/filename.extension>
To implement this method:
<?php | |
//(js -> php) code. letter by letter | |
global $n, $i, $id; | |
$n = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMN0PQRSTUVWXYZO123456789+/="; | |
$id = 12345; //YOUR USER ID | |
$i = [ | |
'v' => function($e) { | |
return strrev($e); |
.editor-group-watermark > .letterpress{ | |
background-image: url("https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/main/VSCode/VSCode-Thick.png") !important; | |
opacity: .75; | |
aspect-ratio: 3/2 !important; | |
} |
import { setup } from "@css-render/vue3-ssr"; | |
import { defineNuxtPlugin, type NuxtSSRContext } from "#app"; | |
export default defineNuxtPlugin((nuxtApp) => { | |
if (process.server) { | |
const { collect } = setup(nuxtApp.vueApp); | |
const originalRenderMeta = nuxtApp.ssrContext?.renderMeta; | |
nuxtApp.ssrContext = nuxtApp.ssrContext || ({} as NuxtSSRContext); | |
nuxtApp.ssrContext.renderMeta = () => { |
// ==UserScript== | |
// @name PornHub TV | |
// @author itsmidnightyo | |
// @version 1.0.0 | |
// @license GPL-3.0+; http://www.gnu.org/licenses/gpl-3.0.txt | |
// @description enables the pornhub tv layout as seen on PS4. [custom css edits have also been applied] | |
// @match http://*.pornhub.com/* | |
// @match https://*.pornhub.com/* | |
// @require http://code.jquery.com/jquery-latest.js | |
// @require https://cdn.jsdelivr.net/npm/js-cookie@2/src/js.cookie.min.js |
This configuration sends all (or part of) your OpenWRT logs to a MQTT broker. I'm writing it up here for future reference.
I made this so I can keep track of wireless clients as they associate and disassociate with my home network. This way, my home automation setup can make decisions based on that information. :)
Synchrony implies that the execution of multiple tasks occurs sequentially one after the other. Tasks are like steps that are executed in order, each operation blocks the others until completion.
Task #1 ├───────────┤............................
Task #2 .............├────────────┤..............