#voice-chat-text-0
1 messages Β· Page 529 of 1
Hello
it will end up costing more than devs
As long as it can work 24/7, they won't mind!
I think real questions can AI replace the job of DS, ML Engineer?
What u mean?
if we want to stagnate AI further, maybe
the industry will eat itself
Idk, your education credentials miss-match on LinkedIn.
Maybe because you have not updated it!
If AI can program AI, humanity is over!
if AI does program AI, AI is over
Hmm I saw something with this in some book I got called Life 3.0
I'm really getting into the ethics of AI
there are none
it's all unethical
Ohh yeah, I forgot to check linkedin in a while cause everyone their just post like "I am happy to announce I breathe 24 times in a minute"
unethics
ethicsn't
Ha ha
isn'tthic
I'd update fs
π
Learning atm
What about you?
thankfully I work on real and high performance software so I'm nowhere near "web" "3"
also distributed and actual decentralised software
unlike blockchain
I worked with web2 for a while now thinking for blockchain development.
Never heard of it?
Good for you, it is hectic to work on it.
You're likely working on backend and api, if I'm not wrong?
At the moment aka atm
Ahh
remember: if you can't fork and merge, it's not distributed and it's not decentralised
Got it
Do it!
Is growth of it is there?
For top 10% developer
Same for DS and ML
Anything which is crowded
Is it secure for future?
web3 is less crowded than web2
No..
I think you should do cybersec
If you care about a stable career
Yeah but in tech
Yeah that concerns me a lot stable carrier cause I am moving next year.
This is the best for stable growth and job
Everything else is risky and can be replaced by new technology
Okayy
Like AI has replaced most of front-end
But you know my gut feeling loves web thing
so I like learning these web technologies
Good for you
woohoo I found a (potential) bug thanks to must_use
Nice man, You are so friendly.
Where r u from if I may ask?
As long as you can be above average or best at it, you will get what you want in career
ofc
Web, DS/ML and ML is crowded
So you have to be good at what you do!
so Blockchain isn't?
Nah, not really
So a blockchain dev has more chances to get a job than other?
SO?
@somber heath what about NZ accent
A good web dev can do Blockchain development as well
They choose not to
NZ stands out quite a bit
So there aren't jobs for blockchain developers, I heard many ppl has blockchain developer somethin' job.
cryptocurrencies is another place where it's mostly scam and marketing not code
There are but, it can be replaced more likely
Wait so they can be replaced by AI?
I have no clue about the future..
I do think the barrier of entry is low in Blockchain development
You said they can be replaced more likely
If you love doing it, you can be.
And of course you have to be good at it
Yes as the barrier of entry is low
So you mean many ppl can enter in the field easily?
bcz barriers are low?
Indeed, especially web developers working in other tech stack
If you think about it that way then everyone should stop learning web development as well cause nowdays 12 year old kids can do js
A 12 year old can be a grandmaster in chess as well
Does that mean all of them are grandmasters?
yeah no doubt
It was a figure of speech mate
I remember the Web3 hype π₯
result = []
for letter in 'abc':
result.append(letter)```is roughly equivalent to```py
result = [letter for letter in 'abc']```Where the innermost of the loop, the append, is going on the left of the comprehension, then outermost in short of that point left to right.
@bright tinsel Unfortunately, almost all of the web developers that I know have worked with Blockchain
So the number of competitors are high and to survive one has to be best at it
result = []
for letter in 'abc':
for number in '123':
result.append(letter + number)``````py
result = [letter + number for letter in 'abc' for number in '123']```
https://leetcode.com/ @upbeat oasis easy and medium problems
@wise loom sup
hhhhhhhhhhh yeh
@whole bear look
i dont have mic
brah
i want strim
how
@whole bear
yeh but i dont know how
pc
i don't have permission
but while loop is hard
my name is amin
ohh
now im watch video for while loop
@whole palm can you hear me?
@wise loom we can hear you
hello @wise loom
brodie turn up yo speaker
why don't you talk then?
yep
@bright tinsel what are your thoughts on it:
https://youtube.com/shorts/OBuN0OgkBog?si=5IUydgr_43srMaJe
Trump made the American Dream tougher for you!
I didn't know a C++ VC was even possible
Trump is thinking "That's what you get if you buy gas/oil from Russia"
It's deeply controversial and making BRICS stronger, but Trump likes to gamble.
This is not the commentary I was expecting in a python discord
You expected more programming or..?
@whole palm kid, you can't call other people explaining to you how you misbehave "anger issues"
grow up
Nah I just came here because I started programming a few days ago since my course has a programming course I'll need to do later. And I've been crashing out because there's something wrong with a line of code and I can't explain why
@whole palm you left mid-convo
Pull up the code and give a sample here in the text channel.
Are you going to keep the code to yourself?
why would i argue with someone
when i apologized to them
and they are still gonna be ignorant
projecting?
Nah. Isn't nothing crazy
u missed the context
why would u want to bring urself in the middle of this
I saw the entire context
Why do people post screenshots of code and not the code. I don't get it.
this is not the first time you're behaving like a piece of shit
it was after this whole thing
when was the other time again ?
I know which line doesn't work. Everythinig else seems fine
Also it's too long to have it all in chat.
Nah, Trump is trying to boost popularity, H-1B have been controversial for a while.
I'll do it in parts
lying doesn't help your case
vector_list = []
def get_vectors():
print("Input mode activated")
while (numb := input("Enter a vector or enter quit: ")) != "quit":
vector = list(map(int, numb.split()))
vector_list.append(vector)
# Inplement Error expection when input is a string other than quit or a string or numbers
vector_log()
print("Input mode deactivated")
while [option := str(input("Would you like to continue to input vectors or return to main menu, Yes or No: ").lower())] != "yes" or "no":
print("That is an invalid option, try again") #This is doesn't work
if option.lower == "yes":
get_vectors()
elif option.lower == "no":
main_menu()
def vector_log():
for id,row in enumerate(vector_list, start = 1):
print(f"{id}. {row}")
def vector_addition():
print("Under progress")
def vector_subtraction():
print("Under progress")
def scalar_multiplication():
print("Under progress")
def dot_product():
print("Under progress")
def cross_product():
print("Under progress")
def element_wise_muliplication():
print("Under progress")
def magnitude():
print("Under progress")
def normalize():
print("Under progress")
def orthogonalization():
print("Under progress")
operations_func = {
1: vector_addition,
2: vector_subtraction,
3: scalar_multiplication,
4: dot_product,
5: cross_product,
6: element_wise_muliplication,
7: magnitude,
8: normalize,
9: orthogonalization
}
def operations_list():
operation = [
"Vector Addition",
"Vector Subtraction",
"Scalar Multiplication",
"Dot Product (Scalar Product)",
"Cross Product (Vector Product)",
"Element-Wise Multiplication",
"Magnitude",
"Normalize",
"Orthogonalization"
]
for id, op in enumerate(operation, start = 1):
print(f"{id}. {op}")
option = input("Enter which option to operate: ")
if option == "quit":
main_menu()
else:
try:
option = int(option)
func = operations_func.get(option)
if func:
func()
else:
print("invalid option")
except:
print("Enter that isn't a number or quit")
def main_menu():
while (prompt := int(input("1. Create vectors \n2. Vector log \n3. Operations \n input: "))) not in {1, 2, 3}:
print("Error: Invalid input")
if prompt == 1:
get_vectors()
elif prompt == 2:
vector_log()
elif prompt == 3:
operations_list()
main_menu()
!code @foggy ember
the first and last time we spoke before this was 2 days ago
i think anyone would remember a certain situation
lying doesn't help your case (part 2)
sorry dude, trying to cover up your own lies and missed context with this doesn't change anything
i was never rude about anyone
i quite clearly intended that this might be a description of them or not
a person i was very close with
yet even after apologizing they continue on a rant about old stuff
you were never apart of the conversation and the onlywant included in that was iko from the very start
2025-08-21
if they're so controversial, why do they still exist for so much time..
Another example of US government not listening to it's people
What's going on?
2023-01-14
ah i recall this conversation
anyone with a h1b1 visa been told to get to usa in under 24 hours by their companies
there was an altercation of someone spreading misinformation
appenrly
and its quite obvious in that converstaion mindful dev was on my side
@wind raptor opinion on this?
trumps imposed $100k annual fee on the employers
for any company for anyone with a h1b1 employee, and its per employee
tldr they getting as many ppl as possible into usa, then keep them for 11months and use that time to offshore the work or train usa employees
We will see
ofc
also a bit of context for you
maroloccio told me to tell him where i know him from
and thus i said what i said
the issue was with how you said it
dude
i said what i remembered
The hell is going on in this server π’ . I've been her like 15 min
i remember a person in that java server with the exact issue i described and he helped me alot in my personal life
nah it's in the chat
why don,t i have permission to speak in vcπ
the pizza one
that's not the part that Maroloccio took issue with
you telling "we had a conversation about how your parents were drug addicts, that's where I remember you from" was
who
which was only said several sentences away
do not bring up speculation so confidently
i think you can speculate everything
with the context of everyone knowing it was a speculation
you must be very egotistical to let that fly over your head
not phrased and toned like that
egotistical
get a dictionary
sorry like it or not, i mentioned it multiple times that it couldve totally been another person
this is generaly a culture clash between usa and eu companies @amber raptor
EU tends to have higher regulations then we do, that being said, I've seen GDPR violations where EU refuses to actually police things. See Meta and a million violations
because there is a higher demand for it, and customers are higher demand on long term performance and data securtity
where usa all about that sales and quartly profits
Nah, I've seen plenty of EU companies just offshore to us doing terrible things and then be like π€·ββοΈ They said they were "EU Regulation compliant"
its essentualy 2 diff corprate cutlures that are the diffrences between you and marolocoloP:)
i am just wathcing it burn and waiting for them to fix their crap of dropping vunrbalities onto ppl π
a "come to jesus moment"
there is some really baisic crap misisng from JS,
which is why they are all doing dumb shit like importing leftpad
and tbh npm is a huge problem as your imports for complication add soo much extra requried resorces, instead of you just writing those packages into your software yourself
hi everynyan
were you talking about invterviewing?
both of them: yes
soy el hombre papa, el hombre patata, el potato man
i was going to go do some trekking but rain poured over all the city π
i speak sometimes
im with wifey
so cant speak
nah its more than its weird to speak english when im with her
it gives me cringe
nah im ok here, just wanted to vibe
while coding a little
very square, not rounded
- For small utility functions we almost always re-implement them in our code.
- For large libraries [..] we include known-good, version-locked files and only upgrade occasionally, or when security fixes land. We read release notes, look at upstream changes, and test thoroughly before switching
Obsidian seems to re-implement small things themselves.
Their entire post seems like a huge CYA.
actually started playing silksong
good game
harder than hollow knight indeed
yeah this is the current reccomendation
and its not really for CYA its to litterly save hours of compile time in the cloud
Obsidian doesn't deserve to go out of business, unlike Oracle
Obsidian's products actually help people
unlike Oracle
always giving hate to oracle
ahahahaha
(i hate oci btw)
worst thing ever i had to work with
if we are talking about sham opensorce, lets start slamming redhat and ibm
@wise loom many of the open-source alternatives only exist and have features because they need to compete with Obsidian/Notion
we did have someone here who got cease-and-desist'ed by IBM for having a name too similar to their project
That's interesting because I believe Org-Mode is the reason Obsidian exists.
Specifically, the fact that Org-Mode is too complex to handle and Obsidian wants to make it easier, but also proprietary, centralized and they make a buck out of it.
no average sane person will use Org-Mode
I did, for 3-4 years.
average person isn't a programmer
many things inspired many other things
but Obsidian and Notion set the example of what people use and expect
-y is the argument to the command
- if Obsidian go open-source they still have a business model
i think you need to use ncal @wise loom instead of cal
ive been tempted to redo obsian with a sqlite backend, a distrabuted sql lite backaend tbh
cal is the old one
the data part is kind of unimpressive there
the UI is the main selling point
told you, its ncal
ngl data part is the only problem ive ever had with obsidan, that and lack of uuid support for notes
yeah, that's why saying whatever exists now is unimpressive
i would like to create my own obsidian just to be cool
they clearly didn't focus their attention on that
cool kids have their own knowledge management system
I am planning to make something related to note-taking
but there is a single specific goal: minimise writing obstacles
yeah my only counter pont over obsidian, notion, logseq, etc
open the app, start writing, close on save autosave
is that you have to adapt to their system
isntead of having them adapting to you, and if you want to you need plugins yadayada
logseq is even worse on its bullet point thingy
(web-only)
that page seems untrustable XD
@midnight agate "ranking"? (might've misheard)
I ordered pepperoni there again because that one is better than any single other one I ever ordered myself
Hello.
finally got my code to work tday
brb
we stopped using dokuwiki at work
in favour of Outline
STOP PUTTING CONTAINERS INSIDE VMS
is it a bad practice?
terrible practice
LXC better?
just run containers on the host
no VMs
Docker/podman/k8s/LXC, whatever
just not VMs
can I run Tailscale inside an LXC?
this took, like, 10 seconds to find
I just do a very revolutionary idea of having my own servers, IPs and domains
@worldly crane or just get an SBC
e.g. based on Intel N100/N200
covers most of simple hosting stuff
Flash Pocket NAS x86, Max 48GB RAM
CPU: one of N100,N200,i3-N305
@worldly crane @whole bear ^^
I hosted stuff for a long time on 8GB RAM
it did have a minecraft server at some point with >5 players
just don't go insane with mod count
unmodded is optimised with stuff like paper
both are fine
@wise loom you do need to clean it sometimes
even passively cooled
I agree
GTG
iko where are u
here?
from
π·π΄ Romania
which is located on Earth (allegedly)
Ebay makes sense if you're in US,AU,UK,DE,CA,SG,FR,IT
If not, you pay shipping costs to the nearest if your item ships out of there.
so each of your nodes runs proxmox?
yes, it's a cluster
calling black square pizza "Malevich" is quite an obvious pun in Russian but probably not as much internationally
i got a question for you people, when you work in something thats unknown (i mean really unknown) how can you make it work under agile? i was doing some spikes and research over some structures, but these are unknowns, i dont see how i can make it a simple task (ik ik i could just probably let the task be there for weeks on progress but you know how these companies are)
i honestly think the only thing that works under agile or how i've seen it used is for maintenance
@worldly crane I pay for electricity for five computers and the rest of the apartment, but I live in a cheap energy place, so ends up way less than the equivalent cloud costs
anything other than maintenance that may have unclear schedules or time required for research, it's being done, with progress meetings but definitely not agile
if by agile you mean scrum
what is cheap for you
wow
you can break research down into parts
i pay more than a hundred
it won't be one big simple task
it will be several small speculative tasks
yeah that makes sense for me, but thats the issue speculative
hello guys, how do i get access to a mic
scrum/kanban
Agile itself is largely speculative by design
short-term speculative
try that, see if it works
which is its own demise
check #voice-verification
rather than speculating long-term
instead of pretending that something can be planned upfront, being agile means you can cheaply give up time you already invested into speculation
thats a cool take
and avg wage here is like 600/month
I like organising stuff with GitHub-style issues
I used to do kanban in addition to that but gave up because of lack of automation
jira has automation
you can always have a hosted jira
OpenProject paid version has too
not really, not anymore
@vocal basin just hire 10 people to organise meetings and move tasks around the kanban board /s
we had at #### company, didnt know, they were pirating it then ahahah
iykyk
they likely allow you to remain on-prem if you've been paying them for some time
for new deployments they really push their own cloud
it was very very self-hosted
that jira looked like 2003 jira, not the actual one
looks worse, performs better
2003 jira probably works better than 2023 jira
it was so slow that it would take a minute to load the board
@worldly crane https://thinkprices.com/us?sort_price=asc
can't wait for Arc browser to turn into that
now that Atlassian owns them
it already crashes and performs poorly
already aligned well
(I tried running Arc on Win10 and it never lasted more than 5 minutes until crash)
the only differentiating feature is the unified tab-bookmark structure
which I kind of want
but it's implemented so poorly
it feels bad to move tabs
it crashes
also it's not Linux-compat I think
love i3
it took them a long time to do Windows 10
iirc they effectively ported Apple's UI stuff over
so it was kind of expected to workn't
former i3 user, current sway user
just realized i was defeaned all this time
looking into it
since i went apple i stopped using those thingies
was just writing "since i went apple" and a key just broke out of nowhere
but anyways
@worldly crane what u gonna use the nas for
on the qnap yes, 4 disks, 1 allowed to fail.
I think for basic stuff hdds would be the way to go since u have a lot @worldly crane
HDDs have longer lifespan than SSD/NVME, yes
ye
Guys any recommendations for the best course for python or best way to learn faster
Donβt rush things take time
you were right, shouldβve listened to you from very beginning
?resorces
Pick up any book on it and do the book π
The US imports minerals from Russia and the very same Russian oil from India.
I think the actual reason is that India refused to open its agriculture sector for US companies which employ over 60% of India's population..
Trump wants India to buy more and especially American farm products, India has 3 digits tariff on all American farm products
Yeah that's never going to happen, allowing US to enter India's agriculture sector.
US's Monsanto is very controversial about not allowing seed replanting from one harvest to the next, pitting neighboring farmers against each other if one uses certain products and the other doesn't.
John Deere creates full-dependence and vendor lock-in, blows apart RTR(right to repair) for farmers.
https://www.youtube.com/watch?v=CxVXvFOPIyQ
Unfortunately Monsanto has a presence in India, but they can't bully farmers like they do in the US, simply because of politics and farm law in India
Well, maybe India should kick out Monsanto
π₯²
Can't, it has monopoly in cotton and many other crops
If India wants to kick it out, it will. And surely India will have to retaliate with something on this H1B $100k/y thing now that it's in place.
π₯²
@whole bear it's incredible that Monsanto managed to enter India's agriculture sector..
just for herbicides and genetically modified seeds... surely India can make those too
@wise loom Yes India can produce its own but ability to assert patent rights of Monsanto is struck by High Court and Supreme Court of India
Technically Monsanto dominates India but it can't assert it's patent rights on India
They should kick it right out then, the sooner the better
But India doesn't have a replacement for Monsanto and farmers are hesitant to adopt new technology
One bad crop field and farmer would kill himself
India has enough chemical engineers to make a replacement for it.
Yes
Because farmers get the bare minimum for crops they sell and to make matters worse they take loans to produce new crops.
Yeah they are making a loss by selling it or barely any profit
you think it would be even worse without Monsanto?
And the loans are high because.. Monsanto prices are high?
It should really be analyzed why those prices are high. If it's because of Monsanto having high prices, it should be kicked out immediately.
Yes, unlike western countries, Indian farmers don't have their own land most are small farmers with small block of land or no land
so they invest all of the money for crops, etc to cultivate land not owned by them
If they sell, 50% of revenue goes to land owner
And 50% for former
Yes but I was asking you, why the loan prices are high. And what are the loans spent on, on Monsanto products?
In most case the loan is for seeds, fertilizer, etc and personal expenses.
To make matters worse most loan range in between 2k to 5k inr which is roughly 50$, yes Indian farmers struggle to pay 50$ these loans have low or no interest
To pay these loans they borrow another
And eventually it compounds
Average debt is around 500$ on agriculture household in India
Idk, I think the Gov should offer subsidies to the farmers. Also because food production is one of the most important and fundamental things in an economy.
They do
And they should kick out Monsanto ASAP
I donβt even understand how Monsanto managed to enter India
Just like it did in US
The Indian government cannot kick the Monsanto.
Supreme Court of India will stop the resolution in action
Monsanto is private company protected by the laws for private company
Not anymore
It is acquired by bayer
Bayer control and operates MIL in India
@wise loom India is vulnerable, Reserve Bank of India (RBI) pumps the value of INR artificially to make it strong.
If RBI stops this, India will face deflation and the average Indian would be much poor, but in the long run it will be competitive like vietnam.
This is the very same reason why manufacturing is yet to be a significant contributor to India's economy and most Indians are in farming.
Idk, why does the Indian Government choose to strengthen INR despite having weak manufacturing.
If India had deflation it would be a nightmare for farmers...
Farmers fear deflation!
RBI should let INR in freefall!
Many farmers will die but India will gain it's strength in manufacturing
what are your thoughts @wise loom
<@&831776746206265384>
!ban 781119470864433152 crypt0 scam
:incoming_envelope: :ok_hand: applied ban to @fair wing permanently.
Hello there captain
Hello @whole bear
Thanks
Hello hajj
Hello CipherGuard
How are you doing
Iβm okay , howβre you doing?
AI is being used to determine your healthcare coverage, to set the price of your premium, and to dictate the level of care you receive⦠if any.
Sources:
ProPublica https://www.propublica.org/article/cigna-pxdx-medical-health-insurance-rejection-claims
ProPublica https://www.propublica.org/article/evicore-health-insurance-denials-cigna-unitedh...
hi
Thanks to AI, say goodbye to medical services
might be making some FFI stuff for async Rust today
(or not doing anything at all, also a possibility)
Core traits and types for asynchronous operations in Rust.
Asynchronous sinks
API documentation for the Rust route_sink crate.
these three
primarily, this needs to be compatible with FFI
TryStream<Item = Item, Error = E>
+ Sink<(Msg,), Error = E>
+ ReadyRoute<Route, Msg, Error = E>
Hello, I am new to the server
welcome
previous stuff like that I used abi_stable for
but
that crate is abandoned
so now switching to stabby
Thanks. Do you guys use tools to code? I ask because I am not fluent in coding but I use cursor
Right
@wind raptor 6 is theoretically within possible, however 37 might be problematic
ah, I remembered why I didn't entirely want to go with stabby
not having the full control over the layout
What channel would I check out to have someone kinda check out what I am doing and get a new point of view. It's kinda far out there
Yes, I just have to use ai tools. And like he said, they are not the best.
What about a concept? Forget the coding part. I am trying to build a true digital brain. It's in python. I think you would call in nlp
To ask someone to look at code would be alot
I didn't hear anything you said
Can I put a document in chat
As long as it's not written by AI, sure.
So i can't put a document my tool wrote?
what tool is that?
the summer π of the concept?
Lol,
Summary
@royal patio "digital brain" is a weekend project your professor assigned to you as homework?
@royal patio before doing a "digital brain", you should do a full OS as well to overtake Microsoft and MacOS
It a hobby, I am disabled and I work on this for fun
I remember there were attempts to replicate neurons in hardware
but it's still vapourware
everyone just went with linear NPUs
I just like trying different stuff
I'm having difficulty with a while loop
Cortical Labs in Australia is doing it, they have working prototypes
I just have a little script, just a starting point.
I make a lot of chtbots, use local ollama models
Im using gpt-oss for everything right now
You already have a little script? I remember when I had a little script once..
Lol,
@royal patio do you understand the code output of the LLMs?
are you able to verify that it does what you expect
if no, learn how to do that
!stream 1318626588560199692
β @woeful blaze can now stream until <t:1758468207:f>.
I am learning how it thinks down to the token level. I play with temp setting for now but I don't like how the models are trained. And I like teaching, so it a concept about teaching a blank mind. I can simulate it with some of my apps. But there are still safe guards that don't like built in.
I have 1 simulator that does 12 llm calls with 20 prompts
You can buy some H100s from NVidia and crush the competition.
Sam Altman won't stand a chance.
@royal patio do you have a process of checking whether, for example, code like this is valid?
def example() -> (int, int):
return (1, 2)
the type of code that LLMs will eventually generate
did you use Claude to generate this code? it looks very well crafted
it looks like something GPT2 would've made
@somber heath https://www.youtube.com/watch?v=KCGUNpzjD6M
"F*ckin' Aussies!" - Kangaroo Island Wildlife Park tricks Scottish reporter into handling dangerous 'drop bear'.
More: http://7news.link/t8FQ8q
Subscribe to 7NEWS Β» https://7news.link/7NewsSubscribe
Connect with 7NEWS online
Visit Β» http://7NEWS.com.au
Find 7NEWS on Facebook Β» https://7news.link/0tdk4A
Follow 7NEWS on Twitter Β» https://...
To be fair, they do have very sharp pointy claws.
can you read this? i mean you ppl in vc0
i can read you brother
like a book?
Haha
you wanna get 25 massages? there's nothing wrong with that
this is the thing I have 0 rizz and no subject to talk about
Degree C?
.wa s 300 f to c
148.9 Β°C (degrees Celsius)
hmm
application code in Python, library code in whatever
as in "I don't write anything other than Python" type of approach
there is a certain class of games which are mostly made in Python
with one specific extension thereof
!code
Back in a bit. Gotta make my kids some lunch.
i should be going now, cya guys
bye
@solid inlet π
@peak depot the funniest quote I heard in a podcast so far:
"plus, it's especially notable that every next scene comes after the previous one"
this is, like, peak "I have absolutely nothing to say" moment
(translated from Russian)
cats
@fossil barn π
hibro
there needs to be a moderator already in the VC
@surreal sedge @latent moss π
Hello there!
hello!
respect to @somber heath for saying hello to everyone
well how can i get voice verification?
@somber heath
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
well guess i gotta get 25msgs
@somber heath instructions unclear, pressed the button, missiles launched
or as we call them, seismic communication devices
oh nah
result = sum((lambda f: [f(x) for x in range(1, 10)])(lambda x: x2 + x % 3 if x & 1 else x0.5))
print(result)
179
57
You may wish to chat with the #cybersecurity and #unix channels. However, be advised...
!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.
Ok
We generally don't engage in the discussion of the practicalities of red-team subject matter.
@flint dust π
Hello sir
@somber heath back to work
@south fable π
vibe-o-graphics
Hello sir
Hoy hi. π
I can't do anything to help you
Hello
Good
watching S line
This drama is fed up
yes
Idk
It is like horror
theme of drama is body count
what are you doing?
what kind of coffe?
idk why this server has this 3d voice chat ban it's not like anyone would raid a python server
right now I'm eating dragon fruit, Idk why but eating this exotic fruit changes the color of poop
Mentally stable folks
They make attachment with stranger online if thing went wrong they would behave like child
troll, abuse, so on
well yeah i get that lol, some programmers are scary asf lol
brb
ah
i just started learning python like 2d ago, i mainly wanted to just use vc bcs I prefer using vc's over text chat
i think for someone like me the 9 minute block thing will end up taking over a week lol
i barely chat in servers
i mean msg count is 25 messages right, shouldnt the blocks like prob make up for that
can you go in depth and explain setter, getter and deleters to me
i was watching a OOP tutorial and he was using that
for python
i already finished classes
and parent classes
Lentilmen.
and methodclasses as well as staticclasses
i went through the whole oop thign it was like 6 20 minute videos
yeah rn i'm watching a 12hr python course by Bro Code
around 4 hours in atm
i've just been using chat gpt to test me lol
i think i'm prob learning python faster than other people because I have a luau background and it's like 80% similar to python from what i've learned so far minus some tiny tweaks like if statments and else and elif and then turning into : etc.
I've been wroking on this little catalog project on Roblox for like 2 1/2 months
Damn as per google I have cancer
yeah
but i've done sequel and a little of Java which is sorta similar, but lua is by far like near 1:1 to python from what i've seen so far
If you could make use of lang to its full potential you have every right to be judge
!e ```py
class Square:
def init(self, side):
self.side = side
@classmethod
def from_perimeter(cls, perimeter):
return cls(perimeter / 4)
foo = Square(1)
bar = Square.from_perimeter(1)
print(foo.side)
print(bar.side)```An example use case for a classmethod decorator as part of an alternate constructor to __init__ for the class.
:white_check_mark: Your 3.13 eval job has completed with return code 0.
001 | 1
002 | 0.25
I'd like to ask a quick question, which is correct : grub or grub2 for theme
in Fedora
If you could help you out it would be great!
Bye
Have a great one!
I expect they would alias to the same thing if both are there, but that's an unqualified guess.
I'm trying to get my regex on. Even my Python is feeling like I'm grasping around in the dark.
Yeah, I love it, too, but it doesn't love me.
It's all very unrequited.
Yeah...
Has the cheetsheets and the active matching displays and soforth, mm.
Dynamic.
I'm trying to grab indentation blocks. Like if I was to grab every for loop in code, or every while loop and the text of the enclosed. It's not Python code I'm reading, but that's the shape of the problem.
I write something I think should do it, and I set the multiline flag and everything and it's just...sad trombone noises.
@peak depot clearly, peaceful victory
GitHub Actions workflow failed mail notifications but with actual mail
@vocal basin as your name is UEFI you do understand grub?
@wind raptor wdym lock up?
I'm trying to change the theme of grub
unless it's white-on-white with white borders, why change
This presentation was recorded at GOTO Amsterdam 2023. #GOTOcon #GOTOams
https://gotoams.nl
Mark Rendle - Creator of Visual ReCode with 7 Microsoft MVP Awards & 30+ Years of Experience Building Software @that_rendle
RESOURCES
https://twitter.com/markrendle
https://github.com/markrendle
https://linkedin.com/in/markrendle
ABSTRACT
Most of the ...
first one there
Restart from the very beginning
personally I run unfuck.bin
which is a 64-bit ELF executable
it's compiled on exclusively gpl-compliant hardware and software and whenever I run it it makes a snarky comment
written in the most famous framework, Gupta SQLWindows
...what
oh that's an actual thing
til
"it should be" rather than "it should be"
now you've certainly got me confused
"tones should be the same" means either "I think those are same" or "they should be made same"
ah, I see
with the should referring to your degree of certainty rather than your personal opinion
smoke alarm being fully alarmful about its batterilessnes would be an interesting design choice
sentient smoke alarm
the smoke already does uprisings
soon the smoke alarms too
if anything is alarming that should be
before and after
"Hey! Hey, you up there! You mess with the valve, you get the shank, you get me?"
screwdriver, maybe
The new annual fee for new U.S. work visa applicants threatens to upend the tech sector's talent pipeline, which includes large numbers of non-U.S. workers.
Subscribe to us on YouTube: http://ow.ly/Zvqj30aIsgY
Follow us on:
Facebook: https://www.facebook.com/cgtnafrica/
Twitter: https://twitter.com/cgtnafrica
Instagram: https://www.insta...
this
!stream 1186943801558831168
β @craggy vale can now stream until <t:1758549521:f>.
@timid quartz π
sigh
@amber raptor Do you use fedora linux?
i aint ever gnna have my first amendment right ever again
I need help
also likely doesn't want to
chris free me brooooo
are u mutted to cuh
Can I get in contact with Linux trovald
He should be thankful that I'm approaching him for help
reminder that Linus didn't bother with Debian because it was too difficult to install
Troll
that's the point
the only subject he didn't hate was guns, probably
@peak depot in USA, whenever you collect too many conflicting ideologies together in your head, gun just randomly spawns in your hands
probably that's how it works
@hearty raven @mossy harbor π
My mic is blocked
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@obtuse pilot π
Hi everyone!π)
why am i not allowed to speak in voice channel? π₯²
Check #voice-verification
.
thanks
salt takes the cake
great i can use your voice for villain in my game
or an air siren
damn i can use it as my alarm's ringtone
i missed my math class
cuz i
woke up
late
π₯
where's opal
hes in australia
where in australia π
nuclear seismic communication research centre
@winged copper π
Finally π
Bios theme update in fedora 43 beta completed
Manually...
Thanx Linux trovald
Have a nice day
A simple fix was :
Ping mod in fedora discord.
Rage bait them, and they provided me solution
hello
It looked much better in demo
I got baited...
I should have chosen simple theme
!stream 856263284764311583
β @echo bison can now stream until <t:1758555489:f>.
Sup
Good, and you?
Tired trying to learn how to make my own body cream
nice
seems like not
without speaking mistakes, 0
I can only properly read/listen to English and Russian
and random pieces of trivia for other languages
Maro knows several
the language I learned the most besides those (and excluding Ukrainian/Belarusian which are quite close to Russian), was Esperanto
but I don't remember much of that
I'm trying to find ingredients for a budget
I slept three hours
i hate this format, who tf thought this was any good
perl
is a 60s format, and people still use it nowadays
@peak depot oligarbus
rich people replace busses to get more money
π
I really prefer not talking to neighbours
+1
@vocal basinare u banned to cuh
can you speak proper English?
excuse you
=> fix your English first, talk later
why are you so upset
we dont have the concept of "it" and most of words are based on "him" in spanish
disappointed, not upset
u sound upset
So many people here
Solar panels
well now we see the result
for sure
but when i say rude stuff i get introuble
alrightttt
@dry jasper but does it produce its own solar panel replacement
Lol
i cant speak with this allergy, i hate spring
nahh at least weimar era
@peak depot it's been free for a while iirc?
as in that version
yes
sounds right
nothing wrong with that
the drone game? or some other one?
it's for drafting kids into military
not for playing
everyone knows anyway
hows that game called?
nofuckingclue.exe
XD
@dry jasper extra points for admission, total is up to 10
its like a sim @dry jasper ?
idk how much that specifically gives
ΠΠ° ΠΏΠ»Π°Π½Π΅ΡΡ ΠΠΈΠ½Π΅ΡΠΌΠ° Π²ΡΡΠ°Π΄ΠΈΠ»ΠΈΡΡ ΠΊΠΎΠΌΠ°Π½Π΄Π° ΠΏΠ΅ΡΠ²ΠΎΠΏΡΠΎΡ ΠΎΠ΄ΡΠ΅Π² Ρ ΠΠ΅ΡΠ»ΠΎΠ³ΠΈ. ΠΡ ΡΠ΅Π»Ρ β ΠΈΡΡΠ»Π΅Π΄ΠΎΠ²Π°ΡΡ Π»Π°Π½Π΄ΡΠ°ΡΡ, ΡΠ»ΠΎΡΡ ΠΈ ΡΠ°ΡΠ½Ρ, ΡΡΠΎΠ±Ρ ΡΠΎΠ·Π΄Π°ΡΡ Π·Π΄Π΅ΡΡ ΠΏΠ΅ΡΠ΅Π΄ΠΎΠ²ΡΡ Π½Π°ΡΡΠ½ΡΡ ΡΡΠ°Π½ΡΠΈΡ.
ΠΡ β ΠΎΠΏΠ΅ΡΠ°ΡΠΎΡ ΠΊΠ²Π°Π΄ΡΠΎΠΊΠΎΠΏΡΠ΅ΡΠ°, ΠΊβ¦
probably 1
Russiaβs Covert Child Soldier Program Exposed: From Video Games to Battlefield Drones
In this shocking investigation, Tatsiana βTanyaβ Ashurkevich (https://x.com/tashurkevich) and Christo Grozev (https://x.com/christogrozev) reveal how the Russian government is secretly grooming children to support its war in Ukraine. What if the next wav...
definitely enders game
features such classics as incompetent representatives speaking to journalists without a clue of why they're being contacted in the first place
good opportunity to learn russian
!stream 1258548535108964363
β @rapid jungle can now stream until <t:1758562795:f>.
oh no, partial differentation
@rapid jungle the issue is that on a spacetime-space (which 4-dimentional) you use relativity for time dillation-contraction not forward-backward, so what a wormhole would do is just accelerate you through that dimension if you, would teorethically would use the bending of the spacetime plane
you would never go backwards, thats even impossible as we only have the time dimension as a "metric", is not something factual like distance, mass, volume, etc
time is directional as is the enthropy being higher, thats our timeline
there is no actual dimension
thx for my ted talk
we only treat time as a dimension because is easier to calculate, is just a representation
I'm still really not sure about the distributed libSQL
which exists
I kind of like SQLite for being explicitly non-distributed
!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.
its for when you wanna shard your applicaition
so that you can send stuff to the sql lite on someones phone
yes, I of course understand what it's for
this sounds unrelated
sharding is not that
it is for this
as you can shard a local cached copy of the relevent user data
wrong term, but okay
that they need access to on their small devices, tehn have the data sent back to the main database
but its done using the replication and HA tools opposed to the normal cacheing database tools
sharding is about horizontal scaling
sounds more like sync or, as you said, just caching
and homogeneity is critical for it
@wooden abyss least effort, maybe
not necessarily fastest
this is not the only way
and do be aware that it affects the results
look into more precise tools
(just don't forget to disable AI stuff)
@wind raptor while loop is hard
yeh
while True:
num = int(input("enter a number :"))
if num % 2 == 0:
print("even total")
break
else:
print()
i Tink i have watch videos for while
@wind raptor how to get role video i want strim
ok
whats a good way to learn python?
Do you like videos or books?
yeah
wym yeah
i fw both
A Page in : Automate the Boring Stuff with Python
Master Python from scratch π No fluffβjust clear, practical coding skills to kickstart your journey!
β€οΈ Join this channel to get access to perks:
https://www.youtube.com/channel/UCWv7vMbMWH4-V0ZXdmDpPBA/join
π Want to dive deeper?
- Check out my Python mastery course: https://mosh.link/python-course
- Subscribe for more awesome Py...
appreciate it
there's one more
No problem
@near jacinth sup
wait wrong acc...
srr
hows doing
your clone of git what happened there?
@wind raptor
i wanna knows its progress..
oh... still nice
a what?
@craggy vale are you cross compiling it to c or you just run it as regular c-python
?
I'm making this in python
yeah
