#voice-chat-text-0

1 messages ยท Page 903 of 1

storm drum
#

Ah ok

rugged root
storm drum
#

Sorry wrong call

#

Rambo?

#

Lol

#

First Financial Blood.

vivid palm
#

this is my status on all my work messaging apps

#

http://aka.ms/nohello

leaden comet
sweet lodge
vivid palm
#

yuppp

#

i hear it's easy to get an aka.ms approved

sweet lodge
#

We should get one
What should it be?

vivid palm
#

i bought a domain but have nothing to put on it, should i make my own version of no hello

vivid palm
sweet lodge
#

I'm a Microsoft partner - do I count?

storm drum
#

Lina, yeah but I HOPE is really good.

sweet lodge
vivid palm
#

i immediately decided i'm too lazy lol

vivid palm
sweet lodge
#

Make a blog
Rant about your company
The internet loves that

vivid palm
#

LOL

#

i'd have such a hard time not getting found out

#

speaking of msft

storm drum
#

@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.

vivid palm
#

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

storm drum
#

I hate the 2nd and 3rd.

vivid palm
#

all the attachments are named voicemail.wav but the email subject and body contain the # it came from

storm drum
#

The first one was just stellar.

#

The other two blatant lifestyle advertisements or something...

sweet lodge
sweet lodge
vivid palm
#

no admin access to anything

#

and what's a tennant

sweet lodge
#

Tenant is what MSFT calls your [business] account

vivid palm
#

mhm nope i got none of that

storm drum
#

Vin Diesel keeps everything in the family.

molten pewter
storm drum
#

Litterally

#

Kevin Spacey is a nice actor but found himself in the gutter.

storm drum
#

Where is that Blandness meter?

#

I don't know any.

crystal fox
storm drum
#

๐Ÿ˜„

rugged root
#

Also yes

#

Oh, Maru, you should be able to verify now

#

Andrew Lloyd Webber

crystal fox
#
IMDb

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

rugged root
#

@ionic panther

crystal fox
#

it's very dumb and campy

storm drum
#

I love how the Voice Chat 0 calls the shots. Good movie - bad movie!

zenith radish
storm drum
#

Done and dusted!

vivid palm
#

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...

storm drum
#

@zenith radish You mean keyboard typing? Like fast typing maybe?

rugged root
#

@whole bear What's your question?

#

@zenith radish Did lemon talk to you about the PR?

whole bear
#

How do I put those numbers in a list

#

@rugged root

crystal fox
rugged root
#

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]
gloomy vigil
rugged root
#

It's a role icon

#

I just used the same picture as the emoji for the Voice Lead role

gloomy vigil
#

or boost thing?

rugged root
#

It's a server thing

#

Not sure if it's tied to boosts or not

gloomy vigil
#

yea so boost or free?

#

oh ok

#

is it like beta or is it applied to all servers

rugged root
#

Yeah, it's boost based

#

Not sure about the rollout

gloomy vigil
#

ok

rugged root
#

They tend to roll out stuff like this in batches over time

#

So it's possible we just got in the current batch

molten pewter
#

bbl

crystal fox
gloomy vigil
# crystal fox

i realise it now tht the legs of the crab is horse heads

crystal fox
restive geyser
#

....

rugged root
#

Oh, NOW you respond

#

Of course people only respond to my bad jokes

restive geyser
#

lol that's what i heard. if you called me, i'm sorry. i walked out of my room for a bit

rugged root
#

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

dark seal
#

134,217,728

gloomy vigil
#

thats a nice uncoded joke

rugged root
lofty radish
#

anyone good with java here?

gloomy vigil
rugged root
zenith radish
lofty radish
gloomy vigil
rugged root
#

The link I posted lists the two

zenith radish
#

Nah, exactly 1 year ago

gloomy vigil
zenith radish
gloomy vigil
zenith radish
crystal fox
vivid palm
#
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()
rugged root
#
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')
silk rock
#

