#voice-chat-text-0
1 messages ยท Page 903 of 1
What is Vingar?
Sorry wrong call
Rambo?
Lol
First Financial Blood.
There's an aka.ms for that? That's awesome
We should get one
What should it be?
i bought a domain but have nothing to put on it, should i make my own version of no hello
no i mean for ppl that work @ msft lololol
I'm a Microsoft partner - do I count?
Lina, yeah but I HOPE is really good.
If that's what you're interested in, go for it
i immediately decided i'm too lazy lol
OH maybe!
Make a blog
Rant about your company
The internet loves that
@crystal fox Is just a future repetition of the same old plot. But with modern means. I hope it is good because I love the first one.
do you think i could write a script to automatically download and rename attachments based on a certain rule? i hate monitoring and reviewing my voicemails from emails in my inbox
I hate the 2nd and 3rd.
all the attachments are named voicemail.wav but the email subject and body contain the # it came from
The first one was just stellar.
The other two blatant lifestyle advertisements or something...
Sounds easy enough. I'm not too great at scripting in MSFTs stuffs though. I'll have to read up on it
Do you have any admin access to your MSFT tenant?
Tenant is what MSFT calls your [business] account
mhm nope i got none of that
Vin Diesel keeps everything in the family.
That "bland" I don't know how it is judged to be honest with you.
Where is that Blandness meter?
I don't know any.
Willy's Wonderland: Directed by Kevin Lewis. With Nicolas Cage, Emily Tosta, Beth Grant, Ric Reitz. A quiet drifter is tricked into a janitorial job at the now condemned Willy's Wonderland. The mundane tasks suddenly become an all-out fight for survival against wave after wave of demonic animatronics. Fists fly, kicks land, titans clash -- and o...
this is excellent
@ionic panther
it's very dumb and campy
I love how the Voice Chat 0 calls the shots. Good movie - bad movie!
Done and dusted!
Il Mare (Korean: ์์์ ; Hanja: ๆ่ถๆ; RR: Siworae; lit. "time-transcending love") is a 2000 South Korean film, starring Jun Ji-hyun and Lee Jung-jae, and directed by Lee Hyun-seung. The title, Il Mare, means "The Sea" in Italian, and is the name of the seaside house which is the setting of the story. The two protagonists both live there two years ap...
@zenith radish You mean keyboard typing? Like fast typing maybe?
@whole bear What's your question?
@zenith radish Did lemon talk to you about the PR?
There's a couple ways:
evens = []
for i in range(2, n):
if n % i == 0:
evens.append(i)
Alternatively, you can do what's called a list comprehension, which is essentially a loop inside of a list so we can create it in one go:
evens = [i for i in range(2, n) if n % i == 0]
how did you get yourself at end of your name
ok
They tend to roll out stuff like this in batches over time
So it's possible we just got in the current batch
bbl
i realise it now tht the legs of the crab is horse heads
Thx!
....
lol that's what i heard. if you called me, i'm sorry. i walked out of my room for a bit
Yeah I was doing my whiney "gilllllyyyyyyyyyyyyyyyyyyy"
I mean it was so that I could ask whether the work crap you were working on the other day was less crap
Oh no, I meant people only respond to me when I say a dumb joke rather than when I'm trying to get their attention
134,217,728
thats a nice uncoded joke
anyone good with java here?
damn you got a beard too
What are you needing? And not overly. I do have a link to a couple Java specific servers
can u share the servers with me
15 yrs?
The link I posted lists the two
Nah, exactly 1 year ago
you look a lot younger
bro you were handsome
import sys
conversion_rates: dict[int, list[str, float]] = {
1: ['usd', 1181.83],
2: ['cad', 926.52],
3: ['gbp', 1611.60],
4: ['euro', 1382.52],
}
def get_selection() -> tuple[float, str, float]:
print(55 * '==', '\nConversion options:')
for key, value in conversion_rates.items():
print(f'{key}: {value[0].upper()}')
while True:
try:
selection = int(input('Which currency do you want to convert? Select number: '))
selected_currency = conversion_rates[selection][0].upper()
selected_rate = conversion_rates[selection][1]
amount = float(input(f'How many {selected_currency} do you want to convert to KRW (Korean Won)? '))
krw_amount = amount * selected_rate
return (amount, selected_currency, krw_amount)
except KeyError as e:
print(f'{e} is not a valid currency option')
except ValueError as e:
print('You did not enter a valid numeric')
def main():
amount, selected_currency, krw_amoun = get_selection()
print(f'{amount:,.2f} {selected_currency} is equal to {krw_amoun:,.2f} KRW')
if __name__ == '__main__':
while True:
main()
while True:
try:
selection = int(input('Which currency do you want to convert? Select number: '))
selected_currency = conversion_rates[selection][0].upper()
selected_rate = conversion_rates[selection][1]
amount = float(input(f'How many {selected_currency} do you want to convert to KRW (Korean Won)? '))
krw_amount = amount * selected_rate
return (amount, selected_currency, krw_amount)
except KeyError as e:
sys.exit(f'{e} is not a valid currency option - aborting script')
except ValueError as e:
sys.exit('You did not enter a valid numeric - aborting script')
hello
๐
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
We typically suggest "Automate the Boring Stuff" and "A Byte of Python" for starters
yeah im really new i chose computer science and i though i should do some work out side of school to keep up if i ever miss a lesson
Yeah that's always a good thing to do
Keep yourself sharp
Well if you ever get stuck or want a concept explained or clarified, we're always happy to help
hemlock sans glasses is very unsettling
very unfamiliar
thx lol
glasses don't really suit me
next time i should get frameless ones
or contacts ofc
I'm off for an evening swim
might be on later
cya
Here's how to format Python code on Discord:
```py
print('Hello world!')
```
These are backticks, not quotes. Check this out if you can't find the backtick key.
!paste
Pasting large amounts of code
If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.pydis.com/
After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.
from math import isclose
# Lists of length-2 lists or tuples
computational_spans = [ ... ]
manual_spans = [ ... ]
def span_percent_overlap(lo1, hi1, lo2, hi2):
# need to fill this
...
span_overlaps = {}
for comp_num, (comp_lo, comp_hi) in enumerate(computational_spans):
for manu_num, (manu_lo, manu_hi) in enumerate(manuals_spans):
overlap = span_percent_overlap(comp_lo, comp_hi, manu_lo, manu_hi)
if not isclose(overlap, 0.0):
span_overlaps[comp_num, manu_num] = overlap
vewbooof
total_count = 0
total_frames = 0
overlap_count = 0
overlap_frames = 0
for i in manuals_spans:
total_count += 1
total frames += (i[1]-i[0])
check = 0
for j in comp_spans:
if (j[0] > i[0] and j[0] < i[1]):
if check == 0:
overlap_count += 1
check = 1
overlap_frames += (i[1] - j[0])
elif (i[0] > j[0] and i[0] < j[1]):
if check == 0:
overlap_count += 1
check = 1
overlap_frames += (j[1] - i[0])
percent_called = (float(overlap_count)/total_count)*100
percent_overlap = (float(overlap_frames )/total_frames)*100
print(percent_called, percent_overlap)
anyone could help me with a question about big o natation xd
need to know the big o natation of this code
Sorry, that was to Michael
@whole bear What were you saying?
You're thinking ecastacy
eh cuh stay see
what about happy drugs like lsd?
I can't take the chance
!rule 5
5. Do not provide or request help on projects that may break laws, breach terms of services, or are malicious or inappropriate.
me epic hacker pay me
no i3
lol
well i was going to use xmonad
i like haskal
no
im not
bc
why dont you use i3
it is like arch
well
try it
bruh
i use arch but i dont like i3
arch i made for this
yes
and manjaro
no
you
some
there are good
some
like the terminal one
YA
its
horibale
that thy use it
why
it is not open sorce
me
no
i hate it
bruh
run what
oh
why do like only one thing
you hate somethng or love something
wery extrime
init sys
i will try it
first
verbof steal
@scarlet pasture quants
@rugged root cutie patootie
mother fcker
Thank you for the response @gleaming ember chat
oh shit
LOL
whatcha need for it
@whole bear You should mute bro.
I thought you forgot that you were unmuted
and you were talking to someone else
that's why
Oh
Sorry i'm listening to songs so i probably didn't listen
Btw do you remember me @whole bear
Lol
yeah
what i think:
idk what you think about arch as a distro but their wiki is gr8 i don't think anyone curses after reading that.
letting people know i use arch is also not always for bragging for example i use both arch and Debian based distributions. ๐คทโโ๏ธ i think both are gr8 and have their own places
switch to gentoo most people don't switch to source based distrubutions
systemd is overly hated cuz its a multi purpose suite of tools... people prefer small single purpose tools for each thing instead most of the time
most people i'd say stay with GNU/linux after using it
Hello
Hey
I am new programing python :)
Could you help me with a little program please? :)
!paste
Pasting large amounts of code
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 floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.
@quiet epoch
i am here
guys
i need help
with a python
project
i mean with custom bot status!
pls dm me the custom status code e!
ok?
thnak you verry much!
Just got into the office, will be on in a bit
Yay
I challenged myself to port my Ludum Dare 46 entry to as many consoles as I could during the jam's voting period. It went better than I expected and, by the end, the game was working on the PS Vita, Nintendo DS, Wii, GameCube, and PSP!
Download: https://polymars.itch.io/terri-fried
โ LD46 Jam Page: https://ldjam.com/events/ludum-dare/46/terri-f...
Good evening
This practically ruined my day though
https://twitter.com/thijsniks/status/1440766272162070529?s=20
How is limiting your users good design...?
@rugged root Except removing the entire filesystem isn't intuitive
Which the author advocates for
The quote tweets of this are filled with people who are precious about Ancient Computer Truths which apparently shouldnโt be changed.
At least Twitter is doing a good job keeping these garbage replies out of my notifications
urgh
A personal tribute to The Twilight Zone. It's an amalgamation of my favorite intro segments with a classic Rod Serling monologue (although missing the well-known theme).
Created with After Effects CS5 and 3ds Max 2010.
These photos are all from the Japanese Wii manual, but the comments I wrote are not. I don't speak Japanese so I made my own comments. I don't know why Nintendo would really think anyone is this dumb. Enjoy this really funny video by Coolcat2772. If you like what you see, please subscribe! When I get 50 subscribers, I will make a very cool vide...
almost at 50 hours ... including a bit of AFK
I should time my Emacs sessions
I didn't time it myself
Pretty sure I sit inside it 12h a day
And I just got the game a few days ago
It's fun .... while mostly single player, it is kinda cross-platform (can play on Android as I heard)
It was made for Android
but on Windows, it has great controls for keyboard & mouse ... and can be used with a gamepad
Even being proper stuck in gacha hell, the game doesn't appeal to me
The community ruined it
Besides, I don't have beefy machines
just be F2P as you can get everything
I'm already juggling between 3 gacha games
Lunime?
I don't need one more
Fire Emblem Heroes, Granblue Fantasy, and more recently D4DJ
Forgiving enough to not require me to reroll
I was talking about Japanese gacha games in general
I understand that
But I play the three games I play now because the gameplay is fun enough
i'll brb
Hey guys, does anyone has any idea how to use selenuim to get the href from google results ?
Just the first results
1999 TV commercial shows off the black and white camera peripheral for the Game Boy Pocket. This device was only capable of drawing 4 levels of gray, so the pictures taken are very rudimentary. The commercial shows the Game Boy Printer also and the animations the Game Boy Camera was capable of drawing on top of pictures that were taken. Having a...
Brackets is a discontinued source code editor with a primary focus on web development. Created by Adobe Systems, it is free and open-source software licensed under the MIT License, and is currently maintained on GitHub by Adobe and other open-source developers. It is written in JavaScript, HTML and CSS. Brackets is cross-platform, available for ...
!d unittest
Source code: Lib/unittest/__init__.py
(If you are already familiar with the basic concepts of testing, you might want to skip to the list of assert methods.)
The unittest unit testing framework was originally inspired by JUnit and has a similar flavor as major unit testing frameworks in other languages. It supports test automation, sharing of setup and shutdown code for tests, aggregation of tests into collections, and independence of the tests from the reporting framework.
To achieve this, unittest supports some important concepts in an object-oriented way:
I may have misunderstood the problem.
if __name__ == "__main__":``` maybe
Run the module directly, demo mode. Import it, use it normally.
:C
Dram'a'matic, your automated drama generator! It dices, it slices, it destroys community cohesion in three easy steps! Try now, buy later!
i was just testing the combination of the two letters lol
"Will you marry me?"
"HA!"
am i the only one who didnt got this?๐
There are 10 types of people in the world
Those who understand binary and those that don't
i have one
Normal people :- i am hungry mom
Shakespeare :- Birthgiver ,let it be known that this stomach consists of emptiness.
y_vel *= -1
print(y_vel)```
I feel like I'm in a nightmare
Good lord make it stop
...
Anyhow
I'm now doing just HTML/CSS/JS for a course project
The terrible hacks I come up with scare me
I want to go back
Literally everything is a flexbox container
Pure, that's how it should be
Flexbox solves all of my alignment problems
brb Helping a co-worker with the same report creation stuff
hey @somber heath
ALTER TABLE?
You mean an altar?
Thank you, I'm here all night.
Starts with a 1.
not my fault
Cruise control for cool.
Open up the compost bin, rainbows, blinding beams of light.
@amber blaze Oh right, we're up in here. Typically when we're in a given voice chat, we'll be looking in the paired text channel
no worries, it's online so it gets tough after a while
Good evening once again
I'm thinking of building https://github.com/emacs-ng/emacs-ng
Is my chat broken or everyone is just silent
wow go ahead
i think u r doing a great job
Building from source
gr8
my beard grows way too fast...
I've only heard bad things about it
alack and alas
its not good... i leave it for a month and it's like half the size of lemon's already
o-o
It's specifically for math
you can make web apps using matlab? o-O i didn't know that
i thought it was purely data and math based
or C
when you're using django you're technically using cpython which is made in C
also i've been way too spoiled by golang, python and js
i can't remember my fricking semi colons
You can work on it and improve it
I have also never used but it's like nowadays you should know it
@gentle flint yo verboof ssup
nothing specific
Django isnโt one of those โmust knowโ
well, a tiny bit of C, but not enough to count
'cuz it's my job
Rab's not wrong. Django isn't as common as other backends, and if memory serves tends to do things differently than others you'll encounter
Job in??
wdym "job in"
Not to mention, JS SPA with some rest backend
Which job do you do that's what I was asking
Yea we can try that
Ohh well that's good to know
Iโm referencing where industry is going
I would love to see the framwework
Which is JS/TS SPA with some REST API backend in whatever language
as decreed by the Prophecy of Rabbit
Have you seen differently?
Can you imagine it being different
Me?
I don't judge.
Obviously some companies are moving slowly or not all but Iโm talking broad sense
the thing is
often a small new factor comes in
and then stuff changes direction
I'm sorry to hear that
On vacation
No vulnerabilities have increased more than expected
๐ i still like good old express for back end
Which is the old express?
But one of new job tasks for me is figuring out Node Build process. Angular is currently taking 45 minutes to build
nah just express
So figuring out if we can use docker to speed it up
Jesus what? How or why is Angular that sluggish? Also didn't realize it had to be built each time
Because devs just pull down 45 modules and they have to be tree shaken
Gotcha gotcha
๐ i also finally actually got to learning docker basics today.... now i know how to make, start, stop, manage containers, use volumes, etc :x
And our build system caches nothing. So every build must download and tree shake same set of modules
Yeah that was the part I was confused by
For .Net and Java, thatโs fine. Node on other hand. Itโs also written in TS so include transpiling
Alright, I need to go and do some stuff, but I'll probably be back later
have fun y'all
Sexist in the right way
LP just curious but why'd you choose python 1.6 for the discord api wrapper back then
cuz i see httplib in 1.3
for me it was rubik's cubes
used to spend my time solving different types in back of my class as well and we competed with who did it fastest
of course it is just simple rules, correct?
Code Bullet creating a somewhat-AI to do it ...
https://www.youtube.com/watch?v=f9smvQ5fc7Q
And then doing it even larger ...
https://www.youtube.com/watch?v=IM2czqavlWM
fastest times i've gotten are
2x2: 19 seconds
3x3: 32 seconds
4x4: something between 60-70 i don't remember exact
and i do remember him doing that but there's already way better ai that can solve physical cubes too https://www.youtube.com/watch?v=by1yz7Toick
^w^;
hai
hewwo's
I try to do note taking now, yay?
bathroom time
๐ what if you're using cgo and there is no error but you don't even know that a function calls malloc
@gentle flint
Of course more people show up when I'm in the little nerds room
The nerds room?
Bathroom
I had my suspicions lol
๐ that's the only place where i use my mobile for anything except calls lul
i play clash royale not minesweeper on mobile that's what i meant
I getcha
got a bit of a headache rn gonna go rest for now
cya all later
Okay, I'm not crazy
@whole bear Wait you said 6th form right? That'd put you at.... 17?
is โฌ5.60 a reasonable price for a book in this condition?
nope you start at 16
Oh right right
How's that very legal book that you were working on going?
You seemed older, just wasn't sure
I had it printed, and it arrived
Nice!
was it my voice?^^ or how i talk
oh๐
-shrugs- I'm weird.
noo
I enjoy trying to guess age via someone's voice
me too but its harder on guys in my opinion. I thought Jake is 23 but isn't he 16 i think he mentioned it before
Yep, he's a youngin'
and he's proud of that
Might as well be proud of who you are
indeed
Pilkis

