30 Nov 23
Patchwork might be something to keep in mind as an opportunity to install later on if I get overwhelmed by patches. Right now it’d be a complete YAGNI. Also it’s Django.
I like the idea: it doesn’t intrude with the mailing list workflow at all, it’s just an extra “view” of the patches.
21 Nov 23
Tauthon. Run Python 2 code forever. 🙏🏻
26 Oct 23
24 Oct 23
15 Sep 23
30 Aug 23
In this tutorial we’ll use reader to download all the episodes of a podcast, and then each new episode as they come up.
19 Jul 23
06 Jul 23
Why I’m using the unstructured Python library to handle complex text data while building a private AI assistant, and also explaining its benefits and why it’s the perfect fit for my use case.
12 Jun 23
“At a glance, this should help fpm users, I think, and fpm should mark things as this new “externally managed” category (pending some code changes to fpm, I assume)”
The gist seems to be that pip will be less inclined to clobberly delete stuff from dpkg, and that’s a good thing. It “tries to steer us towards venvs” which I’m not into compared to just making .deb files but hopefully there will be slightly fewer clashes. 🤞🏻
08 Jun 23
Auf YouTube findest du die angesagtesten Videos und Tracks. Außerdem kannst du eigene Inhalte hochladen und mit Freunden oder gleich der ganzen Welt teilen.
15 May 23
the pager will, of course, eventually go off at 2AM
01 May 23
pipis not included with python packages, you need to install it.
In general, you should check to see if a ports exists for the python software you want instead (e.g:pkglocatefrompkglocatedb, or https://openports.pl are useful).
30 Mar 23
Contribute to Lightning-AI/lit-llama development by creating an account on GitHub.
26 Mar 23
const SECRET_KEY = “YOUR API KEY”; const MAX_TOKENS = 800; const TEMPERATURE = 0.9;
function AI_ChatGPT(prompt, temperature = 0.4, model = “gpt-3.5-turbo”) { const url = “https://api.openai.com/v1/chat/completions”; const payload = {
model: model,
messages: [
{ role: "system", content: "You are a helpful assistant." },
{ role: "user", content: prompt },
],
temperature: TEMPERATURE,
max_tokens: MAX_TOKENS,
}; const options = {
contentType: "application/json",
headers: { Authorization: "Bearer " + SECRET_KEY },
payload: JSON.stringify(payload),
}; const res = JSON.parse(UrlFetchApp.fetch(url, options).getContentText()); return res.choices[0].message.content.trim(); }
07 Mar 23
Screaming-fast Python 3.5 HTTP toolkit integrated with pipelining HTTP server based on uvloop and picohttpparser. - squeaky-pl/japronto: Screaming-fast Python 3.5 HTTP toolkit integrated with pipelining HTTP server based on uvloop and picohttpparser.
06 Mar 23
An introduction to some powerful functional programming techniques in Raku and Python.
16 Feb 23
12 Feb 23
Trio – a friendly Python library for async concurrency and I/O - python-trio/trio: Trio – a friendly Python library for async concurrency and I/O