hello

sweet lodge
#

๐Ÿ‘‹

silk rock
#

im new

#

to coding

rugged root
#

!resources

wise cargoBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

rugged root
#

We typically suggest "Automate the Boring Stuff" and "A Byte of Python" for starters

silk rock
#

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

rugged root
#

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

gentle flint
rugged root
#

For you and me both

#

Wait, why is it unsettling to you?

gentle flint
#

very unfamiliar

rugged root
#

Fair

#

I think you look handsome without yours. With and without of course

gentle flint
#

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

rugged root
#

!code

wise cargoBOT
#

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.

rugged root
#

!paste

wise cargoBOT
#

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.

molten hound
#
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

flat sentinel
#

vewbooof

molten hound
#
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)
regal raptor
#

anyone could help me with a question about big o natation xd

rugged root
regal raptor
#

need to know the big o natation of this code

rugged root
#

Sorry, that was to Michael

restive geyser
#

you should see a doctor.

#

and stay hydrated

rugged root
#

@whole bear What were you saying?

rugged root
restive geyser
#

eh cuh stay see

whole bear
rugged root
#

I can't take the chance

flat sentinel
#

i was

#

once

rugged root
#

For which game

#

Oh then no

flat sentinel
#

what

#

hes under age

rugged root
#

!rule 5

wise cargoBOT
#

5. Do not provide or request help on projects that may break laws, breach terms of services, or are malicious or inappropriate.

flat sentinel
#

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

whole bear
vivid palm
#

@scarlet pasture quants

whole bear
#

@rugged root cutie patootie

scarlet pasture
#

Thank you for the response @gleaming ember chat

#

oh shit

#

LOL

scarlet pasture
vivid palm
#

idk

#

it's never gonna be me

stoic grail
#

@whole bear You should mute bro.

whole bear
#

why

#

:[

stoic grail
#

I thought you forgot that you were unmuted

#

and you were talking to someone else

#

that's why

whole bear
#

no

#

I said hi

stoic grail
#

Oh

#

Sorry i'm listening to songs so i probably didn't listen

#

Btw do you remember me @whole bear

#

Lol

whole bear
#

yeah

woeful salmon
# flat sentinel

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

stoic grail
#

Hello

open steeple
#

Hey

#

I am new programing python :)

#

Could you help me with a little program please? :)

cedar briar
#

!paste

wise cargoBOT
#

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.

cedar briar
#

@quiet epoch

whole bear
#

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!

rugged root
#

Just got into the office, will be on in a bit

zenith radish
#

Yay

primal yacht
swift valley
#

Good evening

#

How is limiting your users good design...?

#

@rugged root Except removing the entire filesystem isn't intuitive

#

Which the author advocates for

#

urgh

primal yacht
#

almost at 50 hours ... including a bit of AFK

swift valley
#

I should time my Emacs sessions

primal yacht
#

I didn't time it myself

swift valley
#

Pretty sure I sit inside it 12h a day

primal yacht
#

And I just got the game a few days ago

rugged root
#

Free yourself from emacs

#

It's a sickness

primal yacht
#

It's fun .... while mostly single player, it is kinda cross-platform (can play on Android as I heard)

swift valley
#

It was made for Android

primal yacht
#

but on Windows, it has great controls for keyboard & mouse ... and can be used with a gamepad

swift valley
#

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

primal yacht
swift valley
#

I'm already juggling between 3 gacha games

primal yacht
primal yacht
swift valley
#

I don't need one more

#

Fire Emblem Heroes, Granblue Fantasy, and more recently D4DJ

#

Forgiving enough to not require me to reroll

primal yacht
#

Lunime's Gacha games require ZERO payments whatsoever

#

And no rerolling needed!

swift valley
#

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

primal yacht
swift valley
#

i'll brb

rugged root
slate viper
#

Helloo hemlock

#

