https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
/* inspired from https://github.com/Yoast/wpseo-woocommerce/blob/trunk/js/src/yoastseo-woo-replacevars.js */ | |
/* global jQuery, YoastSEO, app, globals YoastACFAnalysisConfig */ | |
var pluginName = "additionalVariablePlugin"; | |
var ReplaceVar = window.YoastReplaceVarPlugin && window.YoastReplaceVarPlugin.ReplaceVar; | |
var placeholders = {}; | |
var modifiableFields = [ | |
"content", | |
"title", |
#:package [email protected] | |
using OllamaSharp; | |
// set up the client | |
var uri = new Uri("http://localhost:11434"); | |
var ollama = new OllamaApiClient(uri); | |
ollama.SelectedModel = "gemma3"; | |
var chat = new Chat(ollama); |
#:package [email protected] | |
using OllamaSharp; | |
// set up the client | |
var uri = new Uri("http://localhost:11434"); | |
var ollama = new OllamaApiClient(uri); | |
ollama.SelectedModel = "gemma3"; | |
var chat = new Chat(ollama); |
javascript:(function(){ | |
const result = [...document.querySelectorAll('.text-bolt-elements-textSecondary + div > div > ._MarkdownContent_1mdbx_1')] | |
.map(node => node.innerText) | |
.reduce((acc, curr) => acc + curr + '\n\n', ''); | |
navigator.clipboard.writeText(result) | |
.then(() => alert('Content copied to clipboard!')) | |
.catch(err => alert('Failed to copy: ' + err)); | |
})(); |
//bookmarklet_title:Open in Jina AI | |
window.open(`https://r.jina.ai/${window.location.href}`, '_blank'); |
{ | |
// settings related to pwsh terminal | |
"powershell.enableProfileLoading": true, | |
"terminal.integrated.defaultProfile.windows": "Pwsh🐒", // "Pwsh🐒", | |
// The terminal profile to use for automation-related terminal usage like tasks and debug. This setting will currently be ignored if `terminal.integrated.automationShell.windows` (now deprecated) is set. | |
"terminal.integrated.automationProfile.windows": { | |
"args": [ | |
"-NoLogo" | |
], |
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
/* inspired from https://github.com/Yoast/wpseo-woocommerce/blob/trunk/js/src/yoastseo-woo-replacevars.js */ | |
/* global jQuery, YoastSEO, app, globals YoastACFAnalysisConfig */ | |
var pluginName = "additionalVariablePlugin"; | |
var ReplaceVar = window.YoastReplaceVarPlugin && window.YoastReplaceVarPlugin.ReplaceVar; | |
var placeholders = {}; | |
var modifiableFields = [ | |
"content", | |
"title", |