#voice-chat-text-0
1 messages Β· Page 448 of 1
I'm joking
ok
Wanna play a game of chess?
Naa, I'm good. Gotta go soon.
maybe I should close a few tabs
Mine sleep.
.... .. .... ..?
Please stop. this is spammy and does not add to any conversation
When I type with my keyboard on my laptop.
This is what happens
Now I'm on my phone
All the time or just there?
How do you think that helps prove anything
even if you end up typing dots for whatever reason, there is generally an option not to click the send button
My laptop is in bad shape
show a vid of you typing with the dots appearing in their place and I'd believe it
From display to keyboard to touchpad
until then, I am in complete disbelief
Also you sent the messages
if my messages looked like that, I would not send them
Proving you won't fix my computer
it's ridiculous that you'd think we'd believe that
ooooooh here
wtf
Hello π
How are you today?
Now I'm on my phone, so you don't have to think about dots
hi bro
If you like you can mute me
good, u?
The fact that you are not willing to drop the act is crazy
I don't care that much. Just calling it as I see it
It's not something I'd ever mute over unless you kept spamming chat with dots
Well I wasn't trying to spam
I typed "what is going on?"
Helo
I get that. It was probably something you thought would be funny.
you don't need to defend or explain why you were sending dots, or even apologise
told not to send dots => just stop sending dots
exactly
Am I sending dots?
It really wasn't a big deal
this is irrelevant to the message you replied to
it clearly assumes you did
okay time to restart chrome I think
swap file got only 0.5GB smaller
perfectly balanced
so much unused potential
oh I found one thing that changing the GH username broke
obviously DNS-related
if something is broken, the probability of it being DNS is always high
brb
@whole bear here
here is the repo
oi
I accidentally closed the browser lmao
be back in a minute
I switched to a different VPN
it seems to work so far
yes
@celest oyster I think it was you who mentioned that Firefox did not work with Discord+VPN but Chrome did;
without extra config it was the same for me
but
what helped:
disabling DNS Routing and Strict Route
it might be named differently in other VPN clients
@whole bear Tor, byedpi and SOCKS5 in general work great
but
not for voice
because WebRTC is UDP
and SOCKS5+UDP is non-trivial
also WebRTC is a security hole, as such Tor adding support for it is unlikely
@whole bear I think presence message can be disabled per game
somewhere in settings
in case they want to
oh, and also obviously switching from proxy to vpn mode (Chrome didn't work in proxy mode fully either)
i am lucky my country doesnt have censuring
in sites like discord ...
@ivory stump Yo I wanna try to keep this as minimum as possible. How are you?
it wasn't me
calm down brother @patent hazel
@vocal basin do you know anything about PCB design?
I was thinking designing a small ESP32 w BLE and Silver Chloride ribbon to make a small electric sensor where a series of these could act like EEG chips
I just learnt about a thing called "spacetime db"
guys anyone works with github actions, i need your help??
what's the problem?
i having python build package for different platforms and python version and architecture
how can i have all the artifacts of a platform in single artifact file??
are you including any non python code? if yes, what language are you using
i am trying to solve Robyn's ci problem, due to this:
Failed to CreateArtifact: Received non-retryable error: Failed request: (409) Conflict: an artifact with this name already exists on the workflow run
only just python files and wheel files
yeah, then that explains the conflict
architecture is irrelevant when there's only python
and python versions are generally just a metadata thing, so for python only projects the same thing as with architecture
since there is no ABI involved
conflicts is due to having multiple jobs which are creating same artifacts with name as wheels
before v4 it was working fine,
now i researched whole day understanding things and solved the problem
but issue is having around 24 jobs which gonna create 24 files which i don't found
seems to be supporting dynamically loading Rust; moreover using their own system for that rather than stabby or abi_stable I think
in cross-linux abi is used
also every job gets stepped to use a target like arm, x86 or 64 and build for different python versions also from 3.9 to 3.12
check this out
https://github.com/sparckles/Robyn/actions/runs/13894555317
how does the resulting wheel differ across python target versions and architectures?
don't know but maybe it's using rust, so it compiles rust binary and package it as wheel package
i thought that rust binary gets bundled inside wheel package
which changes the situation completely which means at least the conflict is an actual issue and not just misuse of build matrix
well, that was the whole point of the original question
whether there is anything actually getting built
leave it, i solved the problem
of same artifact name conflict
now problem is how to bundle them all files in os/platform specific artifact file
see this screenshot, it's of version where we uses artifact-v3 and their is no issue of same name conflict in that
here you can see, we just have wheel files compiled for platform, version, architecture specific + python source code
i think these wheel files are just binaries only with rust
and python source code having definition around it
.github/workflows/release-CI.yml line 163
name: wheels```
don't know
maybe due to having wheels only
thanks
but i solved that problem
i am testing it, it's in my fork
there's a way to rebundle them in one archive afterwards
using download-artifact iirc
if for whatever reason anyone still needs one big wheels.zip
currently it's gonna create 28 files, i am thinking of it to group them by platform+architecture
i think no one uses it directly, all wheel files gets uploaded to pypy from one big wheels.zip file
normally for a release you'd be putting those in attachments rather than artifacts, but that has a bunch of other race condition and conflict issues
i just find artifact thing only and can you clarify little bit??
I mean the actions that automatically create the release in the repository
the official one is currently unmaintained but it provides the list of maintained ones
it's also a fairly trivial action, especially if you can assume things about the environment, might as well be part of the project
in releases, it just have source code in zip file, no wheel files available there
and they have manual release after 2-4 weeks
for release builds I don't actually use GitHub; instead, another platform that supports all the same actions with extra support for ones written in Go;
my current workflow goes like this:
I run a single short command tagit tag (yes, it's proprietary, but it's trivial to reimplement) that grabs the version from the project files (supports multi-crate environments too)
it then automatically creates appropriate tags, puts the original commit datetime onto them, signs them and pushes them
(also retags major and minor versions the same way)
once the server is hit with a semver-looking tag, it starts the build process
when the build is successful, it creates the release and puts all the binaries as its attachments
(it also hides the source archive from the attachment list so it's not as distracting)
having the only two manual steps be changing the version and running one command made my life so much simpler and less stressful
are you talking about?? act?
Forgejo Actions, built on top of nektos/act
I'm almost done with the initial feature set of the SQL thing I was working on
17.5K lines of code
in 10 days
243 commits
so one commit an hour on average
including files sized:
5.7K
4.9K
2.1K
1.6K
first deals with sqlite, second deals with postgres
because sqlite does less on its own
and splitting the code into modules doesn't make sense yet
I have not regretted having such big files even once yet
being able to just ctrl+f and/or visually see things highlighted in the scrollbar is too useful
rust-analyzer isn't struggling much either
I have minimap disabled
ah
I don't use that either generally, but it's supported in Rust
I don't really like to deal with extra panes/dialogue windows/whatever
and, no, neovim isn't a solution to that because it has those too
I've only recently enabled breadcrumbs
I lived for a very long time without them
and the only reason I have them enabled is because I have settings sync between the laptop and the PC
and the laptop has a higher resolution screen
so there breadcrumbs don't annoy me by taking up space
how do I disable those in zen mode 
ugh
I should've used zen mode more often when writing this
I actually forgot it existed
@echo creek π
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
> asks a question
> invents the answer
> opens as GH issue to implement it
> posts the answer as if it works
> gets the issue closed as not planned
I've checked the timestamps
"gaslight the devs into believing it's part of the spec so that they now have to implement it"
(may be)
> posts the answer as if it works
this part is where the respect should've been lost
if you're trying to do the classic SO thing of "post a wrong answer to get corrected", then... maybe just don't use the same account
Where's who?
if you try hard enough, Russian is Turkic too Β―_(γ)_/Β―
is it with umlaut nowadays?
TΓΌrkiye
/nick
like in Minecraft Discord
Morn.
@quartz beacon it is actually related, there are even scientific papers on that effect afaik
!stream @quartz beacon
β @quartz beacon can now stream until <t:1743948441:f>.
I'm too scared of trying to copy the id anymore, the UI is broken
this button
does not work
clicking this does literal nothing in the browser
Okay, boy I was wrong. Morn is Lurian.
the buttons being close isn't a problem for me currently
Which is better mac mini or macbook air (M4)?
depends on the use case
Overall which is best?
Do you want to carry around a monitor?
I have an air m3 and it's awesome
But I needed it to be portable
I have a way better pc that I use normally
So do you use it for Graphic Intensive work?
Your main PC is windows based?
yeah
Damn, switching from windows to mac and vice verse would be hellish!
naa, it's not bad at all and keeps your skills on any type of pc up
if I'm still alive and employed by the end of the year, there's a non-zero probability I'd buy a mac book
Tbh I have 500 dollar in my hand right now.
I can opt for another 500 dollar on credit card to purchase macbook air or base macbook .
What should I do?
for some reason I thought fingernails
...yeah...so did I...
(do not attempt picturing that)
@desert summit π
for the CPU and the OS
I don't tell people how to spend their money. You should research all of your options and make an educated decision based on your findings
Okay
What are the worst thing about mac?
that you have experienced?
apple
(also the best thing about mac)
it's a somewhat isolated ecosystem
Whenever I upgrade/build a pc, I take a day or two to become a pseudo expert so that I can choose the best parts for what I need.
Tech changes very quickly, so research is imperitive
I just impulse buy the only sane thing available most of the time
when I bought 8700F, the store literally did not have anything better for a reasonable price
same goes for the motherboard
I will not purchase windows.
It's absolute waste of money in Laptop.
I have 1200 dollar windows laptop now, I want to get rid of it!
blue screen , automated update even after changing settings, buggy UI in 120% scale, many more reason
@somber heath hey man, sandwich?
Hi
Jut got it repaired.
Now I got buyer to sell this crap at 1/3 cost.
brb
https://youtu.be/F3CYj37bxDE?si=AQaoE0guIPLKhx9h
If I choose mac mini, I can upgrade it's SSD to 1TB to 2TB at low cost.
I can't do the same in Mac book Air
In this video, we break down the technical and legal aspects of our SSD design compatible for the M4 Mac Mini, the challenges we faced, and why we stayed true to Apple's engineering standards while creating something truly unique.
.
π Whatβs covered Inside the Video?
β
The thought process behind our SSD design
β
How we avoided legal tro...
@warm blaze π
?
hey
why some country are poor yet clean and some country are poor and yet disgusting?
Like I have been to Bhutan and it was clean
do you know any other cloud platform which provides github actions for free?
my github one gets exhausted and when i am using act it requires high speed internet which i don't have which is taking very much time
Dude there are no shortcuts
with around 40-100% cpu usage going on
i am asking for platform
Yes, I meant It won't be for free
Why would it be free forever?
sorry, having a like a psychotic moment. not you guys dw.
What does one typically do in these situations? Cover the affected person in a blanket and give them chicken soup?
@whole bear What you doing?
I suppose the other option is to cover them in chicken soup and feed them a blanket, but I'm not sure that would go over as well.
Constipation and bowel obstruction etc would be a thing, there, I expect.
@dim inlet π
@whole bear π
@indigo cloud π
hey
bruh are you bot?
not free forever
dude no money = no service
This has some free usage
Hi sorry π¦
But with limitation
does it provide support for cross platform job from single os??
@ripe geyser π
Don't know
check it out
when github actions again renews?
for free I don't think so any platform does that
is their any software which provide that??
For free no!
Maybe there could be some platform
i tried installing act but not a cross platform thing
@drowsy widget π
alright where are you from?
India
same
I knew
how?
As those who ask such a question are mostly Indian
As my username is quite obvious to them
But somehow they like to ask where you from, just to be sure!
yeah still sometomes i find other counytry people with indian names
dont worry i am no social i have only one friend here'
btw what language you are learning?
I know several language but why do you ask?
in genral
sorry i am dyslaxic
well its nice to meet you
Yeah, same.
Incase you like to get help and be helper
@indigo cloud You can ask @teal crystal
bro i am learner i dont ask for help nither help people
Or ask here in the server
alright
cloud ? fly.io had free trial, not anymore now :\
I don't think so
fly.io is free if you stay under $5
1 basic server without any upgrades is under that amount
https://fly.io/
Where are the plans and pricing?
https://fly.io/docs/about/pricing/#paid-hobby-plan-and-free-trial
$5 per month probably this ?
So ain't free but under 5 dollar they do not bother to charge
Correct
Confusing policy
Not really
Hmm
> $5 = pay
< $5 = don't pay
so no hope for free user anymore!
LOL
If you only have a basic server running and a basic DB, it is under $5
If you are using it for prod, it will cost money
using ci software in pc itself for little bit advance workflow, using it itself is a problem
@unique sorrel We can hear you loud and clear
those who needs completely free not happy
(not me, $5 is ok for simply learning without considering network volume)
few things doesn't work like github, literally pain using all this
not any straightforward solution, so that atleast we can test things before pushing commit directly to github
If you did found a free alternative let us know!
!stream 1273628780207931463
β @whole bear can now stream until <t:1743953305:f>.
sure
but i not gonna waste more time on it, i think code can work fine
now i just gonna share this code, so any other contributor can test it
my testing is on github actions download & upload artifact which isn't supported in any software i think
my learning of react started with someone else's freshly-AI-generated (2023) React legacy (class components) code
oh look another opportunity to mention weird VSCode behaviour
consider using uv
deleting activation scripts makes VSCode activate the venv by setting environment variables instead
very implicit but existent behaviour
@unique sorrel you should probably increase the voice threshold in settings
grrr
@whole bear what you are building...?
@whole bear @wind raptor people are already coding with their mind instead of someone else's;
it's called "not using AI and thinking for yourself"
whatever-to-text would probably not be the right approach
and text-to-whatever
likely needs a different programming model
maybe visual just not as terrible as existing visual programming
I feel like AR/VR programming has a lot of potential
Using written code + visual blocks like Unreal Engine's blueprints
I liked how Stormworks implemented it
mostly simple visual blocks
but you can always made a custom one with Lua
as such segregates code's interfaces more strictly
I don't remember if you can send (marshalled?) tables there
probably not
though
no, wait, there is a "custom data" type I think
i.e. what C-defined types are to Lua, Lua tables are that to the game
hi @whole bear
yup
right
ok
yah I get you bro
you are right
wait what?
really?
no way bro this is true
yah I have seen them as well
but they look pretty nice to me
ahh
sad world
ohh
I am indian
and you?
nah boy I am just a begineer
whats your job bytheway?
@whole bear
student?
what do you work as?
that's cool
ohhs hit
I don't relly know what to say now
i AM DONE
I don't even have any idea about programming and stuff
and i am in my 2nd year
lol
I cheat
in exam and boom
do you have stream perms? @whole bear
ooo ohh
(just to be clear: don't ask for help with that here)
hello @ocean pebble
nah man I am not that stupid
this server looks chill btw
few days ago I went to english server to improve my english And i found different creatures on those servers
you need to verify yourself
go to the voice verification
can you help me with that ?
yah sure
go to voice verification then click on voice verify
you will see some requirements like 50 messages and all that stuff
I can hear you.
you just have to complete that in order to speak in the vc's.
yes send more messages
like tell me about yourself or you can have convo with me
i don't think spam is allowed here.
yes don't spam
you will get mute if you do it.
I am from INDIA, but start learning IT related stuffs so that i can jump in DevOps department
I did my all studies in mechanical Engineering
I am more interested in IT related stuff
but i think the job market is not as good in mechanical engineer
nice man
I did job as Automitive designer for 4 years
cool
have you tried learning about robotics and AI or something like that
it would be good i think if you can look into it because you already have mechanical engineer background
one of my known person is having a community for software developers called C# Corner
hope you heard about this !
I THINK YAH
I NEVER TRIED LEARNING C#
it has content on all the technologies not specific C#
ohh really
is url posting allowed here
let me find out
if it's not promotion I think
ok
if it's an invite and not in the whitelist, it'll get auto deleted
can you please send the details in my dm's just to make sure it is correct
I am from uttrakhand
but right now delhi ncr
you? @ocean pebble
it's like a forum thing, right?
thanks man
it's also csharp.com seems like
c-sharpcorner and csharp.com both are same
currently they are redirecting csharp.com to c-sharpcorner
the python tutorial looks good in this website
also you guys can help to improve them
the company is named CSharp.com
I think I should ask opal about that
Company name is CSharp INC
I am here in Noida
too close
hmm
now click voice verify button
you are good to go
#voice-verification @ocean pebble
also needs to reconnect if verification succeeds
yes
Hi sorry! π© π
!stream 772525588044709928
β @subtle dawn can now stream until <t:1743983627:f>.
@amber chasm π
!stream 772525588044709928
β @subtle dawn can now stream until <t:1743987647:f>.
@primal shadow "That part doesn't move. That's what fell off."
If it doesn't move, then how did it fall off?
Hey opal mist
I remember encountering something made of vanadium recently and I completely forgot what it was
last time I soldered was over 10 years ago I think
~17 years ago I remember we had somewhat customised (aka uncertified) soldering equipment
(tbf those were made by a very experienced radio/electrics engineer so they probably knew what they were doing)
@carmine tangle @subtle dawn fun fact:
all websites, which use MaxMind for geolocation, don't know correctly what city I'm in
(because I literally lied to MaxMind about where I am)
another funny thing that can happen when you try to find where a user is
@modest crown π
what??
@stone canopy π
Hello
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Checked it out, surprised i have not typed out 50 messages
hello
my friends
@whole bear
im here
well
how are you
good
trying to design a scratch clone for fun
im making a clone of it
its not a clone
more just something with a similar ui
@olive hedge
can you unmute me?
i never got unmuted from the bot
after an hour
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Ah yes, from the other day, right?
A fish, a fish, a fishy oh!
@hasty shore #data-science-and-ml
Adjust the temperature? "Is my code cooked?" "Yes."
π @plucky gate
@round matrixWe hear you.
Well, we can hear you.
Brought to you byβ¦ phippy.io Written by: Matt Butcher and Karen Chu Illustrated by: Bailey Beougher Illustration of Goldie is based on the Go Gopher designed by Renee French Phippy, Zeeβ¦
@round matrix#career-advice
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!voice @bronze rock π
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@forest pendant π
#voice-verification π
@ember inlet @ashen gazelle π
@dawn coral π
@violet ibex π
π
@minor sentinel Also, heya.
hello sir
@upper basin what's the topic of today's chat??
Chena
Why world has an obsession with America?
Can't they understand it's white dominated country for white.
Let's not get political.
Tbh whenever I enter any voice chat in Python Discord.
There will be always one fella who likes to talk about America, when he ain't even american!
Nibley was american.
And he was talking about food, like I was.
My bad I thought he is like milien, just like her he like to talk about US
uh
what
i just wanted you to elaborate on what a quantam compilation researcher is
I need to fix my mic
Still Finnish
hello bro
Ohh. So, my research is on the development of efficient compilers for quantum computing. Basically given some high level data (for me that's a vector or a matrix) I compile that to quantum circuits (quantum machine code).
The exact ways are too expensive (exponential), so my work is on approximate compilation which has linear scaling which is an exponential reduction compared to exact. The research part is finding ways to keep the fidelity high enough that it becomes almost indistinguishable from exact ones.
Essentially need to maintain 0.999 for most systems.
Thus far I can guarantee 0.90.
So long, long, long way to 0.999.
That's all.
so do you have an example of the exponential compilation
As in the output or the name of the compilation algorithm?
yeah i guess
Which one?
is your job like core programming
Name or output example?
I'm not really familar with the field
Yeah mainly.
Ok got it
Algorithm for exact compilation is called Shende. For matrices it's called Quantum Shannon Decomposition.
Output, one sec...
What's your best process for learning new algorithms faster
Left is exact, right is mine.
or is it all research
Left requires 2^23 depth. Mine is 11k.
99.71 percent reduction in depth.
It's a bit blurry, but that's what I'm working on. To improve the fidelity.
I don't have a special process. I just read the papers.
Sometimes that means I need to learn alot of stuff, sometimes just sth small.
ok got it
But knowing linear algebra and tensor networks at a deep level immensely helps.
ok
@high anvilπ
All quantum computing is mathematically based on tensor networks. If you know the math really really well, you'll be able to process and learn much easier.
My work right now is using MPS/MPO representations of 1D tensor networks to compile them to circuits more efficiently.
hello
Hence the loss in fidelity. MPS/MPO approximate 1D tensor networks, so they introduce a bit of loss but reduce the parameter scaling.
@somber heath hey man
you good?
Provided to YouTube by Universal Music Group
King Of Pain Β· The Police
Synchronicity
β 2003 A&M Records Limited
Released on: 1983-06-17
Engineer, Producer: Hugh Padgham
Producer, Recordingarranger: The Police
Vocalist: Gordon Sumner
Composer Lyricist: Sting
Auto-generated by YouTube.
The river eddies as it will.
it* be like that
I'm enjoying more somber music myself rn
Provided to YouTube by Universal Music Group
Heartbreaker Β· Bee Gees
The Record - Their Greatest Hits
β 2001 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group
Released on: 2001-11-20
Producer: Bee Gees
Composer Lyricist: Maurice Gibb
Composer Lyricist: Robin Gibb
Composer Lyricist: Ba...
hey @vocal basin
Provided to YouTube by Universal Music Group
Lost In Space Β· Lighthouse Family
Postcards From Heaven
β 1997 The Wild Card Label Ltd.
Released on: 1997-01-01
Producer, Studio Personnel, Mixer: Michael Peden
Studio Personnel, Engineer, Associated Performer, Keyboards: Martin Hayles
Studio Personnel, Asst. Recording Engineer: Paul 'Ma...
@whole bearπ
Quite real.
That's what a bot would say.
Attack the fak- I mean artificial intelligence!
My intelligence, such as it may be called, is quite organic.
It's following predictable tokens. Attack it!
Waalaikum salam
@rigid trellis how's going
What do you think?
How it's going @rigid trellis
How are you @rigid trellis
Quiet morning in VC it seems
@sly spade Up here.
Ahhh
I'm fine. What about you?
@bronze rock π
cool
unfortunate circumstances
@haughty pier configure once, fail to build everywhere
(actual unironic feature)
brb phone call
@somber heath I'm sorry I will leave.
Sorry for leaving, or for another reason? Because you're quite welcome to hang around.
I'm not have permission to speak
Things will be picking up soonish.
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Doesn't mean you still can't hang out and chat
yes, voice
When you hate containers
@autumn nimbus π
Oh that's super rough
Using MSSQL, this is going well already
same job as back in the day?
gotta dethrone the boss and take over soon
Fuck that. At an accounting firm?
@rugged root im doing a lot of squeal lately
i mean, accounting firms are one the rise with the shortage of accountants right? meaning that companies will pay higher hourly's
And i can't install postgres for the life of me
so yes def haha
Docker containers are your best friends there
Accounting is one of the more in demand business disciplines, but they're also kinda falling off in bigger companies
not mutually exclusive
Wut
nix people really want to replace Dockerfile
but NixOS can't replace the container runtime
if it tries, it will just end up making another container runtime
Docker is.... think of it like a suped up venv
It's a contained OS and program setup.
windows whatever foundation
So you aren't installing the programs and what not to your computer proper, but to that self contained thingy
And there's containers tailor built for particular programs or uses. There's one specifically for Postgres
"the would be windows web foundation if WWF wasn't a restricted use acronym"
"I! Hate! Sauerkraut!"
I would kill for my computer to suplex the operating system rather than booting it
Such a good song
@near niche now it's everything not only Apple
iPhones are no longer as much of an "expensive phone" compared to others
Truth
Writing prompt seen on the internet: You accidentally spill a bottle of holy water on your printer. Now it works perfectly, with no paper jams, no loud noises, and the ink lasts a long time. Turns out literally all printers are possessed and yours is now the first non-evil printer ever.
the most expensive thing I bought so far is a non-Apple-made phone
Yes. This checks out
another phone call happened
it took three phone calls to figure out that someone wants a JSON RPC endpoint with a single specific request;
earlier it took 2~4 phone calls to get that they want us to tell them our IP so that they can allowlist it
@low moon π
latter because at no point they used "allowlist" or "whitelist" or anything even remotely adjacent
peak communication efficiency
@austere hornet π

Tbh felix is Oriental racially, despite being Canadian he can't get a management level role in a country with majority white.
Getting the opportunity to lead at management level is really really hard, it's like a needle in grass field
accent is necessary lmao
Raymond Chun (CEO) Toronto-Dominion Bank
This is true almost in all majority white country
I've seen more upwork scams on discord than fiverr scams
Yeah, and stereotypes/other barriers
Hi
You're hireable in my heart
aww
getting a promotion, need to go to the office to sign stuff
@rugged root
Felix, corporate experience is another aspect.
But being a freelancer is far better than being an employee in a bad company.
the what
what does it even mean for a database to be available in some human language
also I forgot what's the proper name for human language
prolly like, the viz software and docs / cli?
CLIs in Linux do localise messages, so might be that
rather than taking translated commands
maybe, i dont know alot of e.g. japanese but is there a romanized version?
thats like, official
echo "..." | chatgpt "please translate to bash" | exec
I do think that his father is at much better peace and proud of him at his decision!
romaji
dont show people the backbone of post 2025 software we'll be exposed
Hopefully he'd be proud of him regardless
awk -
tab
tab
*wait*
tab
tab
enter
yeah i mean i dont think theres anything wrong in studying at a chinese uni i think this is just a matter of micro optimizing resume impressions but like, if you get a 4.0 gpa and a stacked portfolio who gives a fuck you'll get a job
I mean I'm just replying to a comment by rabbit :- if the rabbit was a father he won't allow him.
Fair
i bet a TON of people at Google studied in chinese uni's hahaha
True. Plenty of immigrants and folks who are here from China to study
We've got someone who is originally from China here at the firm
Super bright woman, too
yeah i dont think trying to tell someone 4 years into their degree that you think its a mistake is a great idea @amber raptor i dont think it adds any value haha
so I can write whatever on linkedin
I currently have "Postmodern Artist" as the job title
"Your New Dad"
it still amazes me what Max Fosh did just to troll his friend
Oh?
friend called him grandpa
so he adopted his friend's father
He legally became his friend's new grandfather by adopting his friend's dad.
Can you legally adopt people above 18 not in need of a guardian?
Legal contract was made in Germany too, very interesting :)
@rugged root be my son
In Germany... apparently, yes.
Tbh it doesn't matter.
But felix is racially Oriental, he will surely have much greater success on merit in China compared to Canada
Doubt it, I'd bet the average person of chinese descent in Canada is more prosperous than the counterpart in China
from what I've heard getting any managerial positions in China is generally problematic
regardless of who you are
Nope.
Because most Chinese are involved in the STEM field
If see Chinese University and then a ton of Canadian jobs, then you are golden, visa chances are low, they are likely a citizen
Source?
that's crazy, find the global purchasing power from Chinese descent stem grads in Canada vs in China, I'm sure purely because of economic reasons that the GPP is higher
My opinion
But yes most Chinese are involved in STEM related Job
No.
and 4/3 of statistics are made up on the spot
No!
One of the researchers I know studied in China, then went to US. Same thing for Iran (my friend went just a year ago).
ANyone who is not a US Citizen / Green Card holder will need a visa to work in the states
Yeah and they get it.
@near niche also what @amber raptor is saying is a micro optimization, pulling numbers out of my ass its like, yo go from a 90 to a 85 out of a 100, its not that its a deal breaker. Personally I don't think it's gonna matter in all practicality at all - dw about it
Unless they don't want to go through the hassle of visa, it's pretty standard to get visa for workers who will have to relocate.
In United States, that's extremely difficult
Canada is cracking down as well, I saw the news articles
I'm telling you, people get there all the time.
In fact the people who usually can't go or don't get to go are the poor ones.
Because they can't pass proof of funds step.
From the news we get filtered in United States, Canada is restricting visas heavily compared to even 5 years ago
I mean.... saying that a statistic is your opinion negates it as being a statistic.
@near niche Do what you like!
They are. However, people still go.
You got money? You will get to go.
Of course, and United States is still handing out visas but we are clearly cracking down
@near niche What is your major?
software engineering
I was told by Canadian friends they are pulling a ton and their companies have formerly gotten them approved, no longer are
It's a business for these companies. They charge huge amounts of money for visa. They get a lot of workers to do their more intensive roles.
It's not a bad thing.
"let them be failed dreams)"
Bad thing is when you strictly dictate it by how much cash you have.
It's for the people with low cash.
My friend, Iranian, no expertise, nothing, went to Canada just last year!
Precedence - TikTok.
Lots of people from China are in positions of power.
United States is extremely difficult to get a visa in. My understanding Canadian is cracking down in last 6 months, but that's just seeing occasional news article
They make the wheel turn for the chinese applicants more smoothly.
If. You. Don't. Have. Cash.
US are quite critical of Chinese things.
100k USD liquid cash for internationals is insanely high.
Even though TikTok isn't Chinese afaik?
That's multiple homes, cars, gold, etc.
Cool
And then they recruit Chinese people to work for them.
Apparently China, South Korea and Japan are making moves towards an alliance but this is mainly just hearsay
Companies always want global workers because it can be cheaper, obviously the voters who get to vote dislike that
But the developer/creator/owner is Singaporean, right?
Well Can I know the demand for Web designers
It's a tool.
of what part?
I think they mean the CEO.
CEO is Singaporean iirc from the court hearing they had.
He even said he served in the Singaporean military.
one of CEOs is
I'm doing what I hate most rn which is saying stuff without doing my research.
They have multiple CEOs?
like the TikTok CEO specifically
Tiktok is weird. From purely National Security PoV, Tiktok is a problem for United States. Zoomer who voted for Trump are too addicted to care about NatSec concerns and moneyed class just loves the cash
I thought companies have one CEO.
bytedance is multiple companies
Alrighty.
what a recent company
There is ByteDance United States CEO who is from Singapore?
It's like Tencent and their whole bunch of smaller companies like supercell, etc.
TikTok CEO.
Yeah this guy.
this is so confusing
He represented TikTok in the court hearing they had.
which might be on purpose
Oh, I didn't realize he was over entire ByteDance operation
Apparently ByteDance before current CEO had American CEO.
Kevin A. Mayer (born 1962) is an American business executive. He is the co-founder and co-CEO of Candle Media. He was briefly CEO of TikTok, and COO of its parent company ByteDance. Prior to joining TikTok, he was a senior executive at Disney for more than 15 years, including as head of Walt Disney Direct-to-Consumer & International.
like with that one crypto exchange
kwakwa
In fact, around 68% of ethnically Chinese males in Canada graduate with degrees in STEM fields.
Although detailed data on actual job roles is limited, itβs well understood that STEM careers typically offer significantly higher salaries than the national average. This is one of the main reasons why many Asian communitiesβsuch as Indian and Chinese Canadiansβoften have higher average incomes compared to the general population.
Itβs not about superior genetics, EQ, or IQ. It largely comes down to the fact that a significant portion of these groups are concentrated in high-paying STEM professions.
When I said "My opinion," I simply meant that I personally donβt believe in the point being made, which is why I responded with "no."
I wonβt be commenting on this topic further, as I understand it can be sensitive.
it exists β¨whereverβ¨ headquartered β¨who knows whereβ¨
β
yep
what's EQ
I always thought it was the medical field that elevated those demographic salaries
Emotional Quotient
Like emotional intelligence
I was too slow
Uhh, being able to act in social situations, being able to know what to do when someone's in a certain situation, being able to pick up on signs, etc
and other stuff
once again, no spaces around emdash are horrifying
e.g. if you've watched Young Sheldon... Missy would be considered as having a relatively high EQ while Sheldon has a relatively high IQ
apparently
I think it's more being able to process things in a mature way. Not over reacting, being able to see things from another person's point of view...
Although I need to double check that
Maybe
it looks like as if you put a regular dash between words, then just drew a longer dash over it
I'm doubting myself now
I'm lucky if I can spell either one of them
???? what are we saying in vc rn????
same
I've used it to correct grammar, but I did write most of it!
"by brain is on no-pilot, neither auto nor manual"
Which means it's either stuck on the runway or in a death spiral
then down
"We can't land! We're out of fuel! We're stuck up here!"
That's (coincidentally?) a decent analogy for burnout ngl
Purely coincidental
I hadn't even thought of that
OH OH OH
OH
You saying burnout reminds me, there's a great game about that called "Wanderstop"
Really really good game
Very peaceful but its overarching story is about pushing yourself to the brink and just breaking from it.
@wind raptor Yo
lol the OHs of excitement
Yeah when it comes to video games I can't help myself
It certainly looks very cool
probably not the type of game for me though... loneliness from my life seeps into my gaming if I'm too alone in a game
$ cat * | chatgpt -c "please devops this"
F*ckβand I still cannot put spaces around emdashesβyou.
@rugged root this is an aight 0%'er
Heyo π
it's a cupboard shelf
oh
3rd?
goes on the pins above the coat hanger bar
I think the large paragraph is there for effect
really sells the shit show
the URL encouraged me to read it
β€οΈ that piece
@rugged root @amber raptor
https://esolangs.org/wiki/Ook! What a great language
Probably learned that from online communities
before and after
BBC news do that for some reason on their website. Always with the one-sentence paragraphs
I've been working on some history... painn... but AI should learn from this instead
replace all . except the last with ; => "short" (because single-sentenced) paragraphs
I've started to use semi-colons, but I worry I'm doing it wrong