dont wanna interupt them talking

#

so gonna be quite

pastel lance
#

Hey guys, does anyone has any idea how to use selenuim to get the href from google results ?

#

Just the first results

primal yacht
#

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 ...

rugged root
somber heath
#

!d unittest

wise cargoBOT
#

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:

somber heath
#

I may have misunderstood the problem.

rugged root
somber heath
#
if __name__ == "__main__":``` maybe
#

Run the module directly, demo mode. Import it, use it normally.

forest zodiac
#

:C

somber heath
#

Dram'a'matic, your automated drama generator! It dices, it slices, it destroys community cohesion in three easy steps! Try now, buy later!

forest zodiac
#

i was just testing the combination of the two letters lol

somber heath
#

You can say a lot with just two letters.

#

"Will you marry me?"
"No."

rugged root
#

"Will you marry me?"
"HA!"

forest zodiac
#

am i the only one who didnt got this?๐Ÿ˜•

forest zodiac
#

oh lol

rugged root
#

There are 10 types of people in the world
Those who understand binary and those that don't

forest zodiac
#

i have one

#

Normal people :- i am hungry mom
Shakespeare :- Birthgiver ,let it be known that this stomach consists of emptiness.

rugged root
civic wyvern
#
        y_vel *= -1
        print(y_vel)```
swift valley
#

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

rugged root
#

Pure, that's how it should be

swift valley
#

Flexbox solves all of my alignment problems

rugged root
#

brb Helping a co-worker with the same report creation stuff

somber heath
#

?

#

Application-specific knowledge?

forest zodiac
#

hey @somber heath

flat sentinel
pure path
#

WOW

#

bs4 is really nice

somber heath
#

Yeah, nah.

#

Nah, yeah.

flat sentinel
#

dont

#

dont

#

just dont

pure path
#

ALTER TABLE?

somber heath
#

You mean an altar?

pure path
#

nah

#

its alter

somber heath
#

Thank you, I'm here all night.

gentle flint
#

gtg, back later

#

have fun with hemlock

somber heath
#

1verboof cannot be called.

#

1verboof cannot exist.

gentle flint
#

oi

#

shut

#

supper's ready

somber heath
#

Starts with a 1.

gentle flint
#

not my fault

somber heath
#

Cruise control for cool.

#

Open up the compost bin, rainbows, blinding beams of light.

hoary inlet
#

been a while

#

college started

#

so not so well

#

finance

rugged root
#

@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

hoary inlet
#

no worries, it's online so it gets tough after a while

amber blaze
#

oh ok

#

btw is my username fine now? @rugged root

swift valley
#

Good evening once again

#

Is my chat broken or everyone is just silent

amber blaze
#

i think u r doing a great job

swift valley
#

Building from source

amber blaze
#

gr8

swift valley
#

Anyhow

#

It seems like we're gonna be using MATLAB

woeful salmon
#

my beard grows way too fast...

swift valley
#

I've only heard bad things about it

gentle flint
swift valley
#

We're doing linear algebra with it

#

Also it starts indexing at 1

woeful salmon
#

o-o

swift valley
#

It's specifically for math

woeful salmon
#

you can make web apps using matlab? o-O i didn't know that

#

i thought it was purely data and math based

swift valley
#

That's like making web apps in Erlang

#

lmao

#

Doable but impractical

gentle flint
woeful salmon
gentle flint
#

I've never used django

#

lol

woeful salmon
#

also i've been way too spoiled by golang, python and js

#

i can't remember my fricking semi colons

whole bear
#

You can work on it and improve it

whole bear
#

@gentle flint yo verboof ssup

gentle flint
#

nothing specific

whole bear
#

Ohhk

#

So you are working recently in which language

amber raptor
#

Django isnโ€™t one of those โ€œmust knowโ€

gentle flint
#

Python

#

always Python

whole bear
#

Cool

#

But why always python tho

gentle flint
#

