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]
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 .............├────────────┤..............
For anyone who might read this in the future, I've found the best solution to this problem. For some reason I didn't need to go through all these steps on my surface pro adobe programs, but my desktop gave me issues. So if you're still having issues after doing the following, read on. | |
If you just end the process in Task Manager, the pop-up comes back up eventually. | |
If you just delete the files in "C:\Program Files (x86)\Common Files\Adobe\AdobeGCClient" or the folder itself, they may just recreate themselves every day or two. | |
If you delete/disable the Adobe services or schedules in Task Scheduler, those may just come back too. | |
To solve these issues, I decided to make a .bat file that deletes every file in that AdobeGCClient folder (exact location may depend on your Adobe install folder) and schedule it to do this every time I log on/turn on my pc. So far that has worked for the past few days. |