Books: Daemon by Danial Suarez
mk
lol i do not like that tagline
not a great tagline, it's not a horror book, though it does have suspense I wouldn't consider it a suspense book either.
and then the injected head & body content that I added
Manually editing helm charts in a nutshell
Call with IT
mmm
The first image is the created HTML
The second image is the main Markdown
The third is the configurated view options of Markor
and I gtg (meeting)
@molten hound
sorry i thought i was not muted so i hit the toggle ...
ill be back
hello mod, maybe unmute me?
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
https://www.instagram.com/p/CT-4Ot_tDXo/ got this the other day at the office
omg need to type in 50 texts... the whole point of voice chat is to not type lol
Sure!
what do ya think about python docs?
is it good for beginners
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
If you have any questions or need a concept explained or clarified, let us know
We're always happy to do so
You donโt really use emacs, you merely suffer from it.
@hot vigil si seรฑor
i wanna try it!
maybe ill try evil mode...
tried the default keybinds its weird..
vim bindings are more naturral imo
I'm on Linux right now.
I can make phone calls, text, even code directly on it without a network connection (or be connected to another computer by a cable).

Linux is awesome
rather GNU/Linux
I'm on MacOS with an arch vm
running gnustep
lemme find one of my scripts
arch in a Vm makes no sense bro
why
maybe you could run arch as main system and if u wannna use mac (idk why)
u might want to GPU passthrough
Work computer is Windows 10 (every three months I ask for Linux, and it gets denied), so all dev work is done on an ec2 instance running Ubuntu because thatโs what Iโm used to
Hopefully I didn't sound snobby.
scones
maybe system76
A scone ( or ) is a baked good, usually made of either wheat or oatmeal with baking powder as a leavening agent, and baked on sheet pans. A scone is often slightly sweetened and occasionally glazed with egg wash. The scone is a basic component of the cream tea. It differs from teacakes and other types of sweets that are made with yeast. Scones w...
I hope someone gets the gist of this apt search wrapper that I have in Python format here.
https://gist.github.com/CtrlAltCuteness/abd5248a55a887c89f1f5305ed7d4cb6
@dry surge What's up?
^w^;
how about u
Headachey, but okay
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
"The Escapists" is currently free on the Epic Store .... if anyone is wanting it.
I actually learned via Automate the Boring Stuff
learned, programmed, got stuck, learned some more, programmed some more, etc, etc, etc
But I had a few other languages under my belt before
that's a kick below the belt
guys u soo cool
hey
!resources We've got a whole bunch of great resources on our site. Typically we recommend Automate the Boring Stuff and A Byte of Python
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
And if you have any questions or need clarification on anything, don't hesitate to ask
this one is still one of my favourites
i got it thank you
yeah sure
i kinda agree with that
why my mic is muted ?
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@whole bear If you're wondering why you can't talk, check out #voice-verification.
@whole bear If you continue to do this you will receive a ban
KILL EM
LP, c'mon
!tempban 151207989955526656 1w Constantly swapping between voice chats is irritating and disruptive. If you return to the server, do not do this again or it will be permanent
:incoming_envelope: :ok_hand: applied ban to @languid scaffold until <t:1633031276:f> (6 days and 23 hours).
neit
I'm just wondering who is better Corey or Sentdex ?
what i need to change
@rugged root
I got TESV when TESV:SE was part of the "free deal"
have you tried their videos? they have a different feel
wow
not yet actually
I am intrigued
Python is a clean and powerful programming language. You can use it to build websites, analyze data, write utilities, and create many other kinds of software. In this series we will teach everything you need to know to begin writing your own code in Python.
Start Python Playlist HERE:
http://bit.ly/PythonHelloWorld
If you'd like advice about...
can i dont change my profile pic
I will thx alot
i like all of them but corey schafer's voice is nice to fall asleep to ๐ค
they all teach the same thing right ?
hmmm more or less? but there is probably no one that has watched every single one of their videos lol
after you watch a few and get familiar and do some reading you'll be able to start reading documentation and such on your own
@gentle flint u look like the one character from silicon valley
oh ok I get it
@hot vigil perhaps I am
thank you very much ๐
look like this guy
i swear
!resources look below for more resources in case someone hasn't shared with you already
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
they did actually but thank you anyway
he looks so cute
my schedule
thx
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
@dry surge
ha you wish
!warn 617384283320877109 Given your previous profile picture, about me, status and now trying to use a 'milf' command, you don't seem to understand the culture of the server. Re-read the #rules and #code-of-conduct. If this continues, more serious infractions will follow
:incoming_envelope: :ok_hand: applied warning to @dry surge.
are you using branches?
yea but i merged my pr in main
then someone committed something before i pushed it
I hate Jira - the buttons are confusing
and then i pulled and pushed
like a tug of war
did you close out your local branch?
ye merging the pr dels the branch i think
it doesn't
yeah, deleting branches deletes branches
This is the British Grenadier song and it has lyrics included if you what to sing along. Enjoy
and here is the second part https://www.youtube.com/watch?v=tIIufQKM2K0&t=25s
Marcha americana da guerra de independรชncia
@orchid barn What's up?
Thousand Island dressing is an American salad dressing and condiment based on mayonnaise that can include olive oil, lemon juice, orange juice, paprika, Worcestershire sauce, mustard, vinegar, cream, chili sauce, tomato purรฉe, and ketchup or Tabasco sauce.It also typically contains finely chopped ingredients, which can include pickles, onions, b...
for anyone who thought rice with ketchup and mayonnaise was bad
mashed potatoes from reddit:
souped potatoe
๐
!ban @rugged root bad boi
naughty boi
do you guys still wear masks out?
Blackberry Key3 5G Price, Specs, Release Date, Features, Review, News! The Blackberry Company declares to bring a new smartphone in the world mobile market as soon as possible, whose name is โBlackberry Key 3 5G 2021โ. The smartphone comes in 4 new colors, whose name is Mocha Brown, Black, Champagne Gold, and Pink Gold. If [โฆ]
I'm still waiting....
https://open.spotify.com/album/6Pe5LGQgU3mmvuRjFMsACV?si=Muricr78SIWmq2NThS3h1Q&dl_branch=1 @restive geyser ๐
aw it's a mini album. i want a full album. i will take it though
EXACTLY
what a hell
i can count the amount of full albums sm did on one hand
half of which is nct for some reason
cough cough yg cough cough
did you listen to leehi's latest?
it's pretty good. i like her in aomg
4 only?
yes
yeah its nice
but HSKT & red lipstick
not exactly my type of music but i still like it
also kinda off topic, but did you watch dune yet
cause i did today, and i have to say that it was without doubt one of the best movies i ever watched
like 2,5 hours constant high good
Excuse me, what the fuck?
๐ค
came from r/shittyfoodporn
Ah right, I'm glad that's the case ๐
๐
I didn't get that impression.
xD i would love to actually live and code in a cave tho ๐
if insects didn't exist
lol
!voice @hazy lagoon
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!voice
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
hey @woeful salmon
fine
man
did u had compiler development cource in ur earlier studies
and no i didn't have a dedicated course for it but we were tought some basics
hlo sir @rugged root
ABOUTActraiser combines 2D platforming action (Realm Acts) with a City-building simulation (Realm Management) in the ultimate battle between good and evil!Featuring the soundtrack that sent shockwaves through the gaming world when it was first released, composed by the legendary Yuzo Koshiro - now remastered!Help humanity flourish by playing as ...
$29.99
that was a lie
India -> eu (idk where in europe server is) o-o
Huh
EU Central is the median point for most of our users, though
So it's the best compromise I could come up wit
sup hemockk ๐
๐คทโโ๏ธ ping is goo enough and its probably just routing differences
How's it going, Kit?
like i have friends from pakistan that get 200+ ping on singapore servers while i get 70
cuz of bad routing
@slate viper If it makes you feel any better, from the US my ping is around 113
!pypi ant
Python implementation of the ANT, ANT+, and ANT-FS protocols (http://www.thisisant.com/).
import express from 'express';
js import
import * as express from "express";
ts
ANT is a Wireless Personal Network protocol, by Garmin Canada, with small size, reasonable cost and very low power requirements.
type Account struct {
owner string
balance int
}
// NewAccount creates new account
func NewAccount(owner string) *Account {
var account Account = Account{owner: owner, balance: 0}
return &account
}
// Deposit given ammount to your account
func (a *Account) Deposit(ammount int) {
a.balance += ammount
}
// Withdraw given ammount from your account
func (a *Account) Withdraw(ammount int) error {
if a.balance < ammount {
return errors.New("not enough balance")
} else {
a.balance -= ammount
return nil
}
}
// GetBalancne returns the accocunt balance
func (a Account) GetBalance() int {
return a.balance
}
func (a *Account) ChangeOwner(newOwner string) {
a.owner = newOwner
}
func (a Account) GetOwner() string {
return a.owner
}
func (a Account) String() string {
return fmt.Sprintf("Account(Owner: %s, Balance: %d)", a.owner, a.balance)
}
now me checked what my ping was to US, it said 271
sadge ping noises
Yep, which is why I don't set it to US
which editor is LP using ?
@zenith radish how did u configure doom for rust?
๐ฉ watchin this is reminding me howmuch more i have to set up vim to actually be able to stop using vs code at all
:tools lsp ?
im new to doom emacs ๐
Language server protocol
It's fairly common in most editors
And IDEs, actually
But most of the time you don't really notice or have to set them up with IDEs
its not about customization but more about howmuch functionality it lacks rn
Sublime you have to set them up individually
like auto imports like he did for sync before
yep, im aware of lsp's ๐ new to doom emacs
IDE dating service.
hello with ping
do :tools lsp and :lang (rust +lsp)
without ping
@coarse cape
oh I meant in your init.el
do SPC-f-p
init.el
uncomment :lang lsp
or :tools lsp that is
then uncomment :lang rust
and add parens
and a +lsp
then run ~/.emacs.d/bin/doom sync
and install a rust lsp server
lang is already uncommented
and install rust analyzer
i have rust analyzer installed
cool
is my installation broken???
it might just be old
reinstalling
imports in rust its just
mod <module_name>
High-five for having Elm on there
xDD ๐คฃ
Wait what is the flavor text next to that? "care for a cup of"
recloning and installing stuff
๐
WHY IS THE DEFAULT BROWSER OPENING UP VSCODEEEEE???
yay, lsp works @zenith radish ๐
? just change default browser to be a browser then
browser tho?
it is chrome
ah wait in emacs? o-o
weird
The Exchange Online PowerShell V2 module (abbreviated as the EXO V2 module) uses modern authentication and works with multi-factor authentication (MFA) for connecting to all Exchange-related PowerShell environments in Microsoft 365: Exchange Online PowerShell, Security & Compliance PowerShell, and standalone Exchange Online Protection (EOP) PowerShell.
Says it supports modern auth, but modern auth has it in the basic auth category
Who's the Microsoft guy? Rabbit? Where's Rabbit when you need him?
Doesn't sound very nice of me to interrupt someone's vacation
probably eating carrots in a hole somewhere?
๐ฐ
how do i set the browser using emacs?
It'd probably be easier if you weren't deafened
๐ต "You raze me down..."
New picture - added some scribbles
So... Where's the zero?
On the invoice?
Cool. Where on the invoice?
...
o kurv
hello everyone
๐
"Lawyers, guns and money" or "Lawyers' guns and money"? @crystal fox
The first programming language built specifically for zero-knowledge applications.
I saw that there was an LSP server for it. It's actually introduced me to a couple languages I'd never seen
Feels like I hear about a new language almost everyday at this point
Usually from me going "oh huh, that's weird"
OOOOO when are we going
idk u tell me!!!!!!!!!!!!
Any weekend in October works for me ๐
okioki
so just not halloween weekend
but now we must decide............ sushi? or kbbq 
bisk is bacc
We do both but on different days LOL
Hello Hemlock, long time
How are you
Been...decent, college is stressful but at least it's 3rd year and finally I get to study subjects that are directly related to my major
....failed Probability - Statistics, lady luck is not with me
You know what I mean
Can't let bad things keep you from your goal
(says the guy who is constantly in a depressive state that does exactly that)
Can't let bad things keep you from your goal
Ain't nuffin' stoppin' me from deleting my C: drive to cram in more music
eat chicken and rice >:D
Still listening, and writing code
The Good, The Bad, The PyCharm
?
PyGen
oh
yo, any good ide's?
best one out there according to you people?
not just for python, in general
^
i use vscode but im scared about telemetry
oh
hmm
visual studio is hogger in memory and space
im trying emacs but mehhhhhh
im not a vim guy
๐ฆ
VS is cool for doing C++ on Windows
Hemlock we're not opening the "What's an IDE and what's an editor" can of worm right
should i pay for subl?
or is it free?
i can pay but
oh
so unlimited?
ooo
that may be annoyin at times, yeah
I call Sublime Text "subble" because of its subl launcher
99 bucks, eh i can pay it if i really stick with it ๐
i switch editors too often
hehe
alright ๐
hemlock, what are your thoughts on vscode telemetry and data breach?
i like vscode
but im a lil scared
Editor I switch between 5. notepad for quick hacks, notepad++ for hacks, subl for light code editing, atom for writing college notes and code for small projects
vscode vs sublime?
atom is...........ehhh..........decent.........for a specific workload of mine......
the rest is no
i like the lunarvim configs, its the best for making vim likr vscode
like*
sublime git is baddddd
why do i need another program for merging stuff
but-
yeah
Don't wanna deal with command line, and it looks minimalist which is my thing
i came from the terminal and vscode ๐
Cost around the same as text
is sublime faster than vscode in editing and opening times?
i should try it then
a
alright!
hmmm
yep
Question: What's the holy war between vim and emacs, and what does that mean for us plebs with Ctrl-C-V instead of whatever the equivalent of those shortcut is?
do u use subl daily?
i mean emacs is more like an os at this time
you have mail, web brower
vim is just a text editor
wtf
vim is keyboard driven
no mouse needed
yea