well, a tiny bit of C, but not enough to count

gentle flint
rugged root
whole bear
gentle flint
#

wdym "job in"

amber raptor
#

Not to mention, JS SPA with some rest backend

whole bear
whole bear
gentle flint
#

I write programs for engineers

#

using this framework

whole bear
#

Ohh well that's good to know

amber raptor
#

Iโ€™m referencing where industry is going

whole bear
#

I would love to see the framwework

amber raptor
#

Which is JS/TS SPA with some REST API backend in whatever language

gentle flint
amber raptor
whole bear
gentle flint
#

Me?
I don't judge.

whole bear
#

Yea same is the case with me

#

I also don't judge

amber raptor
#

Obviously some companies are moving slowly or not all but Iโ€™m talking broad sense

rugged root
#

How's the new job going?

#

Feeling less miserable at least?

amber raptor
#

Not at it

gentle flint
#

the thing is
often a small new factor comes in
and then stuff changes direction

rugged root
#

I'm sorry to hear that

amber raptor
#

On vacation

whole bear
#

No vulnerabilities have increased more than expected

woeful salmon
#

๐Ÿ‘€ i still like good old express for back end

whole bear
amber raptor
#

But one of new job tasks for me is figuring out Node Build process. Angular is currently taking 45 minutes to build

woeful salmon
#

nah just express

amber raptor
#

So figuring out if we can use docker to speed it up

gentle flint
rugged root
#

Jesus what? How or why is Angular that sluggish? Also didn't realize it had to be built each time

amber raptor
rugged root
#

Gotcha gotcha

woeful salmon
#

๐Ÿ‘€ i also finally actually got to learning docker basics today.... now i know how to make, start, stop, manage containers, use volumes, etc :x

amber raptor
#

And our build system caches nothing. So every build must download and tree shake same set of modules

rugged root
#

Yeah that was the part I was confused by

amber raptor
#

For .Net and Java, thatโ€™s fine. Node on other hand. Itโ€™s also written in TS so include transpiling

gentle flint
#

Alright, I need to go and do some stuff, but I'll probably be back later

#

have fun y'all

woeful salmon
#

twitter sexist

#

no Men in tech

rugged root
#

Sexist in the right way

woeful salmon
#

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

primal yacht
woeful salmon
#

๐Ÿ‘€ we had 1 wide desk for 2 people so

#

1 used to solve
other timed first

primal yacht
woeful salmon
#

fastest times i've gotten are
2x2: 19 seconds
3x3: 32 seconds
4x4: something between 60-70 i don't remember exact

woeful salmon
primal yacht
#

^w^;

gentle flint
#

hai

primal yacht
#

hewwo's

swift valley
#

I try to do note taking now, yay?

primal yacht
#

bathroom time

woeful salmon
#

๐Ÿ‘€ what if you're using cgo and there is no error but you don't even know that a function calls malloc

#

@gentle flint

icy axle
#

Vesurkan

#

Vurkan

rugged root
#

Of course more people show up when I'm in the little nerds room

rugged root
#

Bathroom

icy axle
#

I had my suspicions lol

woeful salmon
#

๐Ÿ‘€ 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

rugged root
#

I getcha

woeful salmon
#

got a bit of a headache rn gonna go rest for now
cya all later

rugged root
#

Okay, I'm not crazy

#

@whole bear Wait you said 6th form right? That'd put you at.... 17?

vivid palm
gentle flint
#

is โ‚ฌ5.60 a reasonable price for a book in this condition?

rugged root
#

Oh right right

zealous wave
gentle flint
#

huh?

#

that was ages ago

rugged root
#

You seemed older, just wasn't sure

gentle flint
#

I had it printed, and it arrived

zealous wave
#

Nice!

gentle flint
#

and I used it for my study

#

I sent you a pic, I believe

whole bear
rugged root
#

Yeppers

#

Yeah just how you carry yourself

