#voice-chat-text-0
1 messages · Page 439 of 1
Diagnostic Criteria:
The DSM-5, the diagnostic manual for mental disorders, includes "lacks empathy: is unwilling to recognize or identify with the feelings and needs of others" as a criterion for diagnosing NPD.
one of its symptoms but not the main thing in my understanding
Completely off topic & not super appropriate so sorry but I veri happi rn:
yeah, I stopped at this
Programming fucking sucks, I didn't want to deal lol
for me empathy is an intentionally learned skill, no one taught me it or cared enough about me having it
also certain things are regionally illegal to treat, e.g. GD
https://www.statista.com/statistics/1376359/health-and-health-system-ranking-of-countries-worldwide/
as assessed by my cat
I don't even have a cat
@molten pewter search is bad
it doesn't reset the page
I still can technically get $20K worth of 6%-taxed income a year if I do freelancing
0.5 lines in APL
no. Not trying to do turing complete in SM again lmao
the code for generating this was probably more impressive than the result
True
I think both that and 256-bit single-cell I have are generated using the same thing
@wind raptor I think both learning directions are valid
declarative-first is not necessarily wrong imo
hi
give them APL
thank you
how do you do
life ← {⊃1 ⍵ ∨.∧ 3 4 = +/ +⌿ ¯1 0 1 ∘.⊖ ¯1 0 1 ⌽¨ ⊂⍵}
Game of Life in APL
no overwhelming imports at all
ok cool but do it in brainfuck
git push is what they pay me for
meanwhile same in uiua
(this was the screenshot)
@molten pewter there was some British guy but I forgot his name already
got banned I think
bmt
stupidity repatriation
lmao
the cotton gin greatly reduced the manpower required to perform the task
allowing for a lot more processing
ah, the American capital not London...
slight 110 years timeline error
I think we did learn some basic American history at school
nations weren't yet a thing at that time in Europe, armies being independent or nearly independent was the norm
why are you installing it to OneDrive? 
did you select the path with ?? included or was it automatically added?
something's off with the encoding likely
@regal ridge 👋
I added 3 'quick' fixes on a nicely spaced circuit. It still doesn't work & now I can't triage it.
hello
Hi
how goes it
Good, how about you?
good just watching and reading some tutorials
the dreadful discord bug has struck again, brb
kk
What have you been tutorials on?
making a simple calculator with tkinter
very nice
just realized my clear function doesnt work correctly
@reef tree 👋
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
i have sent less then 50 messages
Yes
@limpid surge 👋
🫶
hey im new to coding and now im trying to build a password generator could I ask for an assistance?
@sturdy sage 👋
whats wrong here
hi
Avoid use of the random module, unless you don't care that it's insecure.
!d str.join
str.join(iterable)```
Return a string which is the concatenation of the strings in *iterable*. A [`TypeError`](https://docs.python.org/3/library/exceptions.html#TypeError) will be raised if there are any non-string values in *iterable*, including [`bytes`](https://docs.python.org/3/library/stdtypes.html#bytes) objects. The separator between elements is the string providing this method.
!d secrets
Added in version 3.6.
Source code: Lib/secrets.py
The secrets module is used for generating cryptographically strong random numbers suitable for managing data such as passwords, account authentication, security tokens, and related secrets...
thanks for the information, i already tried to look up the right module but the result is empty
Ya me too
What
50 messages limit is very difficult to complete
!user himanshuholmes
You may not use this command on users other than yourself.
!user @mystic yarrow
You are not allowed to use that command here. Please use the #bot-commands channel instead.
whats the colour of the sky?
Mi amore, mi amore...
Sky blue
how many messages do you need now?
do you program in Python?
Yes
have you got any projects on the go?
Yeah
Making youtube clone with js and go
skytube
skytube?
Rss aggregator
Just a name
sure sure
23
do you work in programming?
No currently doing freelancing stuff
noice
Apply for jobs
hgow long have you coded for?
Nowadays
sure sure
Around 4 years
whose Butcher?
It's character
from what?
nothing, I'm classed as "dIsAbLeD"
hye guys can i solve captchas like this using ocr? i m trying to make a automation script using selenium
I'm working on games
What are the games name
Infestation
how many messages left?>
cac someone help me here
I'll help in a sec, soz man
We don't generally help with the subversion of automation protections.
okay thanku
but python supports automating
What r you fav games
!rule 5
5. Do not provide or request help on projects that may violate terms of service, or that may be deemed inappropriate, malicious, or illegal.
10
okay
9
whats before that?
8
and then?
7
and then
6
🗞️
and then after that?
5
what about after that?
4
where is big ben?
.topic
¬¬ alright opal :L
bbl
kl kl
@terse needle ruff
you can disable all linting nowadays I think
and just use formatting
static analysis
language server is responsible for typing
no
it's actually quite dumb, from I understand, it doesn't go deep into typing
typing-based linting only works well when you have a statically typed language
e.g. how clippy hooks into Rust's type system
@tawdry crow @rigid meadow @dim yarrow 👋
On soonish
remember: you can't design everything upfront
make very early proofs-of-concept
those, alongside docs, help understand the design a lot
what was the context of the discussion?
I joined around when event driven design got mentioned
domain driven design and event driven design go together quite well
as close to the problem domain as possible
as much of the code as you can express in the domain terms, you should describe in the domain terms
it prioritises expressing code in the way that the business would talk about it
over things like database schemas, algorithms, etc.
DDD is also a collection of specific ideas/concepts
yeah, commands/methods/events should directly reflect the domain there
the naming matters a lot for it
@fast jolt 👋
that problem doesn't sound like something DDD might apply to, a lot of algorithmic and structural details
I don't know why it keeps doing this lately
you can provide a high-level API but the system design will largely be driven by resource and algorithm constraints
@rugged root have you heard of Rust the game?
DDD works well when there is almost no low-level design, when the implementation is almost one-to-one a translation of the specification
Heard? Yes. Played? No
from RPLCS:
Rust Programming Language Community Server
yeah, thank you
sorry
watching like 1000 content creators fight and negotiate on a "Earth" style custom map :3 it's fucking good
struct Speaker {
/// stuff the model recognised
properties: Option<Properties>,
/// do we actually want to identify speech as belonging to this speaker
recognition_enabled: bool,
}
enum SpeakerCommand {
UpdateProperties(Properties),
/// fails when no properties
EnableRecognition,
/// fails when no properties
DisableRecognition,
Delete,
}
enum SpeakerEvent {
PropertiesUpdated(Properties),
RecognitionEnabled,
RecognitionDisabled,
Deleted,
}
a very "when the only thing you have is a hammer, everything starts looking like a nail" approach
I'm gonna write a bot of Alisa's proverbs
applying some approach too broadly
actually it means not "you're limited to it", but "you're too used to it"
yes, that's the proper meaning of "vibe coding" -- for rapid prototyping rather than just not reading or writing the code at all
"choose what you vibe with" over "coding by vibes only"
humans don't remember either, but remembering everything is actually kind of counter-productive
the important role of abstraction is to reduce how much context you need
imo AI should have more of "past experience" in its context rather than current code base context, just like humans do
@vocal basin what was that quote "every line written by a human is a credit to..." (paraphrased)
AI industry is currently building basically a consultant that's just been invited onto a project
(and consultants, even human ones, aren't necessarily something that improves or progresses the codebase)
I don't use generative LLMs for coding or learning at all, because I prefer writing in a state that forces me to build simpler, more robust solutions
I just tried copilot and it failed me again
"what kind of YAML crimes did it manage to construct?"
@marble trench markup language that most of devops configuration uses nowadays
No it was simple. Using Azure Python SDK, get a list of all VMs and their private IP addresses

Windows and VSCode are suggesting me to use Copilot even despite my location, I wonder if they'd even function
one about Grammarly? or something else?
I don't have a CUDA-compatible GPU installed
I have 1050 Ti but it's not connected to anything
current GPU is RX 590, 8GB VRAM, but it's not ROCm-compatible
in any case for me it'd just be a toy
I can just buy an RTX card 
oh, amazing, the electronics store just had a slight caching issue
showed me that I had an active order that was open until today
@astral coral
Pytorch support is still very primitive
written in Rust 
I think I have that one since 2019
Core architecture is what sets MemryX solutions apart from competing AI alternatives. The hardware and software architectures were co-designed from the ground up.
@astral coral
generative language models specifically
TTS are LLMs too, and they're quite widespread, but that's not what people think of
thinking whether or not 5090 is worth it
I should look into cloud AI stuff
that's not just specific models
I wonder if Yandex or VK have something of that sort;
idk any other providers that are available in Russia
ah, also Sber has some cloud stuff
somehow parts of their UI look more ancient than AWS
@amber raptor remember how AWS have Elastic all over their naming?
I think SberBank are trying to copy it but with Evolution instead:
how to not risk Redis license claim: be in a country where US law doesn't apply
@whole bear yes
@whole bear yea, you're audible
@whole bear AI, cloud, AI inside the cloud, AI outside the cloud
Back when I get in the van
And AI built using cloud + cloud built using AI
Busy morning is busy
always has been
today I went to the office basically just to restart a computer
it was allegedly working
I did not believe it
so had to make sure
so was it working?
it was in fact not working
So you saved millions of seconds by turning it back on
Amazing
.wa short million of seconds in days
11.57 days
@jade mountain too lazy to be lazy
@rugged root there are no other dev containers, VSCode is the only way
@haughty pier the expectation is that you also have a proper IDE-ish access to the environment inside the container
do backups
if you can just lose weeks of data written accidentally, maybe something is wrong with your setup
w notepad. no downsides
notepad with vim bindings 
@rugged root target audience for that joke is likely very narrow
just plain ol notepad
Speaking of Windows.
Why windows made it difficult to use dmg or convert dmg to ttf or exe
isnt dmg a image file and a ttf is a font format?
Yes
I'd like to download the san-pro by apple : https://developer.apple.com/fonts/
I'm working on project
so I need this particular font in ttf
I would say who but Hemlock isn't reading
his cloud architecture is insane
is that some sort of euphemism
Glad to hear that!
It means you know you do have brain!
is mr robot like this? https://youtu.be/sCOvRnNr8N0
this is a real tutorial
camera: @Grawlix
https://www.lukabigpants.com
https://discord.gg/fVrsjdzTqD
https://twitter.com/lukabigpants
https://patreon.com/lukabigpants
He is wanna be hacker!
is this the hacker version of dracula flow?
Real hacker are in stealth mode!
Finnish is that even country?
yeah they made ultrakill and noita
I heard it was finnished long ago!
Are these finnish?
If they are finnish, how are they in business?
English ain't making sense!
ive got hideouts in the caverns they used to host pirate bay
where? wanna go
Hemlock have you tried yoga? /s
fungus
Purring is a vital function
@wicked egret I guess this must be the dog you're talking about, he is in China right now :
I hear an aussie
nahhh
define biologically man
Honestly dont feel caffeine but I dont drink coffee or energy drinks
XY chromosome and can reproduce.
don't use that phrase.
Jigar asking difficult q's
it's extremely inappropriate and uneducated
Okay
naah its being capable of conceiving a unit capable of reproduction within the same specie
biology on that topic is very complex, not even remotely close to binary or clearly definitive
Let me sum it up: Blah blah blah
Trump government tried to define and failed
womp womp
as such everyone in the US is legally female
???
hell yeah
Milien's pic not loading for everyone or just me?
In India we only have three gender category: Male, Female, Other.
Even if person claim them as Male and is not by birth male, can not choose Male as an option for legal reason.
Wait it loaded just as you deleted it
I haven't seen!
cos... people...
You missed the cat
normal Discord issues
I've been around since 2016 I know Discord got it's issues
team name must be : bald and bankrupt!
good channel
I really often encounter pfp loading problems, so I double-check on other browsers
I have Firefox and Zen networking setup very differently
so issues don't correlate as much
Firefox goes through a proxy, Zen goes through a VPN
You get wild ads man
You're clearly in the US, as you actually have yellow school buses
Interested in a nitrogen generator?
Yikes Jatty
temu ads
Cant say I've ever been recommended a body pillow
Buy mini asphalt factory!
Could use that here in romania
roads shitty af
going back to aus purely for better roads
What do you even use Temu for
it's such junk
good
Buy tower crane!
other things we've seen advertised:
- inflatable hangar
- marinated cockroach
- paver (asphalt truck)
OH GOD, THEY MESSED WITH DISCORD UI
discord has built in voice changer
@rugged root what about regressive rollout
They just updated it
regressive rolldown
ah, right bubblified
Okay it's not so different
or at least buttons being in a separate bubble like that
and sizes have changed
so eye and muscle memory is all screwed up
FIRE ALL FRONTEND PEOPLE
this looks a bit like Revolt, the Discord clone
especially the file button makes me think so
?
yeah, that's what I currently have, not yet updated
buttons in a bubble instead of a pane
smaller file upload (plus) button
and other margin/whatever changes
Hi , can u give me permission to speak
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
I forgot about the fact that I pay taxes on my salary so much that the last time I was calculating it I mistakenly assumed what I think of my salary is pre-tax and not post-tax lmao
oh wait not it's not a VN
I though you were talking about VN being hosted on a .gov
I think here we just get a "here's how much you owe us" letter in case stuff happens
and income tax is paid by the employer
this is some sort of intermediate state
why is it square-outlined
I'm getting some different update seems like
@molten pewter my favourite part of maga complaints was how they were annoyed at how difficult it is to debunk democrat talking points because they're... not lies[ unlike what republicans say, they implied I guess?]
censorship?
anyway this is what I was looking for: https://theonion.com/trump-unsure-what-department-he-has-to-cut-to-make-jd-vance-go-away/
so, yeah, it's stuck at this state
one button changed
should I try ScyllaDB 
DynamoDB interface without having to use AWS
@molten pewter is the thing you were coding with AI local-ish or cloud stuff?
(I forgot what it was about already)
MHIP
OAuth2 + probably manually implement the gateway protocol
though maybe discord.py might work with OAuth2 tokens
so the flow is:
you open your website,
it redirects to discord,
you click okay,
it redirects back to the website,
the backend acquires the token,
some service uses that token to interact with discord
TOKEN = os.getenv('DISCORD_TOKEN')
I return
discord, after authorisation, gives you a code which you exchange for a token
@rugged root we can't hear you if you're talking
I wasn't
Oh right
you need an HTTP server
You had the green circle thing
what you want to do can't work with the bot token, because it can't work as a bot
it's a bot token, not a you token
TTS needs access to the account via OAuth2 specifically
since acquiring token by extracting it from the browser is against the ToS
this is a rough outline of how things could work
you're**
@peak depot he doesnt need my sob story
shh
nerd
I use grammar bot anyway
annoying asf
Grammar bot told me to watch a youtube video
sucked
but it's spelling not grammar 
"Basic grammar for kids" thats what Grammar Bot recommended me bro
@still herald Yo
shit
found the video Grammar bot recommended me LMAO
https://www.youtube.com/watch?v=SzZmxP7bYTo&t=1s
Thousands of parents and educators are turning to the kids’ learning app that makes real learning truly fun. Try Kids Academy with
3-day FREE TRIAL! https://bit.ly/2GuGyL2
How to Learn Basic English Grammar Kids Academy
Want your child to learn Basic English grammar easily? If yes, then you have landed on the right place. Learning grammar ...
no u
@rugged root Can I borrow you for a second boss?
Borrow is crazy
mutably or immutably?
@molten pewter (they're not in the VC anymore)
@upper basin Open up a terminal as Admin and run wmic diskdrive get model, status
Rufus: Create bootable USB drives the easy way
Can't I use a vm instead of the usb by the way?
Possibly, but since Windows is having issues with it and you'd be passing it to Windows, I'm unsure if that'd work
short answer: no
VMs abstract drivers at a high level on the host and a low level in the guest
most of the time
I see.
it's unlikely for WSL to be of use either
for running software virtualised in any way with proper access to hardware the only way is Docker on Linux or illumos host
Apparently it opens with with phone hehe.
I plugged the usb c into the phone with a converter and opened it.
So, it's an OS thing.
I see. So what is vm mainly used for then?
Just higher level use-cases?
it's very much for isolating the guest from the hardware
either for security or to run something that the hardware can't natively run
I see.
latter also can be achieved with an emulator
So, it is mainly for software tasks, not hardware dependent ones? Am I understanding it correctly?
Panda Express?
I love american mall food court chinese food
Yeah, why u do this hemlock?
it department store just a less fancy mall
I guess we just don't actually have these idk what it's supposed to be
nvm, it's a single store 
@rugged root is learning meteorology considered Clarification
here many malls don't feel as much as just dull places for owners to make money, they're actually, like, places that are okay to be at even without buying anything
also, if you feel mcdonalds is bad food, try living on Russian supermarket meat
fast food is considerably healthier here compared to a lot of other stuff
do I understand correctly that I'm supposed to use the credit card to get the limit increased 
the bank threatened me to decrease the limit for me not using it but never actually did that
@upper basin How are things coming along with your issue?
Greetings LX!
It's an OS issue because it opened on phone, so trying Hemlock's idea now.
Salutations
Trying to do a live usb boot.
Oh ok
Feel free to guide me yall HEHE
@primal shadow I use a separate debit card for online payments
Do I just install Ubuntu desktop for it?
Copy that my lovely sir.
Have you got a bootable USB set up?
@vernal bridge yeah, same here too
no entering the pin online
obviously
also
here we have СБП
QR code payment
I have a USB. Not sure if it's bootable?
Yeah I have to got to my local library to get any work done
Couldn't today because I have a bad cold, so no work done 
Is this web based?
Under-promise over-deliver
Is that sarcasm? 😄
I actually quite like SQL, sometimes
very particularly formatted SQL
accept our lord and saviour of leading commas
no, that's a warcrime
I understand why, but I also hate it
Yeah I think that's what I used last time I had to do this
How about "non-inventory"?
inventoryn't
get_hypothetical_inventory
Or, get_all_product and subtract out the ones you have
👀
Cya @primal shadow 👋
why dark mode is darker than my dream!
Rabbit made a really good proposal. You can return a dataset where each product has two flags:
- out_of_stock: bool
- stocking: bool
@rugged root
For your case it would be True, False in that order.
I still have not made any real software involving HTMX
I'm not sure I'd consider this
It's hard problem anything where you have multiple status
Product is in stock. Product is out of stock because you sold it all but you plan on restocking. Product is out of stock because you have no plans to ever stock it (again)
I don't recommend the Bosch 500 series. It's dumb.
Sadly, it seems all appliance manufacturers are going this route. Where will we be in 5-10 years next time I need to buy a new dishwasher? Probably even worse off.
If you want to follow in the footsteps of my pain, by all means, here's an Amazon Affiliate link lol: https://amzn.to/4jgULZ1
M...
yah i need my dishwasher data saved to the cloud
"Using Azure Python SDK, get all VMs and their private IPs"
pov: vibe coding with AI in 2025
@kailentit
#funny #startups #siliconvalley #engineer
16258
we don't yet fully understand just how incompetent it actually is
@upper basin is it the same video?
I can't open instagram to check
Oh no, seems like a different video.
Would you like to see it on my screen?
It's really good hehe.
not currently
unexpected appearance
@gentle flint remember: if you can't explain why you're annoyed, you can always find an astrological excuse for that
"those who can't write, consult"
AI is kind of just an automated permanent-missing-context consultant
that you have to "onboard" over and over again
It's so clean
hey there!
controversial opinion: schools/colleges/universities shouldn't be forcing students to install malware
The only one of the bunch I actually use is this one
hadn't thought of that, but I'll remember it
thanks
i think i have seen people with 20 something mutual servers
But school is there to prepare us for the real world
where our employers and bad actors install spyware and malware
latest OpenAI model is $600 per 1M tokens iirc?
and bad
(not my claim and not a claim by someone I trust but heard something of that sort)
@flint hill you're mistaking the types of AI
even learning chess AIs don't actually rely on the learning part most of the time
primitive tree search is the main, critical part
LLMs are still mostly incapable of chess
I'm getting tired of meaningless AI talks...
I mean same
same thing over and over
the discussion does not evolve anywhere
woohoo I have successfully confirmed that philosophising is a real word
I think I've used it before but never actually checked the dictionary 
@full ether what do you call "direct method"? since that's not some existing term
yes, no
there's a paid Qt
but by default it's free
that is not something you ever ask a "real python expert" for
!paste
If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/
After pasting your code, save it by clicking the Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.
how did you ever end up knowing the words "pub-sub" and not knowing what a callback is
is this really the AI coding effect
yes, this is the result
ChatGPT what is pub/sub
ChatGPT I don't understand pub/sub please stop saying it
I wonder if Devin had such biases for mentioning stuff similar to how it refuses to push to main
-- Sorry, I cannot guide you through using a direct direct method on a meteor, since it's an anti-pattern, please use a callback instead.
-- What's a direct method?
-- Thanks for asking! You can look at the docs here: https://docs.python.org/direct-method.asp
for fun and "fun"
steampunk of engineering
do not ship to people who can complain, yes
@amber raptor we only recently removed Qt at work... out of backend services
@wind raptor also Kotlin Multiplatform
idk if it's usability is actually existent
I have smaller UI size configured so icons getting even smaller might be an issue for me
I just hate UI redesigns most of time, it feels like people making work
Rainbow Six Siege getting UI uprooted each season
I don't play spunk goggle wee wee games
me neither anymore
I'd expect the main menu still has a horrible bug but I don't want to download the game just to test it
menu is sectioned into subgrids that get/lose focus when hovered over
|a b|
|c| |d|
hovering over c, then a, then b, then d makes c highlight not d
okay, nvm, Revolt isn't as bubbly
so I guess I'm thinking of old Discord UI, like very old 
where's the extra bloated mode
you can bring the ✨ old ✨ UI for only $9.99 ✨
@wind raptor you remember they once removed it completely, right?
for a few weeks they deleted that whole UI part
and then brought it back
people count in channels
themes
I believe generally human programmers should "cite sources" for everything they used during writing a piece of code
so that'd be the equivalent of that for AI
@amber raptor nowadays AIs are writing the prompts so it's so many layers deep from any source thought that no one knows anymore
ohno the update happened
it lagged, completely unresponsive, for a second after initial load
okay, Onyx looks horrible on my second monitor
myeyes
still can't enable the send button
we have some architectural BS that prevents us from using RabbitMQ or similar things properly
so the only thing we can do is basically postgres
want to put aside stuff to process later => postgres
@wind raptor there is pubsub exchange
uh
what happened
what did I do
do I understand correctly that they moved the "typing..." thing to below the message box?
this was on that half-updated UI
wth
I think it' frozen now
the tab is dead
scrolled through the channel list
(not the newest UI)
(if you want screensharing, I can give)
can you send the dockerfile/whatever else?
got this issue fixed I was being dumb
How does everyone like the new User Interface for Discord?
ngl the ui redesign isnt bad, i just dont like the new icon/folders, everything else is fine
like why are the icons so small, and ewww its just ugly
and why so much padding on the top?
why do you need to tell my twice what server im viewing, having the line at the side bar was enough, i wish i could collapse the top, and get more vertical space for eveyrhting else
!stream 745015733238497330
✅ @terse garden can now stream until <t:1742960385:f>.
please run it one more time
i hope i can be online tomorrow when you guys hangout again
sorry i still don't have voice verification to talk
!stream 745015733238497330
✅ @terse garden can now stream until <t:1742962444:f>.
wow that was really super super smart way,
actually you summarized that pretty clear
ahhahaha 😉
window key + d
@wind raptor 👋
sorry, my hearing skills are quite bad lol
what quiz btw?
why are modern programmers obsessed with flattening the UI to such level?
mhm
well they use electron, I don't expect much of them
you can increase there size
PC issue
oki thanks
it might take lil while to adjust but I think new theme is fire
- don't use icons
use keyboard : )
hallo
there are also the docker filesystem mount volume flags, -v and --mount
hello there
However those aren't necessarily going to be available when the container runs
dont ask why i have 24 petabytes of storage on my servers
uh
Do you?
Because if you didn't, that's a good reason to not ask you why you do.
@somber heath sandwich :L
It appears as though I didn't need to ask the question to obtain the answer.
Alanis Nadine Morissette ( ə-LAN-iss MORR-iss-ET; born June 1, 1974) is a Canadian and American singer and songwriter. Known for her emotive mezzo-soprano voice and confessional songwriting, she became a cultural phenomenon during the mid 1990s and early 2000s. Morissette has sold more than 75 million records worldwide, making her one of the wo...
Nine men's morris is a strategy board game for two players dating at least to the Roman Empire. The game is also known as nine-man morris, mill, mills, the mill game, merels, merrills, merelles, marelles, morelles, and ninepenny marl in English. In North America, the game has also been called cowboy checkers, and its board is sometimes printed o...
Find your Scottish family tartan or clan crest, and discover a range of products to showcase your ancestry
Tartan
hol up lemme google it
is there a reason why you're spamming it here tho?
speaking to opal
ah
i jus noticed
OH DEAR GOD 😮
Like i could never comprehend what is excatly the purpose of ts@somber heath@astral coral
wdym? it colours code for easier readabiity?
I'm assuming
i thought that was inbuilt
maybe it does a better job?
OOO you're minimalist
I like my icons and I like having a auto-saved history
the rest just tagged along for the journey
looooooooooooool
anyone have any opinions on https://ploomber.io/ for free hosting?
Deploy apps from any framework with enterprise-grade features. Ploomber offers seamless authentication, custom domains, real-time analytics, and support for Streamlit, Dash, Docker, and more. Secure, flexible, and powerful deployment solutions for businesses.
no it's a free app hosting site, just learned about it today
Dinner time.
The free tier on https://ploomber.io/pricing/ looks like a better deal than https://coolify.io/pricing/ for something you just want to leave running over a year and can take sudden viral hits
@astral coral
I got this going on, https://808vac.com/visitors -- it checks unique visitors' geolocations to try to improve analytics
@tacit crane
"They don't know I self-host" - "look at that loser :L"
@tacit crane please say my name
The RPi 400 in my daughter's closet has to be quiescent because of a potential client lol
I think I figured out the organic google search hits strategy on 808vac.com, now if only the client would start using it for more than one or two listings per day which get gobbled up by her announcement mailing list which is mostly her competitors
Her competitors grab up reservations for her listings, but she doesn't list her competitors' listings on the site, possibly because it's new and she doesn't trust it yet, and thinks she can get in TOS trouble of some kind I don't exactly understand
Rotating the tagline blurb makes free organic Google search results pump
When she actually puts listings on it, that goes up to 2.5-3.5
with $0 on ads
The google spider is scraping it about once every two hours
400mg of Antipsychotic straight to the dome :L
Hello
not on the web client, atleast the web client in firefox
@somber heath Hello Opal!
How has your day been so far?
Us dude us!
I mean same happened to me!
yes
Did you made any project in python?
I mean new project
Hmm
Are there any plan on making project?
Xd
I wonder what do you do!
I mean it's mystery but I'm always curious to know!
Not just python but as occupation!
I do find your output quite interesting!
@void zenith Hello buddy?
#voice-verification
hello
i bad speak english, im from Ukraine
Oh, let me have a look!
Just a minute!
This is quite interesting to me!
I like how it get's lightier to the center and darker further away from center
It definitely looks hypnotic to me!
I like to see this same pattern in 3D
Imagine how would it look!
Hey hemlock!
@rugged root You can change it I guess!
Settings > Appearence
Okay, why is there such a HUGE difference between 90% and 100%
Idk, but you can change the settings.
I honestly liked the UI so far!
That's me
Banjo the mutated banjo frog.
For pyweek.
I don't know if I should use it for eating or barking (to lure NPC away from an area).
Looks more like a vocalisation.
What are the chances? My friend turned out to be both gay and an OnlyFans creator 😭
Not all that uncommon.
Better than my setup!
Oh, probably.
I feel like a tiny skeleton is going to jump out of this door:
I so don't want to have to deal with a lawn again...
Hnnnggggg
Operation Sea-Spray was a 1950 U.S. Navy secret biological warfare experiment in which Serratia marcescens and Bacillus globigii bacteria were sprayed over the San Francisco Bay Area in California, in order to determine how vulnerable a city like San Francisco may be to a bioweapon attack. There has been speculation that the experiment may have ...
US spends more on payment of interest than Pentagon Budget
1 trillion +
900 billion on Pentagon
Milien is in solitude
not sure why you say that
Sure, boomers fucked everything up and payment is becoming due
This is neat
"great to be a renter" words I never thought I'd hear
mmmmmmmmmmmmmmmmeeeeeeeeeeeeeeeeeeeeeeeeeoooooooooooooooooooooooooooowwwwwwwwwwwwwwwwwwwwwwwwwww
If the house has mold issues, you either battle your landlord or look for a new terrible landlord
kitties :3
There's a housing shortage in... America
In theory it sounds great, in reality, it sucks
I ❤️ my mortgage payment
it hasn't changed
no landlord to tell me I ower more per month this year
Taxes have barely budged in the last decade
America doesn't have Housing program like Singapore?
Yes
We have a program
corporations buy up houses
raise costs
and poeple odn't have homes
welcome to america
How comes it's developed country?
Like... all of these places boast open floor plans
Corporations should not be allowed to own residential homes
Also, why the hell are they putting fireplaces in
Who uses them anymore
If you want to run a commercial enterprise, you should pay land taxes accordingly
Also also, why do these fireplaces not have the like metal mesh to keep sparks from flying out
Like cool, it's pretty
"can't fix it"
but we can dismantle the government
who cares about all the poeple falling through the cracks in this mass "deregulation"
if people miss their social security, oh well
but if we might hurt corporations
the cost is just too hihg
people dying? That's practically free
woohoo SQL crimes
I'm telling the SQL police
What is that?
What's wrong with smoking pot?
Is it that much worse than all the alcoholism going round?
huh, new interface doesn't resend failed messages on reconnect it seems
Impressive
Hemlock is real target!
unless that's the whole selling point of the company's products
you can attempt to compete with kubernetes but reimplementing that as an implementation detail is uh
KURB BAN ETTIESSSSSSSSSSSSSSSSSSSSS
kubörnetes
