Hahaha, @bender@twtxt.net, youâre just the best with the words! :-D I love it.
@kat@yarn.girlonthemoon.xyz hey, hey, good afternoon, happy Friday! Fandom site tag pages count. Word!
@kat@yarn.girlonthemoon.xyz Completely off-topic, I didnât know that the English language picked up the German word âErsatzâ. Discovering things like that always brings me joy. It has some interesting other properties, though: https://en.wikipedia.org/wiki/Ersatz_good#Etymology
đ âHow to Make an Apostrophe in HTML: The Complete 2500 Word Guideâ https://thelinuxcode.com/how-can-i-make-an-apostrophe-in-html/
Folks I finally made something I wanted to make for a long time, a T-Shirt design thing.
Available at Rednubble https://www.redbubble.com/i/t-shirt/numpy-shapely-trimesh-and-py5-by-villares/173500912.7H7A9?asc=u
And also available in Brazil at Uma Penca: https://umapenca.com/villares/
You can also buy stickers and other items⊠soon my âPython Reading Clubâ and âPython is also for artists!â designs will be available. This will help support my free and open source activities. I make free and open educational resources, I teach at several places and I need to make ends meet.
#python #numpy #shapely #trimesh #py5 #creativeCoding #FLOSS
Folks I finally made something I wanted to make for a long time, a T-Shirt design thing.
Available at Redbubble https://www.redbubble.com/i/t-shirt/numpy-shapely-trimesh-and-py5-by-villares/173500912.7H7A9?asc=u
And also available in Brazil at Uma Penca: https://umapenca.com/villares/
You can also buy stickers and other items⊠soon my âPython Reading Clubâ and âPython is also for artists!â designs will be available. This will help support my free and open source activities. I make free and open educational resources, I teach at several places and I need to make ends meet.
#python #numpy #shapely #trimesh #py5 #creativeCoding #FLOSS
Folks, I finally made something I wanted to make for a long time, a T-Shirt design thing.
Available at Redbubble https://www.redbubble.com/i/t-shirt/numpy-shapely-trimesh-and-py5-by-villares/173500912.7H7A9?asc=u
And also available in Brazil at Uma Penca: https://umapenca.com/villares/
You can also buy stickers and other items⊠soon my âPython Reading Clubâ and âPython is also for artists!â designs will be available. This will help support my free and open source activities. I make free and open educational resources, I teach at several places and I need to make ends meet.
#python #numpy #shapely #trimesh #py5 #creativeCoding #FLOSS
@lyse@lyse.isobeef.org (Haha, every time I read the word âGophersâ, I have to stop and remind myself that this is about Golang. đ€Ș)
@lyse@lyse.isobeef.org âAdvancedâ, well, probably more âmatureâ. There arenât a ton of crazy features and that icon thing is the largest code addition in the last 10 years. %)
Speaking of OS/2 ⊠I just realized that Windows 3.x didnât have icons, either. If Iâm not mistaken, this only got added in Windows 95. In other words, OS/2 had this feature before Windows did, because at least OS/2 2.1 from 1993 had icons. Who would have thunk.
(Now I kind of want to know which system really introduced this feature.)
Hereâs an example of X11/Xlib being old and archaic.
X11 knows the data type âcardinalâ. For example, the window property _NET_WM_ICON
(which holds image data for icons) is an array of âcardinalâ. I am already not really familiar with that word and Iâm assuming that it comes from mathematics:
https://en.wikipedia.org/wiki/Cardinal_number
(It could also be a bird, but probably not: https://en.wikipedia.org/wiki/Cardinalidae)
We would probably call this an âintegerâ today.
EWMH says that icons are arrays of cardinals and that theyâre 32-bit numbers:
https://specifications.freedesktop.org/wm-spec/latest-single/#id-1.6.13
So itâs something like 0x11223344
with 0x11
being the alpha channel, 0x22
is red, and so on.
You would assume that, when you retrieve such an array from the X11 server, youâd get an array of uint32_t
, right?
Nope.
Xlib is so old, they use char
for 8-bit stuff, short int
for 16-bit, and long int
for 32-bit:
That is congruent with the general C data types, so it does make sense:
https://en.wikipedia.org/wiki/C_data_types
Now the funny thing is, on modern x86_64
, the type long int
is actually 64 bits wide.
The result is that every pixel in a Pixmap, for example, is twice as large in memory as it would need to be. Just because Xlib uses long int
, because uint32_t
didnât exist, yet.
And this is something that I wouldnât know how to fix without breaking clients.
Um exemplo mĂnimo de como usar #Python para ler dados de uma planilha #Excel com a biblioteca #openpyxl e como modificar um arquivo #Word com a biblioteca #docx
https://gist.github.com/villares/560e231da78cd1b8f5701c5a6897348f
Something happened with the frame rate of terminal emulators lately. It looks like thereâs a trend to run at a high framerate now? Iâm not sure exactly. This can be seen in VTE-based terminals like my xiate or XTerm on Wayland. foot and st, on the other hand, are fine.
My shell prompt and cursor look like this:
$ â
When I keep Enter pressed, I expect to see several lines like so:
$
$
$
$
$
$
$ â
With the affected terminal emulators, the lines actually show up in the following sequence. First, we have the original line:
$ â
Pressing Enter yields this as the next frame:
$
â
And then eventually this:
$
$ â
In other words, you can see the cursor jumping around very quickly, all the time.
Another example: Vim actually shows which key you just pressed in the bottom right corner. Keeping j
pressed to scroll through a file means I get to see a j
flashing rapidly now.
(I have no idea yet, why exactly XTerm in X11 is fine but flickering in Wayland.)
Someone did a thing:
https://social.treehouse.systems/@ariadne/114763322251054485
Iâve been silently wondering all the time if this was possible, but never investigated: Keep doing X11 but use Wayland as a backend.
This uses XWaylandâs ârootfulâ mode, which basically just gives you a normal Wayland window with all the X11 stuff happening inside of it:
https://www.phoronix.com/news/XWayland-Rootful-Useful
In other words, put such a window in fullscreen and you (more or less) have good old X11 running in a Wayland window.
(For me, personally, this wonât be the way forward. But itâs a very interesting project.)
They say a picture is worth a 1000 words. Whatâs Hazel saying here? â Read more
Ha, I just learned that deleting text in my zsh with Ctrl+U
to the front or Ctrl+K
to the end puts it in a buffer that can be pasted by pressing Ctrl+Y
! Thatâs neat. Even removing the last word with Ctrl+W
moves it into this paste buffer.
https://jvns.ca/blog/2024/11/26/terminal-rules/#rule-5-vaguely-support-readline-keybindings
I guess I have to implement pasting in tt
as well.
Did you know about @panoramax@panoramax , âa federation offering geolocated street-level picturesâ?
Pictures are offered through a decentralized architecture, with a set of free and open-source tools. In other words, it is âlike a self-hosted Street Viewâ that does not impose its own app and gives you the right to fork the server.
MarkItDown MCPïŒäžé”èœæ pdf-word-ppt-html çææȘçČ MarkDown æ ŒćŒ
ç°Ąćźä»çŽč---- markitdown-mcp ć
æäŸäșäžćèŒéçŽç STDIO ć SSE MCP æććšïŒçšæŒèȘżçš MarkItDownă ćźć
Źéäșäžćć·„ć
·ïŒÂ converttomarkdown(uri) ïŒć
¶äž uri ćŻä»„æŻä»»äœÂ http: ă https: ă file: æÂ data: URI ăInstallation ćźèŁâââââćŠéć°ćźèŁć€±æçćéĄïŒ â Read more
[$] Development statistics for the 6.15 kernel
The 6.14 kernel development cycle only brought in 11,003 non-merge
changesets, making it the slowest cycle since 4.0, which was released in
2015. The 6.15 kernel, instead, brought in 14,612 changesets, making it
the busiest release since 6.7, released at the beginning of 2024. The
kernel development process, in other words, is back up to full speed. The
6.15\âšrelease happened on May 25, so the ⊠â Read more
@prologic@twtxt.net yeah, that will work perfectly. Because you are using âpleaseââwhich we all know is a magic talisman word of obedienceâall uploads of your code to Github will be automatically paused, until such magic word is removed. đ
iOS 19 Design Changes Rumored to Extend to Apple TV and Apple Watch
Many of Appleâs operating systems will be receiving design changes this year, according to the latest word from Bloombergâs Mark Gurman.
Gurman [previously reported](htt ⊠â Read more
One of the nicest things about Go is the language itself, comparing Go to other popular languages in terms of the complexity to learn to be proficient in:
- Go:
25
keywords (Stack Overflow); CSP-style concurrency (goroutines & channels)
- Python 2:
30
keywords (TutorialsPoint); GIL-bound threads & multiprocessing (Wikipedia)
- Python 3:
35
keywords (Initial Commit); GIL-bound threads,asyncio
& multiprocessing (Wikipedia, DEV Community)
- Java:
50
keywords (Stack Overflow); threads +java.util.concurrent
(Wikipedia)
- C++:
82
keywords (Stack Overflow);std::thread
, atomics & futures (en.cppreference.com)
- JavaScript:
38
keywords (Stack Overflow); single-threaded event loop &async/await
, Web Workers (Wikipedia)
- Ruby:
42
keywords (Stack Overflow); GIL-bound threads (MRI), fibers & processes (Wikipedia)
@prologic@twtxt.net What I meant, is that I will not say that someone is not really a writer, if they choose to have what they wrote, ran through some spelling and sentence structure checker, like the one included in MS Word, the average phone keyboard, or on reverso.net - given that they look over the output and make sure the corrections make sense.
Similarly, I wonât complain much, if someone uses AI, to remove backgrounds from images, where the AI can preform this task, as well as a human would and makes sure to check it afterwards, or use ai as a way to sort large quantities of images - usually done for science. An example of this, would be having terabytes of plant photos, from some cities camera system and having an AI analyse them, in an attempt to detect notable changes, like mold, parasites, or the plants needing more water.
@bender@twtxt.net @prologic@twtxt.net Jokes aside, I donât think thatâs the right approach either. We had spell checkers, since I can remember, as well as other tools, like the smart image select, used mostly to remove backgrounds. These are tools, that just simplify the process of either opening up a dictionary and looking up a word, you canât remember the spelling of, or the process of placing a billion little dots around the part of an image you want to select - none of these are creative or enjoyable tasks, we already had tools for them, decades before AI. I donât think we need to go back to cave paintings, to be free of AIs influence on our creative work.
** Collaboration is a scary word **
I like programming partially because itâs a practice I can, with appropriate to unhealthy application of effort, usually accomplish something at least proximal to my intention.
This isnât true for visual art, nor music. Lately Iâve been feeling like the little games and toys I wanna make are sorta hampered by my total inability to make stuff I find aesthetically appealingâŠsoâŠIâve been thinking about collaboration. Which is a scary word because, you know, other people and all, but I figured Iâd ⊠â Read more
Z
for UTC +00:00
- is that allowed in your specs?
Regarding url =
I would suggest to only allow one and the maybe add url_old =
or url_alt =
!?
I'm still not a fan of a DM feature, even thou it helps that i have now been split out into a separate feed file. Instead if would suggest a contact =
field for where people can put an email or other id/link for an established chat protocol like signal or matrix.
In other words, why didnât you all do the same that @movq@www.uninformativ.de did, and setup a completely different feed for this?
A new AUTOSEL release
AUTOSEL is a tool that is used to find kernel patches that should be
considered for backporting into the stable releases. Sasha Levin has announced a new and completely
rewritten version of AUTOSEL for those who would like to play with it.
Unlike the previous version that relied on word statistics and
older neural network techniques, AUTOSEL leverages modern large
language models and embedding technology to provide significantly
more accurate recommen ⊠â Read more
@prologic@twtxt.net hahahahaha! No, no, no. Every word has its use. But for things like these I like certain reactions. For example, I would have given a âthumbs downâ to the original twtxt, and done with it. Now, composing a reply, to simply say âno, thank you.â, that I donât like. It seems a waste of space, and it doesnât âlook goodâ. I like to see at least 140 characters! Ha!
âMonosyllabic repliesâ refers to responses that consist of a single syllable. These types of replies are typically brief and concise, often used in situations where a simple, direct answer is given. Examples include words like âYes,â âNo,â âOkay,â or âSure.â
đ Can I imply youâre not interested in things like âLIkeâ, âReportâ, etc?! đ
hot take: one swear word per day maximum is reasonable
@bender@twtxt.net I use it. Itâs not the feature I use the most in the fediverse, but I communicate this way with several friends. For example, itâs the main way I talk to the original creator of the twtxt-el repository, the way people greet me for the first time or the way they notify me of some bugs in the software I maintain. I can even tell you that itâs the main way I talk to some maintainers of the Emacs community. If there are any of you reading my words, speak up!
Why not have the same? There are things I want to say to @prologic@twtxt.net in private, why should I have to send him an email or private IRC? Or an public twt.
Of course, hereâs a topic weâve already talked about: what is twtxt for you? For me it will always be a social network, in microblogging format, but an asynchronous way of communicating. And having a tool to control visibility is basic đ
I look forward to hearing from you @eapl.me@eapl.me !
@kat@yarn.girlonthemoon.xyz pandoc is a joy! I havenât used any Microsoft word processing tools since forever. They want a Word document? Pandoc to the rescue!
7k words of docs on deploying a livejournal folk. you absolutely want to read 7 thousand words of me forcing dreamwidth into production shape in docker https://stash.4-walls.net/selfhostdw/
@anth@a.9srv.net Hahaha, for a second I thought that you implemented word splitting according to Swiss (.ch
) rules. :-D
Btw, both manpage links string(2)
and getields(2)
(itâs missing an f
) point into nothingness: http://a.9srv.net/src/wordwrap.2.html
I canât help but notice line 9: http://a.9srv.net/src/wordwrap.c
And I reckon your finger slipped one key to the right for quore
: http://a.9srv.net/src/litclock.1.html
Cool stuff! :-)
«Miscrosot finally released a product that doesnât suck. Unfortunately, itâs a vacuum cleaner.» © english word play
In Mexico you couldnât register the word Sonora (state), nor Taqueria (kind of restaurant) as there are two common words, but perhaps the combination of both is trademarkable, Iâm not sure, so many âtaqueriasâ here donât file a trademark request. Itâs usually âTaquerĂa [LAST_NAME]â or âTaquerĂa [PLACE]â.
At the same time, the word âtaqueriaâ was trademarked in UK, like it would be âParisâ or âPubâ I guess, so basically Sonora Taqueria didnât reply to the cease and desist, based on:
[Lizbeth GarcĂa]: A brand may not use a word that is generic or descriptive of the products or services it is putting into circulation on the market.
Since he (Ismael, Taqueriaâs representative) didnât get any response, he decided to leave it in the hands of his law firm.
In early 2023, after all the noise on the internet and the mobilization caused by this case, an agreement was finally reached with TaquerĂa to settle the matter peaceably.
In March 2023, Michelle and Sam decided to register the Sonora TaquerĂa brand and logo with the UK Intellectual Property Office.
Hereâs What Appleâs iOS 19 Messages App Might Look Like
Leaker Jon Prosser today shared a mockup of what he says the Messages app will look like in iOS 19, demoing an interface with rounded, translucent bubble-shaped navigation buttons at the top and softer, rounder corners for the keyboard and word suggestions.
Apple Watch SE With Plastic Design Now in âJeopardyâ for Two Reasons
There might not be a plastic Apple Watch SE this year after all, according to the latest word from Bloombergâs Mark Gurman.
In his Power On newsletter today, Gurman said the plastic Apple Watch SE is now in ⊠â Read more
Hmmm, when I Ctrl+Left
to jump a word left, I get 1;5D
in my tt2 message text. My TERM
is set to rxvt-unicode-256color
. In tt
, it works just fine. When I change to TERM=xterm-256color
, it also works in tt2
. I have to read up on that. Maybe even try to capture these sequences and rewrite them.
John Gruber Says âSomething is Rottenâ at Apple
Daring Fireballâs John Gruber today shared some strongly-worded comments about Appleâs delayed personalized Siri features. Gruber is a well-known Apple pundit who has been writing about the company for more than two decades.
 đ, word blog
comes from weblog, and microblogging could derivate from âsmaller weblogâ. https://www.wikiwand.com/en/articles/Microblogging
Iâd differentiate it from sharing status updates as it was done with âfingerâ or even a BBS. For example, being able to reply; create new threads and sharing them on a URL is something we could expect from âTwitterâ, the most popular microbloging model (citation needed)
I like to discuss it, since conversations usually are improved if we sync on what we understand for the same words.
Apple Has Finally Solved One of the MacBook Airâs Biggest Limitations
The new MacBook Air has a useful upgrade: it natively supports up to two external displays, in addition to the laptopâs built-in display.
In other words, the latest MacBook Air can be used with a pair of external displays without nee ⊠â Read more
New MacBook Air Coming This Week: What to Expect
Apple CEO Tim Cook teased a new product announcement this week, sharing a short video that says âthereâs something in the Air.â Based on the âAirâ wording and the timing of the launch, it sounds like weâre going to get new M4 [MacBook Air](https://www.macrumors.com/ro ⊠â Read more
Too adorable that no words can explainâ€ïž â Read more
I got to watch âThe Hitmanâs Bodyguardâ (2017) for the Nth time earlier today. it is still a fun thing to watch, the only problem is, now I am stuck with Samuel L. Jackson singing his âBevilo Tutto, Bevilo Tutto, Bevilo Bevilo Bevilo TuttoâŠâ song with the nuns, again and again in my head đ€Ł âŠ But hey, Iâve learned two Italian words today.
Yesterday I was doing a lot of research on how #hyperdrive and the #holepunch project work. Would it be possible to use it to make #twtxt an easier gateway for new users? Could we stop using web servers?
My conclusion: We would end up being a #nostr. On the one hand it would become more complex to use, it would force the user to have software installed, and on the other hand the community would need a central proxy to make the routes accessible via HTTP. In other words, itâs not a good idea.
However, itâs an AMAZING technology. I want to start playing with it.
No words can describe how much I miss my baby. The house is too quiet, and my heart is too heavy rn. R.I.P â Read more
Thank you! đ Iâm trying to do it with care, calm and good handwriting, with the little time I have and the limits of Emacs. I really appreciate your words!
Hi James, great to hear your interest. So this is an exclusive roundtable luncheon with people in the IT, Engineering, DevOps and Technical professionals. This is an opportunity to benchmark and share stories and experiences with like-minded peers in a closed-door, Chatham House Rule environment where you will be given the opportunity to speak openly and candidly.
Iâm not even sure what half these words mean hmm đ§
funny to come across this; been working on something similar then got distracted by trying to force lynx to wrap at 80 columns w/o breaking words..
Learned a new word today!
@kat@yarn.girlonthemoon.xyz To improve you shell programming skills, I highly recommend to check out shellcheck
: https://github.com/koalaman/shellcheck It points out common errors and gives some suggestions on how to improve the code. Some details in shell scripting are very tricky to get right at first. Even after decades of shell programming, I run into âcorner casesâ every now and then.
E.g. in getlyr
âs line 7 it warns:
echo -e $(gum style --italic --foreground "#f4b8e4" "'$artist', '$song'")
^-- SC2046: Quote this to prevent word splitting.
For more information:
https://www.shellcheck.net/wiki/SC2046 -- Quote this to prevent word splitt...
Most likely not all that problematic in this application, but itâs good to know about this underlying concept. Word splitting is basically splitting tokens on whitespace, this can lead to interesting consequences as illustrated by this little code:
$ echo $(echo "Hello World")
Hello World
$ echo "$(echo "Hello World")"
Hello World
In the first case the shells sees two whitespace-separated tokens or arguments for the echo
command. This basically becomes echo Hello World
. So, echo
joins them by a single space. In the second one it sees one argument for the echo
command, so echo
simply echos this single argument that contains three spaces.
@<url>
form of mentions. Strictly require that all mentions include a nickname/name; i.e: @<name url>
.
word of the thay, prosoal
Is it a typo of Proposal right? =P (Genuinely asking)
Thank you for your kind words @prologic@twtxt.net đ things will indeed.
My 7-year old invented the word guakilijion which is a 1 with a bazillion zeroes following after it. He wants to be a word inventor.
My German word of the week: der Einfallsreichtum
If all Orange Face Elefant party voters would take them on their words and make them actually do whatever insane world they invented, then perhaps people will realize the grave mistake that was made today. Many people have to feel consequences before they believe it. I hope there will still be history books in the future to disclose the insanity for future generations. But whatever happens, the World will keep spinningâŠ
[AFH] [2.5c+/word] Fiction writer
I can help you turn your ideas and story beats into an engaging and fun piece of written fiction.
Link: https://xmrbazaar.com/listing/iB5g/
ClaraB (XMRBazaar) â Read more
Canât Open Microsoft Office Files in MacOS Sequoia? Fix Microsoft Word, Excel, Office File Associations
Some Mac users have noticed that Microsoft Office files and documents, whether thatâs Word docs, Excel spreadsheets, Powerpoint presentations, or otherwise, are not opening in the intended apps, or properly associating with the relevant Microsoft Office app, after updating their Mac to MacOS Sequoia. To make matters worse, some ⊠â Read more
[LFF] Monero meetup group in Barcelona (Spain)
Hello I am running the Monero meetup group in Barcelona (Spain) and looking for support to organize a in-person event before end of the year. The idea is to spread the word in the city about XMR what it is and why privacy is important. I am aiming for a more social networking environment to gather privacy enthusiasts but open to sugestions. I would like to ask here if you guys could help with some funds to rent a space if needed.
Link: [https://www.meetup.com/es-ES/monero-meetup-barcel ⊠â Read more
@bender@twtxt.net Sorry, trust was the wrong word. Trust as in, you do not have to check with anything or anyone that the hash is valid. You can verify the hash is valid by recomputing the hash from the content of what it points to, etc.
When to Expect the iPhone SE 4 to Launch
Over two and a half years have passed since Apple released the current iPhone SE, so the device is due for an update. Below, we recap the latest rumors about the next-generation iPhone SE, including potential features and launch timing.
The latest word [comes from Bloombergâs Mark Gurman](https://www.bloomberg.com/news/newsletters/2024-08-25/apple-plans-tabletop-robot-whi ⊠â Read more
@falsifian@www.falsifian.org @bender@twtxt.net I pushed an alternative implementation to the fetch-context
branch. This integrates the whole thing into mutt/jenny.
You will want to configure a new mutt hotkey, similar to the âreplyâ hotkey:
macro index,pager <esc>C "\
<enter-command> set my_pipe_decode=\$pipe_decode nopipe_decode<Enter>\
<pipe-message> jenny -c<Enter>\
<enter-command> set pipe_decode=\$my_pipe_decode; unset my_pipe_decode<Enter>" \
"Try to fetch context of current twt, like a missing root twt"
This pipes the mail to jenny -c
. jenny will try to find the thread hash and the URL and then fetch it. (If thereâs no URL or if the specific twt cannot be found in that particular feed, it could query a Yarn pod. That is not yet implemented, though.)
The whole thing looks like this:
https://movq.de/v/0d0e76a180/jenny.mp4
In other words, when thereâs a missing root twt, you press a hotkey to fetch it, done.
I think I like this version better. đ€
(This needs a lot of testing. đ)
Iâve decided to try and get rid of as much stress as possible. Stupid things stress me out, some things are more important to fix then others. But today I got started, by fixing the xeon bulb on our car, been ignoring it for a year, because the car garage said itâll cost me 350$ so get it changed (Because they had to remove the whole front).. So because of that I did not prioritize it. But today I went and bought a bulb for 50$ and I openened the hood of the car and saw I could just replace it my self by simply removing a cover to get access to the bulb. So Iâve been stressing over nothing for a year simply because I did not check and took their word for it. next thing to get fixed is a rotten board under a window outside, been bugging me for a long time, now I want to get that sorted next. All these small things adds up, and I want peace of mind.
MacOS Sonoma 14.5 Update Released with Security Fixes
Apple has released MacOS Sonoma 14.5 for Mac users running the Sonoma operating system. The MacOS 14.5 update includes bug fixes, security enhancements, and some changes and improvements to add various word games to the paid Apple News+ service. Mac users running earlier versions of system software will find MacOS Ventura 13.6.7 and MacOS Monterey ⊠[Read More](https://osxdaily.com/2024/05/13/macos-sonoma-14-5-update-released- ⊠â Read more
Go èȘèšć° PDF èœçČ Word ïŒä»ŁçąŒæéșŒćŻŠçŸïŒ
ć° PDF èœæçČ Word éæŻäžććŸćžžèŠçćèœäșïŒçš Go èȘèšćŻŠçŸïŒćŻä»„ééä»„äžæ„é©ćźæïŒ1 ćźèŁ PDF èœæć·„ć
·ćș«ïŒéŠć
éèŠäœżçš Go èȘèšäžç PDF èœæćș«ïŒæŻćŠ pdftoword æ pdfcpuăäœ ćŻä»„äœżçš Go çć
知çć·„ć
·ïŒćŠ go getïŒäŸćźèŁéäșćș«ă2 ć°ć
„äŸèłŽćș«ïŒćš Go é
çźäžć°ć
„äœ éžæç PDF èœæćș«ïŒäžŠçąșäżæŁçąșć°ć°ć
„äșææéèŠçäŸèłŽé
ă3 ć èŒ PDF æä»¶ â Read more
The wording can be more subtle like âThis feed have not seen much activity within the last yearâ and maybe adding a UI like I did in timeline showing time ago for all feeds
I agree that it good to clean up the Mastodon re-feeds, but it should also be okay for anyone to spin up a twtxt.txt just for syndicating they stuff from blog or what ever.
The ânot receiving repliesâ could partly be fixed by implementing a working webmentions for twtxt.txt
Why here so few people, write more words!
âIâm not taking the word of any politicianâ: Andrew Forrest on nuclear energy push
Fortescue Chairman Andrew Forrest has rubbished the Coalitionâs push for nuclear energy.
Mr Fortescue told Sky News Australia how he spoke with General Energy about the costs of implementing nuclear energy and the timeframe required.
âIf I order one, when do I get one? And they said, âmate, look, 15 yearsâ,â he said.
âIâm not going to ⊠â Read more
Mary Poppins age rating raised in the UK over discriminatory language
The 1964 Disney classic, Mary Poppins, is having its age rating raised to PG in the UK.
Reportedly, the move is due to its discriminatory language.
The change centres around the use of a colonial term used in the movie.
The term is a pejorative word, historically used to describe the Khoekhoe people of South Africa.
The British Board of Film Classificati ⊠â Read more
Partnerâs tragic reveal after starâs death
The fiancee of motocross cult hero Jayden Archer has penned a heartbreaking tribute to the Aussie daredevil. â Read more
How to Recover Unsaved Word Documents on Mac with AutoRecovery
While you should get in the habit of frequently saving your documents as you work in them, including in Microsoft Word, things donât always go as planned. Many modern Mac apps will automatically save progress as you work in them, and Microsoft Word is one of them. Thanks to a feature called AutoRecovery, which saves ⊠[Read More](https://osxdaily.com/2024/02/26/how-to-recover-unsaved-word-documents-on-mac-wit ⊠â Read more
âGASPED WHEN SHE SAID ITâ: Three âproblematicâ words spark fury
NSWâs top cop has sparked backlash after using an âextremely problematicâ phrase to describe the alleged murders of a Sydney couple. â Read more
Chris Kenny calls for national leadership on âanti-Jew hatredâ and âIslamist extremismâ
Sky News host Chris Kenny has called for national political leadership on âanti-Jew hatredâ and âvirulent Islamist extremismâ running amok in Australia.
Mr Kenny said shocking vision has come to light showing pro-Palestinian protesters in Melbourne celebrating the fighters in Gaza.
âIn other words, the Islamist extremist terro ⊠â Read more
Fix âNot authorized to send Apple events to System Eventsâ Mac Error
Some Mac users may occasionally stumble into a oddly worded error message when attempting to launch an application that states âNot authorized to send Apple events to System Eventsâ, and, when clicking OK to dismiss the error, nothing happens â the app does not launch on MacOS. If you attempt to open the app triggering ⊠[Read More](https://osxdaily.com/2024/02/25/fix-not-authorized-to-s ⊠â Read more
>
?
@eapl.me@eapl.me this is interesting. Is the square bracket something used in the wild for multilingual twts?
@prologic@twtxt.net what are your thoughts? Should we extend the parser to handle [lang] and [boost] ? Or a generic attribute spec. Single word is a boolean attribute. And one with an =
is a string key/value.
How to Disable Inline Text Predictions on iPhone & iPad
The latest versions of iPhone and iPad system software include a feature that offers predictive typing, with typing suggestions shown inline as light gray words that are ahead of your cursor as you type. For example, if youâre typing âhow arâ you might see the inline prediction suggest âhow are youâ as a way to ⊠Read More â Read more
How to Disable Inline Text Predictions on iPhone & iPad
The latest versions of iPhone and iPad system software include a feature that offers predictive typing, with typing suggestions shown inline as light gray words that are ahead of your cursor as you type. For example, if youâre typing âhow arâ you might see the inline prediction suggest âhow are youâ as a way to ⊠Read More â Read more
How to Disable Inline Predictive Text Typing on Mac
The latest versions of MacOS offer an inline predictive text feature, which attempt to predict what you may want to type text. Youâll see this appear when typing in many Mac apps as there are words appearing in lighter gray in front of what you are presently typing, which you can complete typing of by ⊠Read More â Read more
Happy Twixmas everyone (new word I just learned 2 min ago)
I have finally gotten around to implementing a gallery feature to timeline.
http://darch.dk/timeline/gallery?profile=https://yarn.stigatle.no/user/stigatle/twtxt.txt
There is still some hiccups, like the limited caching is making it difficult to make links back to older posts not working. Maybe @eapl.me@eapl.me you can help me with that?
Never in my life will I understand why Americans bleep out curse words. đ€
Doing this thing where I do one-word status reports and logging them in a file.
How to Stop iPhone Siri Listening to You
Due to the nature of how Hey Siri on iPhone works, Siri is basically always listening to you and your surroundings, if the Hey Siri feature is enabled. This is necessary to hear the âHey Siriâ activation word so that Siri knows to pick up the command you give to it, and the always on ⊠Read More â Read more
The word forms is part two. In this one you want to find the first digit and last digit. Think searching â1â - â9â
The local energy Company is doing an Advent contest with a word guessing game, 21 letters long, it starts with a T and I got all other letters by looking at the source of their site⊠Put all of the letters into ChatGPT 3.5, but it is having real trouble coming up with something plausible.
logs/blog: words pointing to the sharp blade of practice; garden/food: new recipes
Its nuts. Im a bit lost for words to be honest. Such a shock-attack, and taking civilians as hostages, shooting them, killing them, torture, kidnap kids and so on. Oooffff. Wonder what the response and aftermath will be..
** of vast distances, connection over them, and being made to feel alone; of water catchment, soil, and bits **
Anomie, a word for your consideration.
The dictionary of cyborg anthropology defines anomie, in part, with this anecdote:
In everyday life, the modern vehicle and the daily commute is one of the most isolated moments an urban human can experience. T ⊠â Read more
Time Domain Audio Compression at 3.2 bits per Sample
Audio formats typically fall into one of three categories: âlosslessâ,
âcomplicatedâ or âbadâ. After developing a
simple image format
last year, I tried to come up with an audio format that fits neither of these
categories.
In other words: a format that is lossy, simple and quite ok.
Naturally, itâs called QOA â the Quite OK Audio Format.
 only a few words.
if you want to minimize the amount of words in your library, every function should have as many parameters as there are functions in total.
oofed not in the absurdle word list, even though itâs the reaction i have the most when playing it
Q: Are passphrases really more secure than cryptographically random passwords? đ€
I have to wonder⊠It should be possible to do âpassphraseâ attacks just like âdictionaryâ attacks? How is a âphraseâ any different to the character set you can type? Sure there are more possible âwordsâ (at least) in the English language, but Iâm not convinced.
the words âbrier scoreâ are used inconsistently: sometimes they just refer to the MSE of the probability assigned to the correct outcome, sometimes they refer to the MSE of the sum of the probability assigned to the correct and the incorrect outcome.
with resolving inconsistent graph preferences, does the portion of non-uniquely resolvable preferences shrink with the number of options? in other words: for the set đ_n of all graphs with n nodes, and the set U(đ_n) of those graphs with a unique path-graph with a smallest graph-edit distance, is |U(đ_n)|/đn<|U(đ{n+1})|/|đ_{n+1}|?
we can also make value of perfect information a shorter word, vopi. or voi for just value of information.
from now on whenever the word âspiritualityâ or âconsciousnessâ comes up in a discussion i will look slightly quizzical and ask âyeah, sure, but can you feel your toes right now?â