#

Mature and all that

whole bear
#

oh๐Ÿ˜…

rugged root
#

-shrugs- I'm weird.

whole bear
#

noo

rugged root
#

I enjoy trying to guess age via someone's voice

whole bear
#

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

rugged root
#

Yep, he's a youngin'

whole bear
#

and he's proud of that

rugged root
#

Might as well be proud of who you are

whole bear
#

indeed

zenith radish
#

Pilkis

vivid palm
#

sooooooooocuteeeeeeeeeeee

zenith radish
rugged root
molten pewter
#

Books: Daemon by Danial Suarez

vivid palm
#

mk

rugged root
vivid palm
#

lol i do not like that tagline

molten pewter
#

not a great tagline, it's not a horror book, though it does have suspense I wouldn't consider it a suspense book either.

gentle flint
primal yacht
#

result

#

input markdown

gentle flint
primal yacht
#

and then the injected head & body content that I added

willow light
rugged root
#

Call with IT

gentle flint
#

mmm

primal yacht
#

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)

gentle flint
#

@molten hound

primal yacht
#

sorry i thought i was not muted so i hit the toggle ...

whole bear
#

ill be back

vivid palm
gentle flint
#

sorta like this but the kilt was leather

#

and he had a leather jacket

hot vigil
#

hello mod, maybe unmute me?

wise cargoBOT
#

Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

willow light
hot vigil
#

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

rugged root
#

!resources

wise cargoBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

hot vigil
#

cool thanks!

#

@zenith radish u use emacs?

rugged root
#

If you have any questions or need a concept explained or clarified, let us know

#

We're always happy to do so

willow light
#

You donโ€™t really use emacs, you merely suffer from it.

zenith radish
#

@hot vigil si seรฑor

hot vigil
hot vigil
#

ohhh mac

primal yacht
#

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).

hot vigil
zenith radish
#

running gnustep

primal yacht
#

lemme find one of my scripts

hot vigil
#

maybe you could run arch as main system and if u wannna use mac (idk why)
u might want to GPU passthrough

willow light
#

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

hot vigil
#

yea

#

want m1 support for arch

#

as native OS

#

damn would be nice

mortal burrow
#

Hopefully I didn't sound snobby.

hot vigil
#

yea

#

yes again

#

.deb

#

MONSTER gentoo

#

they should buy you

#

framework

gentle flint
#

scones

hot vigil
#

maybe system76

gentle flint
#

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...

primal yacht
rugged root
#

@dry surge What's up?

dry surge
#

im ood

#

ood

#

good

#

ahhahha

primal yacht
#

^w^;

dry surge
#

how about u

rugged root
#

Headachey, but okay

dry surge
#

hey how did u learned python

#

?

#

with a books o sm

zenith radish
#

!resources

wise cargoBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

primal yacht
#

"The Escapists" is currently free on the Epic Store .... if anyone is wanting it.

rugged root
#

I actually learned via Automate the Boring Stuff

gentle flint
#

learned, programmed, got stuck, learned some more, programmed some more, etc, etc, etc

rugged root
#

But I had a few other languages under my belt before

gentle flint
dry surge
#

guys u soo cool

near quarry
#

hey

primal yacht
#
near quarry
#

i want to learn but i don know where to start from

#

can you help me plz ?

rugged root
#

!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

wise cargoBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

rugged root
#

And if you have any questions or need clarification on anything, don't hesitate to ask

zenith radish
hot vigil
#

need to learn doom emacs

#

gotta start... yea

gentle flint
#

this one is still one of my favourites

hot vigil
#

i kinda agree with that

near quarry
#

why my mic is muted ?

wise cargoBOT
#

Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

primal yacht
#

also what Mr. Hemlock is saying

near quarry
#

thx

gentle flint
#

mรชme

#

@whole bear could you either join or leave

rugged root
#

@whole bear If you continue to do this you will receive a ban

zenith radish
#

KILL EM

gentle flint
#

LP, c'mon

rugged root
#

!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

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied ban to @languid scaffold until <t:1633031276:f> (6 days and 23 hours).

hot vigil
#

neit

dry surge
near quarry
#

I'm just wondering who is better Corey or Sentdex ?

dry surge
#

what i need to change

dry surge
near quarry
gentle flint
#

@willow light

primal yacht
#

I got TESV when TESV:SE was part of the "free deal"

vivid palm
dry surge
#

im cooking

gentle flint
#

is that poached eggs

#

in tomato sauce

hot vigil
#

wow

near quarry
gentle flint
#

I am intrigued

vivid palm
# near quarry not yet actually

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...

โ–ถ Play video
dry surge
#

can i dont change my profile pic

willow light
near quarry
vivid palm
#

i like all of them but corey schafer's voice is nice to fall asleep to ๐Ÿ’ค

willow light
near quarry
#

they all teach the same thing right ?

vivid palm
#

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

hot vigil
#

@gentle flint u look like the one character from silicon valley

near quarry
#

oh ok I get it

gentle flint
#

@hot vigil perhaps I am

near quarry
#

thank you very much ๐Ÿ˜

hot vigil
#

look like this guy

#

i swear

vivid palm
wise cargoBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

near quarry
#

they did actually but thank you anyway

dry surge
#

he looks so cute

dry surge
#

my schedule

gentle flint
#

!resources

wise cargoBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

gentle flint
#

@dry surge

dry surge
#

!milf

#

ohh

gentle flint
#

ha you wish

dry surge
#

no one

#

ahahahahaehaha

mortal burrow
#

Are you using git?

#

can you go back a few commits?

rugged root
#

!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

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied warning to @dry surge.

mortal burrow
#

are you using branches?

gloomy vigil
#

then someone committed something before i pushed it

haughty pier
#

I hate Jira - the buttons are confusing

gloomy vigil
#

and then i pulled and pushed

gentle flint
#

like a tug of war

gloomy vigil
#

so if i revert my commit will be reverted

#

@gentle flint i saw that

mortal burrow
#

did you close out your local branch?

gloomy vigil
gentle flint
honest pier
gloomy vigil
#

it

honest pier
#

yeah, deleting branches deletes branches

dry surge
#

i get engaged

#

im

willow light
flat sentinel
rugged root
#

@orchid barn What's up?

honest pier
gentle flint
#

for anyone who thought rice with ketchup and mayonnaise was bad
mashed potatoes from reddit:

terse needle
#

souped potatoe

gentle flint
#

ham and banana casserole ^

dry surge
#

๐Ÿ˜

gentle flint
#

!ban @rugged root bad boi

gloomy vigil
mortal burrow
#

do you guys still wear masks out?

molten pewter
#

I'm still waiting....

honest pier
restive geyser
#

aw it's a mini album. i want a full album. i will take it though

vivid palm
#

SM

#

full albums?

#

no

restive geyser
#

EXACTLY

paper tendon
#

what a hell

rocky kiln
#

half of which is nct for some reason

vivid palm
#

lol

#

it's industry wide tbh idk if SM is even the worst offender

rocky kiln
#

cough cough yg cough cough

vivid palm
#

it's pretty good. i like her in aomg

rocky kiln
#

4 only?

vivid palm
#

yes

rocky kiln
#

yeah its nice

vivid palm
#

but HSKT & red lipstick

rocky kiln
#

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

stuck furnace
gentle flint
#

banana and ham casserole

#

@stuck furnace

stuck furnace
#

๐Ÿค”

gentle flint
#

came from r/shittyfoodporn

stuck furnace
#

Ah right, I'm glad that's the case ๐Ÿ˜„

woeful salmon
#

๐Ÿ‘€

woeful salmon
#

@whole bear @somber heath we scared off the poor guy

#

lol

somber heath
#

I didn't get that impression.

whole bear
#

i hope he got his tools and went to a cave

woeful salmon
#

xD i would love to actually live and code in a cave tho ๐Ÿ˜„

#

if insects didn't exist

#

lol

woeful salmon
#

!voice @hazy lagoon

wise cargoBOT
#

Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

hazy lagoon
#

!voice

wise cargoBOT
#

Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

whole bear
#

hey @woeful salmon

#

fine

#

man

#

did u had compiler development cource in ur earlier studies

woeful salmon
zenith radish
woeful salmon
whole bear
#

hlo sir @rugged root

rugged root
slate viper
#

that was a lie

woeful salmon
#

India -> eu (idk where in europe server is) o-o

slate viper
#

pk -> eu

#

weird

#

india is more near to the server

rugged root
#

Huh

#

EU Central is the median point for most of our users, though

#

So it's the best compromise I could come up wit

coarse cape
#

sup hemockk ๐Ÿ‘‹

woeful salmon
#

๐Ÿคทโ€โ™‚๏ธ ping is goo enough and its probably just routing differences

rugged root
#

How's it going, Kit?

woeful salmon
#

like i have friends from pakistan that get 200+ ping on singapore servers while i get 70

#

cuz of bad routing

rugged root
#

@slate viper If it makes you feel any better, from the US my ping is around 113

somber heath
#

!pypi ant

wise cargoBOT
somber heath
#

Yaaas!

#
import ant```
woeful salmon
#
import express from 'express';

js import

import * as express from "express";

ts

rugged root
woeful salmon
#
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)
}
slate viper
#

sadge ping noises

rugged root
#

Yep, which is why I don't set it to US

slate viper
#

which editor is LP using ?

coarse cape
#

@zenith radish how did u configure doom for rust?

zenith radish
#

this is go

#

but also for rust you just use lsp

woeful salmon
#

๐Ÿ˜ฉ watchin this is reminding me howmuch more i have to set up vim to actually be able to stop using vs code at all

rugged root
#

You'll never stop customizing it

#

Ever

#

There is no peace

coarse cape
#

im new to doom emacs ๐Ÿ˜…

rugged root
#

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

woeful salmon
rugged root
#

Sublime you have to set them up individually

woeful salmon
#

like auto imports like he did for sync before

coarse cape
#

yep, im aware of lsp's ๐Ÿ™‚ new to doom emacs

woeful salmon
zenith radish
#

do :tools lsp and :lang (rust +lsp)

woeful salmon
zenith radish
#

@coarse cape

coarse cape
#

:((

#

anything i need to install?

zenith radish
#

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

coarse cape
#

lang is already uncommented

zenith radish
#

and install rust analyzer

rugged root
zenith radish
#

under lang there should be "rust"

#

uncoment that

#

and under :tools uncomment lsp

coarse cape
#

i have rust analyzer installed

zenith radish
#

cool

coarse cape
#

is my installation broken???

zenith radish
#

it might just be old

coarse cape
#

reinstalling

woeful salmon
#

imports in rust its just

mod <module_name>
rugged root
coarse cape
zenith radish
rugged root
#

Wait what is the flavor text next to that? "care for a cup of"

zenith radish
coarse cape
#

recloning and installing stuff

#

๐Ÿ™‚

#

WHY IS THE DEFAULT BROWSER OPENING UP VSCODEEEEE???

#

yay, lsp works @zenith radish ๐Ÿ™‚

woeful salmon
#

? just change default browser to be a browser then

coarse cape
#

browser tho?

coarse cape
woeful salmon
#

ah wait in emacs? o-o

coarse cape
woeful salmon
#

weird

sweet lodge
#

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?

coarse cape
#

btw this?

#

debugger

sweet lodge
#

Doesn't sound very nice of me to interrupt someone's vacation

woeful salmon
#

๐Ÿฐ

molten pewter
coarse cape
#

how do i set the browser using emacs?

rugged root
#

It'd probably be easier if you weren't deafened

zenith radish
#

it uses xdg-open

#

so whatever ur default for ur system is that's what is uses

sweet lodge
#

It'll be fine..

#

Probably...

somber heath
#

๐ŸŽต "You raze me down..."

stoic grail
#

Helllo

#

:<

sweet lodge
#

New picture - added some scribbles

So... Where's the zero?
On the invoice?
Cool. Where on the invoice?
...

paper tendon
#

o kurv

odd terrace
#

hello everyone

sweet lodge
#

๐Ÿ‘‹

somber heath
#

"Lawyers, guns and money" or "Lawyers' guns and money"? @crystal fox

sweet lodge
#

Law enforcement officer?

#

Astrology?

rugged root
#

I saw that there was an LSP server for it. It's actually introduced me to a couple languages I'd never seen

sweet lodge
#

Feels like I hear about a new language almost everyday at this point

rugged root
#

Usually from me going "oh huh, that's weird"

crystal fox
#

yes

vivid palm
#

Kikko โ€“ 630 W Lake St (Chicago)

#

all reviews of fancay sushi restaurants

restive geyser
#

OOOOO when are we going

vivid palm
#

idk u tell me!!!!!!!!!!!!

restive geyser
#

Any weekend in October works for me ๐Ÿ˜

vivid palm
#

okioki

#

so just not halloween weekend

#

but now we must decide............ sushi? or kbbq Cry_BC

sinful pawn
#

bisk is bacc

restive geyser
#

We do both but on different days LOL

sinful pawn
#

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

rugged root
#

Try try again

#

You'll get there

sinful pawn
#

Costs like...a lot to try again

#

4 credits is not cheap

rugged root
#

I know it

#

But if it's needed for the degree....

sinful pawn
#

it's not needed

#

it's r e q u i r e d

rugged root
#

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)

crystal jolt
#

i am going on a flight tomorrow : D

#

just hold your breath

#

ez

sinful pawn
#

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

rugged root
#

Well

#

Common sense

crystal jolt
#

eat chicken and rice >:D

sinful pawn
#

What's a Wendy's? The only thing I know about it is the Twitter roasting

#

oh

coarse cape
#

aww rip

#

im here

#

im listening

#

dw

#

xD

sinful pawn
#

Still listening, and writing code

coarse cape
#

same here

#

xD

sinful pawn
#

The Good, The Bad, The PyCharm
?

rugged root
#

PyGen

sinful pawn
#

oh

coarse cape
#

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

#

๐Ÿ˜ฆ

sinful pawn
#

VS is cool for doing C++ on Windows

coarse cape
#

oh

#

i meant editors as well ๐Ÿ˜…

#

yeah

#

true

sinful pawn
#

Hemlock we're not opening the "What's an IDE and what's an editor" can of worm right

coarse cape
#

should i pay for subl?

#

or is it free?

#

i can pay but

#

oh

#

so unlimited?

#

ooo

#

that may be annoyin at times, yeah

sinful pawn
#

I call Sublime Text "subble" because of its subl launcher

coarse cape
#

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

sinful pawn
#

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

coarse cape
#

vscode vs sublime?

sinful pawn
#

atom is...........ehhh..........decent.........for a specific workload of mine......

#

the rest is no

coarse cape
#

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

sinful pawn
#

Don't wanna deal with command line, and it looks minimalist which is my thing

coarse cape
#

i came from the terminal and vscode ๐Ÿ˜‚

sinful pawn
#

Cost around the same as text

coarse cape
#

is sublime faster than vscode in editing and opening times?

#

i should try it then

#

a

#

alright!

#

hmmm

#

yep

sinful pawn
#

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?

coarse cape
#

do u use subl daily?

coarse cape
#

you have mail, web brower

#

vim is just a text editor

coarse cape
#

no mouse needed

coarse cape