#voice-chat-text-1

1 messages · Page 74 of 1

midnight kettle
#

rip mr hemlock

#

he was like a father to me

#

he was the son that i never had

pseudo dagger
#

LOL 🤣

#

if he's a father figure to you how that makes him as the son you never had?

#

sorry 😕

#

i am sorry that my mic sucks

#

what up?

#

how was today?

#

american politics in the UK?

#

why do peeps use c#?

#

you guys have js backend and Go is there you can use that right?

dark copper
#

guys

#

i have a question

#

how the heck do i make homemade pizza?

#

i know but

pseudo dagger
#

so software dev is not only fullstack it's based on security and so on?

dark copper
#

i mean, asking is more fun

pseudo dagger
#

where can i find those like projects ?

charred creek
pseudo dagger
#

like you said opensourced things

hearty heath
#

Yo

#

I actually talked on mic a minute ago...

#

Erm, in the other channel.

pseudo dagger
#

@charred creek how come you don't have an english accent?

slim swift
charred creek
#

I sold it on ebay

steel tartan
charred creek
pseudo dagger
#

i dont know the difference

steel tartan
#

which platform did you use

#

for coding

pseudo dagger
#

wym?

charred creek
#

my chair

steel tartan
#

sdjfndfjndjgnjngkdfnjg

charred creek
steel tartan
#

not funny tho

charred creek
steel tartan
#

jk don't cry

charred creek
steel tartan
#

so u from Dallas 😄

#

NOT ENGLAND

#

skjnfdjfn

charred creek
#

I got the horses in the back

steel tartan
#

knew that

charred creek
#

New that

steel tartan
#

bruh moment

charred creek
#

my life is a bruh momento

steel tartan
#

bruh momentum

charred creek
#

bruh bromentum

steel tartan
#

bruh bromancetum

charred creek
#

bruh bromancetummy

steel tartan
#

bruh bromancetummyum

#

okay whatever

#

:))

charred creek
#

gg wp

pseudo dagger
#

i got this doubt i am currently working on algos like Greedy ,Dynamic programming and so on like that how's that used in work?

#

most guys does competitive programming

steel tartan
charred creek
mild flume
steel tartan
#

anybody wants to play come joini

hearty heath
#

@pseudo dagger what were you wondering about dynamic programming?

pseudo dagger
#

well i am currently doing that for now

#

i am learning that

hearty heath
#

Ah alright. And you were interested in applications?

pseudo dagger
#

yeah

#

@hearty heath have you worked in it ?

hearty heath
#

Not as a job 😄

#

Erm, but examples would be things like optimization problems in e.g. logistics.

pseudo dagger
#

i wanted to ask this what's logistics?

hearty heath
#

Like, say you're amazon, and you need to figure out the best way to route your delivery trucks around a city to make all of the deliveries.

#

Although they tend to use algorithms that are approximately correct/optimal, rather than trying to find the optimal solution, which is often an intractable problem.

pseudo dagger
#

yeah that's where greedy is used tho

#

making it optimal(minimum or maximum) to their logic

hearty heath
#

Yes, that's true. Generally programming competition problems aren't very reflective of the real world because they don't take into account uncertainty, or other practical issues.

pseudo dagger
#

well i use that for getting into jobs then

hearty heath
#

Yes, except for the job-interviews of course 😄

pseudo dagger
#

i am really into ML man

hearty heath
#

Oh nice

pseudo dagger
#

i am not doing anything for now that's really making my mind blow

#

haven't started yet ☹️

mild flume
#

!user

coarse hearthBOT
#
Mr. Hemlock#2740

hypesquad_balance early_supporter

User information

Created: 5 years, 3 months and 22 days ago
Profile: @mild flume
ID: 98195144192331776

Member information

Joined: 2 years, 8 months and 18 days ago
Roles: <@&463658397560995840>, <@&764802720779337729>, <@&295488872404484098>, <@&267630620367257601>, <@&797891034906099752>, <@&587606783669829632>, <@&267629731250176001>, <@&267628507062992896>

Infractions

Total: 10
Active: 1

pseudo dagger
#

wow !

hearty heath
#

@misty sinew you're really quiet

pseudo dagger
#

yeah he's

misty sinew
#

thanks for letting me know, ill troubleshoot it

pseudo dagger
#

never witnessed who speaked before

misty sinew
#

so apparently realtek reinstalled itself after i uninstalled it yesterday

pseudo dagger
#

lmao

#

how did that happened ?

misty sinew
#

no idea, but i dont want to uninstall it and restart my computer anytime i want to use my microphone

vocal ivy
#

.exe

pseudo dagger
#

hmm you really did troubleshooted it

vocal ivy
#

.sb3

pseudo dagger
#

what's the software name ?

hearty heath
#

@lone dew have you introduced them to turtle?

pseudo dagger
#

hmm turtle does help tho

hearty heath
#

Maybe have the turtle move randomly until it reaches the edge of a circle?

#

Maybe a number guessing game?

pseudo dagger
#

how bout merge sort 😂

charred creek
#

What about Object Detection?

pseudo dagger
#

using tensorflow?

charred creek
#

no, using only vanilla python

misty sinew
#

im a big big dummy, figuring realtek out as we speak

pseudo dagger
#

lol dude

#

what's vanillla python?

#

lol

#

opencv?

mild flume
#

!e

print("We will enter the first loop, print one number then break out.")
for i in range(2):
  print(i)
  break
else:
  print("We won't enter this")

print("We are out of the loop\n\n")

print("We will now enter the second loop, print out two numbers, then enter the else")
for i in range(2):
  print(i)
else:
  print("We have entered the else.")
print("We have left the else")
coarse hearthBOT
#

@mild flume :white_check_mark: Your eval job has completed with return code 0.

001 | We will enter the first loop, print one number then break out.
002 | 0
003 | We are out of the loop
004 | 
005 | 
006 | We will now enter the second loop, print out two numbers, then enter the else
007 | 0
008 | 1
009 | We have entered the else.
010 | We have left the else
charred creek
#

!e

try:
    print("Try")
    raise Exception("Test")
except:
    print("Except")
else:
    print("Else")
finally:
    print("Finally")

print("\n")

try:
    print("Try")
except:
    print("Except")
else:
    print("Else")
finally:
    print("Finally")
coarse hearthBOT
#

@charred creek :white_check_mark: Your eval job has completed with return code 0.

001 | Try
002 | Except
003 | Finally
004 | 
005 | 
006 | Try
007 | Else
008 | Finally
pseudo dagger
#

good night guys

charred creek
#

night good guy

mild flume
#

Although I'm not sure how you could clean it up...

#

Other than just with a verbal explanation or some comments

charred creek
#

i don't think there is any reason to use a else in there

#

it should be in the try

#

or finally

mild flume
#

Hmm?

#

How do you mean

charred creek
#

its just syntactically right, but wrong.

mild flume
mild flume
charred creek
#

@noble vale

mild flume
#

!resources

coarse hearthBOT
#
Resources

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

true valley
#

!user

coarse hearthBOT
#

You are not allowed to use that command here. Please use the #bot-commands channel instead.

charred creek
acoustic bolt
#

i kinda want to get sunflower seeds now lol

dark copper
#

good nigh

#

good night*

#

bye bye

#

:D

golden marsh
mild flume
#

@fervent notch Helping with what?

fervent notch
#

can you??

#

are you there?

mild flume
#

I'm here but I'm also working

#

What do you specifically need help with it on

#

on it

#

One of those

fervent notch
#

hmm like

#

Which monitor

royal shore
#

he want to steal a pc from store

fervent notch
#

and processor

#

and many things

fervent notch
mild flume
fervent notch
#

ok

royal shore
#

who is harry potter?

#

u mean /_/

#

Z

#

i love that chick

vivid cobalt
royal shore
#

i forgot her name

#

Emiley

#

something

mild flume
#
except ValueError:
#

Phone call, one sec

vivid cobalt
#

np

mild flume
#

Stele could likely help as well (if he so desires)

royal shore
#

once it goes to except it won't go to try right

#

continue will fix it

#

continue makes it to go to while

#

use continue

vivid cobalt
royal shore
#

s

untold storm
#

@royal shore what role are you applying for?

#

and what fair?

royal shore
#

career fair

untold storm
#

yes, which one, and which city

royal shore
#

hyderabad

untold storm
#

how was the experience? got any leads?

#

😂

#

more like biryani

#

man I keep losing permissions to speak in this server

#

I'm making mine right now

#

@royal shore couldn't hear you, say that again

royal shore
#

are u applying for SalesForce Developer

untold storm
#

Nah, I am looking for backend roles

#

don't end up sending Opal's resume to recruiter

#

can you post the resumes here?

#

might help me too

#

@stuck bluff @royal shore

mild flume
untold storm
mild flume
#

Oh nifty

untold storm
#

yeah, I won't be writing career objective
it's like saying "I want to make the world a better place"

#

@royal shore internship counts as work

#

don't have to put in slash

royal shore
#

yeah

untold storm
#

@stuck bluff hallo

#

@royal shore 😂

royal shore
#

Colgate?

#

starGate

#

@stuck bluff

#

do watch it

untold storm
#

Is there any google docs like service, where people can annotate my PDF resume and give suggestions?

#

@royal shore of course, it's Indo-European

#

no Krishna and Christ are not related

#

😳

#

bro

#

arrey bro 😂

#

WHAT

#

😂 WHAT

royal shore
#

In India we have babas

#

😆

#

if i get a error i will ask baba

#

next time

tiny pumice
#

G'evening

royal shore
#

it is night dude

vivid cobalt
#

print("\n___________________________________________________________________________\n|                                                                         |\n|                                                                         |\n|                   You have succesfully added a task!                    |\n|                                                                         |\n|                                                                         |\n|_________________________________________________________________________|")
#

any other better way>

#

?

stuck bluff
#
class Garble(object):
    def __init__(self):
        super().garble()```
untold storm
#

@vivid cobalt use blank unicodes

warm tendon
#

!d str.rjust

coarse hearthBOT
#
str.rjust(width[, fillchar])```
Return the string right justified in a string of length *width*. Padding is done using the specified *fillchar* (default is an ASCII space). The original string is returned if *width* is less than or equal to `len(s)`.
royal shore
warm tendon
#

!d str.center

coarse hearthBOT
#
str.center(width[, fillchar])```
Return centered in a string of length *width*. Padding is done using the specified *fillchar* (default is an ASCII space). The original string is returned if *width* is less than or equal to `len(s)`.
royal shore
#

what about height?

#

java is teaching python

#

nice

warm tendon
#

😔

#

!resources

coarse hearthBOT
#
Resources

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

mild flume
royal shore
#

i'm complimenting you

royal shore
stuck bluff
warm tendon
#

like streams

#

python needs cool iterators

untold storm
#

such as?

#

show example

warm tendon
#

imagine

royal shore
#

😆

#

Salesforce is using it

mild flume
warm tendon
#
var topPaidEmployees = Stream.of(employees)
  .mapToInt(Employee::getSalary)
  .filter(e -> e > 100000)
  .sorted()
  .collect(Collectors.toList())
#

this line in python would be horrible

#

whereas with cool iterators, it's easily readable

#

by cool, i mean being able to chain them instead of nesting

rose solar
#

cool

royal shore
#

looc

#

linux?

rose solar
royal shore
#

Garuda

rose solar
#

i only use ARCH btw

#

manjaro best jaro

royal shore
#

Gauda is Arch based

untold storm
#

loved Manjaro
now am just lazy so I use Ubuntu

royal shore
#

more features

rose solar
#

more features != more good

#

but i get your point 😛

warm tendon
#
top_paid_employees = list(sorted(filter(lambda x: x > 100_000, (e.salary for e in employees))))

the equivalent of the java thing i sent

rose solar
#

salami baloney

#

top_paid_employees = ["macro"]

vivid cobalt
royal shore
vivid cobalt
#

what am i doing wrong ^^?

royal shore
#

to install and test

#

i'm not expert in this things

warm tendon
#

@vivid cobalt does it work?

vivid cobalt
#

no

#

syntax

#

error

mild flume
untold storm
#

@wary schooner browser automation

rose solar
rose solar
royal shore
#

Garuda is optimized for gaming

#

and hacking

untold storm
#

Selenium

rose solar
untold storm
#

personally I like using JS for browser automation

royal shore
rose solar
#

i only use TS

#

JS sucks haha

untold storm
#

hahaha why do so many ppl want such bots tho

rose solar
#

i only use arch, windows sucks haha

vivid cobalt
#

any suggestions @warm tendon ?

royal shore
#

what is seeker bot

#

?

warm tendon
#

does it work? @vivid cobalt

mild flume
vivid cobalt
#

no

#

syntax error

untold storm
#

@royal shore sneaker bot, to buy shoes for you when things get released

royal shore
#

oh

untold storm
#

it is a big market yes

warm tendon
mild flume
warm tendon
#

jinx

untold storm
#

haha

royal shore
#

@mild flume i subbed

#

please do giveaways

#

😆

warm tendon
#

@vivid cobalt what's wrong?

warm tendon
#

hm

#

!code

coarse hearthBOT
#

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.

warm tendon
#

please send code

untold storm
#

dude wrong fstring

warm tendon
#

and the full error message

untold storm
#

my guess

mild flume
#

@tiny pumice 👋

untold storm
#

@vivid cobalt something wrong with fstring I think

warm tendon
#

WOW

vivid cobalt
#
print("\n___________________________________________________________________________\n|                                                                         |\n|                                                                         |\n|"f'you have succesfully modified u to h'.center(75) '|'.rjust(74) "\n|                                                                         |\n|                                                                         |\n|_________________________________________________________________________|")
untold storm
#

bro

mild flume
#

@summer narwhal You'll likely have an easier time getting help using our help system. See #❓|how-to-get-help for more details on that

royal shore
#

when do legends

warm tendon
#

normal strings do not work across lines

royal shore
#

joining lemon stream

stuck bluff
#

"Buy my new, topselling book, How I accidentally became a scientific authority."

summer narwhal
#

#?

vivid cobalt
#

wym?

warm tendon
#

!e

print("but you can use implicit string concatenation"
"like this"
f"{'and like this'}"
)
coarse hearthBOT
#

@warm tendon :white_check_mark: Your eval job has completed with return code 0.

but you can use implicit string concatenationlike thisand like this
tiny pumice
#

Q&A day was pretty fun

vivid cobalt
#

could u add the center.() to that example?

warm tendon
#

not really

vivid cobalt
#

add it to "like this"

#

why not?

untold storm
#

go with SQL

warm tendon
#

well you could, but it'd probably just be easier to use separate prints

rose solar
#

postgresql best sql

untold storm
#

I like ORMs

royal shore
#

which virtual box is best

tiny pumice
#

ORMs are a blessing

untold storm
#

they truly are

tiny pumice
#

I refuse to touch raw SQL queries

untold storm
#

I love the Django's built-in one

#

@tiny pumice Based

tiny pumice
#

abstractions go brrt

whole finch
#

when the voice channel is full of staff :(

#

no more

warm tendon
#

i mean, it wasn't before

untold storm
#

am using peewee, it's cute

warm tendon
#

it was only 3/14

#

now it's 1/5 :)

tiny pumice
#

Having to define a type once and make the compiler derive JSON/Database representations is ok_handbutflipped

untold storm
#

just use SQL

tiny pumice
#

Python 4 is coming soon™

warm tendon
#

soon™️

royal shore
tiny pumice
#

So, never?

royal shore
#

2023

warm tendon
#

My current expectation is that Python 4.0 will merely be "the release that comes after Python 3.9".

untold storm
#

hahaha

tiny pumice
#

3.10 has some pretty neat features

untold storm
#

what's new in it

tiny pumice
#

Currently on Alpha 5

warm tendon
#

pipes for typehints i think

untold storm
#

@tiny pumice what neat feature

stuck bluff
#

"In the year twenty-five twenty-five...":musical_note:

tiny pumice
royal shore
#

hemlock u to make some videos

tiny pumice
#

Here's one for beginners

untold storm
#

am sold

tiny pumice
untold storm
#

good

#

thanks, pure

tiny pumice
#

Lots of typing stuff

stuck bluff
#

People with less following than this server have struck view oil.

warm tendon
#

@tiny pumice the typing features are going to be so nice

tiny pumice
#

ParamSpec is ok_handbutflipped

royal shore
#

making computer to do what u want to do

wary schooner
#

any fool can write a code which computer can understand...legends make code that human understands to

#

👀

royal shore
#

Any fool can write print() but legends define their own functions

rose solar
#

i start all my js files with
const print = console.log

warm tendon
royal shore
#

Any fool can import packages but legends built their own packages

#

Hello Legend Laundmo

warm tendon
#

more like

mild flume
warm tendon
#

lawndmower

mild flume
#

HA

#

Your ass is grass and he's the LAWNDMOWER

royal shore
#

ohh

#

Savage Hemlock

golden marsh
tiny pumice
wary schooner
#

@mild flume do i need to learn sql before learning sqlite3?

warm tendon
#

you could probably just learn them at the same time

mild flume
#

No, you can - that

#

What Pub said

warm tendon
#

you only need to know the sql statements that you need to know

wary schooner
mild flume
#

Think of it this way, it'd be like learning Python without being able to test the Python code

rose solar
#

gezundheit

still pond
#

The channel is full? How??

warm tendon
#

basically, you realize that you want to get data in this way, and you look up how to get the data in that way

still pond
#

wow

mild flume
#

SQLite3 lets you test and learn your SQL code

#

We should probably migrate back to Voice Chat 0

rose solar
mild flume
#

I don't feel like tweaking the size of this channel yet

still pond
#

Oh I see

mild flume
#

I'm still testing the needed sizes

royal shore
#

20max

mild flume
#

Toying around with what's best. Also be right back, having to snag something for a co-worker

royal shore
#

ok

#

do u guys ever get back pain?

rose solar
#

yes

#

you gotta work out, move around, get up from your chair

royal shore
#

yeah

#

i have started doing it

#

i want to go to walking and gym

#

but i'm scared of covid

surreal oasis
#

i think its a bad idea for voice chats permision

#

to send 50 messages

surreal oasis
#

i send this message only for permision

royal shore
#

i disagree with u

surreal oasis
royal shore
#

this for people to stop spamming voice chat with bots

surreal oasis
#

i never seen a voice chat bot in discord

royal shore
#

i mean they raid

#

with friends too

royal shore
surreal oasis
#

XD

royal shore
#

don't worry soon u will be on voice

#

please introduce ur self

surreal oasis
surreal oasis
royal shore
#

what u do in python? why u joined?

surreal oasis
#

XD

royal shore
#

nice

surreal oasis
#

and im CE(i really dont like this name)

#

collage degree

royal shore
#

CSE

#

metoo

#

i'm in final year

surreal oasis
royal shore
#

i'm in Final year of Btech in CSE

#

currently waiting for my college to Finish and land a developer job

surreal oasis
#

i worked from second year

royal shore
#

u mean internship

stuck bluff
#

Ackshually...

surreal oasis
royal shore
#

nice

surreal oasis
royal shore
#

so u worked as backend developer?

surreal oasis
elder rover
#

hello

surreal oasis
#

john weak

elder rover
#

i need help

#

i try to use script but it says module not found

#

im new

#

idk the base of coding

royal shore
elder rover
#

i uninstall thonny thing

surreal oasis
#

india?

#

XDDD

royal shore
#

ha yes

#

but trying to be funny

acoustic bolt
elder rover
#

i dont know let me try that

misty sinew
#

hello

stuck bluff
#

"I'm a hot turkey." - @rose solar

misty sinew
#

lmaoo

rose solar
#

haaat

elder rover
#

there no link to install

misty sinew
#

uhm ye

surreal oasis
#

noice

rose solar
#

this is one of our traditional garments

#

yes, I'm Romanian

acoustic bolt
surreal oasis
#

kebab?

rose solar
still pond
#

Everyone claims it is their food around these parts, eh?

rose solar
royal shore
#

this one

#

macro

tepid schooner
acoustic bolt
tepid schooner
royal shore
#

I'm proud to say that City where i live makes Best Biriyani in the World

elder rover
#

ok

royal shore
#

yeah

#

😎

royal shore
#

Orthodox

#

Religion ==Moral

#

,ethics and purpose

tepid schooner
#

@royal shore ever watched matrix

surreal oasis
#

@royal shore In islam we belive in our soul comes from gods soul

tepid schooner
#

i agree @royal shore

surreal oasis
royal shore
#

we all are same bro

tepid schooner
#

i think we are all in a simulation

#

quantum mechanics

misty sinew
#

Interesting material for making a manga out of...though... @rose solar

#

so i'm listening

stuck bluff
#

Language shapes concepts.

#

Without words, the brain has a harder time wrapping around ideas.

surreal oasis
rose solar
tepid schooner
#

animals have type of special abilities

royal shore
#

some animals cry

#

i have seen dogs

#

doing that

#

they too have emotions like us

acoustic bolt
#

isn't there a type of shrimp or something that can see way more primary colors than we can?

tepid schooner
#

what about dolphin

surreal oasis
#

@rose solar animals in lower level of intelligence but they have soul too

acoustic bolt
#

https://en.wikipedia.org/wiki/Mantis_shrimp#Eyes
"They are thought to have the most complex eyes in the animal kingdom and have the most complex visual system ever discovered."

Mantis shrimps, or stomatopods, are carnivorous marine crustaceans of the order Stomatopoda, branching from other members of the class Malacostraca around 340 million years ago. Mantis shrimps typically grow to around 10 cm (3.9 in) in length, while a few can reach up to 38 cm (15 in). The largest mantis shrimp ever caught had a length of 46 cm...

royal shore
#

The human brain can continue functioning for more than 10 minutes after the body has died, scientists have discovered. Intensive care doctors reported observing the same kind of brain waves in a patient whose pulse had stopped and whose pupils were unreactive as occurs during deep sleep in healthy people

rose solar
#

i was dead until i was 5

royal shore
#

kids now a days are so smart

tepid schooner
#

@gusty axle you mean zero energy == death

rose solar
royal shore
#

end of the day happiness matters

tepid schooner
#

happy

#

lol

rose solar
golden marsh
royal shore
#

Good to see people with Common thoughts or interest

tepid schooner
golden marsh
#

@knotty solar theres already a conversation going on, maybe its better to open a help channel #❓|how-to-get-help

royal shore
#

@tepid schooner i was there when you were creating ur discord id

tepid schooner
#

i mean over here on voice 1

royal shore
#

we use to have only one voice chat

tepid schooner
royal shore
#

but now

gusty axle
#

why did you tag me?

#

lol

royal shore
#

it all started from EARLY MAN

tepid schooner
#

i thought wut == what u think lol

gusty axle
#

no it means what

tepid schooner
#

got that

royal shore
#

it depends where we grow

#

read this

tepid schooner
#

jhingalala lol

royal shore
#

Believe System

tepid schooner
#

karma explains how universe returns

knotty solar
#

wtf are you guys talking here about today?

#

what is all that?

tepid schooner
#

spiritual talks

knotty solar
#

karma's a bitch

#

from a movie

mild flume
#

Sorry, just sat down with you guys and had to get right back up. Just one moment longer and I'll be back proper

royal shore
#

ok

mild flume
#

@misty sinew Also I just now realized I'm a dick and forgot to check when you had enough messages. That's my bad

elder wraith
#

When marketing becomes karma

mild flume
#

Been stuck running all over the office

misty sinew
stuck bluff
#

@rose solar There's a bit from the Matrix trilogy where one character describes karma as just a word, like love, that, for him, karma simply means "What I am here to do", that he does not regret his karma.

rose solar
stuck bluff
#

Second or third movie.

rose solar
#

ahaa ok, ty

vivid cobalt
royal shore
#

like self satisfication

misty sinew
#

Im not

#

yeah sorry

#

didnt know it did echo

royal shore
#

socializing

#

yes ur right

misty sinew
#

@royal shore , does your real name happen to be Vijay?

rose solar
rocky granite
rocky granite
surreal oasis
rocky granite
acoustic bolt
rocky granite
knotty solar
#

help-nickel, if someone's got some time?

royal shore
#

i want to write but my english sucks

#

😆

misty sinew
rocky granite
sly pond
#

spell check

#

and have someone proof

#

you just need to get your ideas on paper

#

Don't worry about the little mistakes

#

get the big picture down

royal shore
#

sometimes I do this

#

haha

royal shore
#

he is legend from Russia

royal shore
#

😆

sly pond
#

I can't, wait 12 minutes to talk because 2 people are having a conversation, not allowing others in, and as soon as I do find an opening, I am interrupted by a shot mic, nice.

royal shore
#

Dance is Good for mental and physical

#

we dance on roads

#

haha

#

😆

sly pond
#

I see people dancing in public, I see them congregrating in churches, videotaping it, people have no shame, or the ydo

#

we're all unique, bunching all of us in one is not how any of this works

royal shore
#

at Ganesh nimajjanam

sly pond
#

some don't care if we make a fool of ourselves, some think that the most embarassing moment in a life is not their own

royal shore
#

Do what makes u happy with out hurting others

royal shore
#

haha

rose solar
#

yes it does

#

very nice haha

charred creek
#

Tame Impala = Australia
It's like, the bet thing from there

royal shore
#

one question what u do?

rose solar
misty sinew
#

Is that from the embassy?

#

or the consulate?

rocky granite
misty sinew
#

huh

#

wait why did they send you that

rose solar
#

she just asked about it, and they responded

misty sinew
#

that's cool

rose solar
#

it is, right?

misty sinew
#

yeah

rocky granite
#

i asked them these

misty sinew
royal shore
#

I want to Travel all around the World

#

and eat all food

misty sinew
royal shore
#

yeah

misty sinew
#

My parents were born there

#

wait where have you been so far

#

in terms of countries visited

rose solar
#

from: macro#5246 has: image

misty sinew
#

I have been to Mexico,India,Italy,Switzerland,France,England,Scotland,Thailand

royal shore
#

Nice

misty sinew
#

notice how most of those countries are close together LOL

rocky granite
#

Not close

misty sinew
rocky granite
#

ah okay

royal shore
#

I feel Safe here

#

😆

rocky granite
#

🙂

royal shore
#

nice to meet u FabSam and Macro

misty sinew
#

I can't speak 😦

rose solar
#

nice to meet u too 😗

rose solar
rocky granite
#

“Each friend represents a world in us, a world possibly not born until they arrive, and it is only by this meeting that a new world is born.”

― Anais Nin

rose solar
#

check #voice-verification @misty sinew

mild flume
rose solar
misty sinew
rose solar
misty sinew
mild flume
royal shore
misty sinew
rose solar
#

135mm

misty sinew
#

I don't live near any nature 😦 big city vibes

mild flume
#

No nature centers or something just outside the city?

royal shore
#

i have pics but my phone dead

#

lets me search on drive

misty sinew
#

No parks

mild flume
#

That's unfortunate

misty sinew
#

I live in a high density neighborhood

#

so 😦

mild flume
#

Fair

verbal fjord
#

@royal shore u changed ur pfp again ?

mild flume
#

He's had that one for a while

#

Or at least some variation of teh spiderman

verbal fjord
#

x)

mild flume
#

How've you been, Jag?

rose solar
#
DPReview

Back in August 2005 Canon 'defined a new DSLR category' (their words) with the EOS 5D. Unlike any previous 'full frame' sensor camera, the 5D was the first with a compact body (i.e. not having an integral vertical grip) and has since then proved to be very popular, perhaps because if you wanted a full frame DSLR to use with your Canon lenses and...

verbal fjord
rose solar
#

thank you 😗

mild flume
#

Been alright. Spilled a lot of water on myself but eh

verbal fjord
rose solar
misty sinew
misty sinew
mild flume
#

Makes sense

rose solar
mild flume
#

It's an interesting throw back to the old Polaroid cameras of back in the day

misty sinew
#

This server is the friendliest server I've been in lol

mild flume
#

Being able to have something physical instantly is amazing

misty sinew
#

vintage vibes

mild flume
misty sinew
#

F451 vibes in this convo

#

anyone read Fahrenheit 451?

mild flume
#

I keep hearing that I should but it's never really gotten into my hands

#

@stark saddle Hiiiiiiiiiiiiiiii

misty sinew
coarse hearthBOT
#

:x: According to my records, this user already has a mute infraction. See infraction #26975.

#

:x: According to my records, this user already has a mute infraction. See infraction #26975.

#

failmail :ok_hand: applied mute to @royal shore until 2021-01-21 18:14 (9 minutes and 59 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).

stark saddle
#

@mild flume HIIII

misty sinew
#

f

rose solar
mild flume
#

!unmute 699843694890713139 Don't spam your links, dude

coarse hearthBOT
#

failmail :ok_hand: pardoned infraction mute for @royal shore.

idle beacon
#

Do you use any specific note taking app?

royal shore
rose solar
misty sinew
rose solar
#

brb 5 mins

royal shore
stark saddle
#

OneNote or Notion are my faves for note taking. Also don't underestimate the power of pen and paper

misty sinew
#

Ever seen an albino peacock?

royal shore
#

this pics are taken with the help of mobile phone

misty sinew
#

yeah I love trees

#

Bay Area

royal shore
#

nice

#

u took it

tardy moat
royal shore
#

?

misty sinew
#

geoguessr is good

misty sinew
#

wow

#

amazing

royal shore
#

Fab same and hemlock share

#

some pics

ebon vessel
misty sinew
#

Has anyone watched Community?

#

the TV show

tardy moat
misty sinew
#

I pronounce it offen

knotty solar
#

can I change file-permission using some python code? some module?

#

on windows, not linux

misty sinew
#

Only 2 other people in the US have the same name as me

rose solar
knotty solar
#

👆 antenna?

rose solar
#

kinda, not sure what it is haha

misty sinew
rose solar
#

ty

knotty solar
#

maybe laser cannons?

rose solar
#

yes

royal shore
#

Fabsam is Awesome

rose solar
royal shore
#

thank you Micro

rose solar
rose solar
knotty solar
#

ok, anyone knows anything about this?

misty sinew
#

I want to learn about philosophy but I don't know where to start

mild flume
rose solar
#

yes, more engaging, and in a different way, from what i've heard

stark saddle
#

That's also why I love OneNote. I get to handwrite on my surface but it's still digital and portable

rose solar
#

i should improve my writing, because it's hard for me to understand what i write haha

misty sinew
#

yeah I've scored better in numerous tests when writing vs note taking online

mild flume
#

Maybe I should get a tablet....

acoustic bolt
#

i've definitely found that to be true, typing just doesn't help me as much

rose solar
royal shore
misty sinew
mild flume
#

Har har

stark saddle
#

Ah crap, another meeting

rose solar
royal shore
#

@stark saddle Good luck

misty sinew
#

I legally can't get vaccinated 😐

mild flume
#

How so?

misty sinew
knotty solar
#

health-care-workers -> patients -> cops -> old-rich-people -> young-rich-children -> rich people -> rest-of-richy-richs
.

#

.

#

.

#

then me

#

vaccine plan in my country

misty sinew
#

My country doesn't have a vaccine rollout plan 👍

#

yayy

royal shore
#

we have to

knotty solar
#

😂 😂 😄 😅 😢

royal shore
#

no choice

misty sinew
royal shore
#

there are 3 vaccines

#

bharat biotech

knotty solar
#

I read, phizer vaccine failed after 12 days of people getting it
so hooray?

misty sinew
#

We have Moderna and Pfizer and possibly more idk

#

Also new strain yayy

royal shore
#

Are you from UK

#

?

misty sinew
royal shore
#

oh

#

don't worry eat eggs

misty sinew
knotty solar
#

so, this is how it will all end huh, we make a vaccine, corona gets a new flavor, then
same shi* all over again until 10 people left

#

10 introverts

misty sinew
#

If you could learn any language, what would you learn

knotty solar
royal shore
misty sinew
#

behind the DC area

#

also I want to learn Spanish or ASL(American Sign Language)

knotty solar
#

i love listening to myself when I code,
calms me down

misty sinew
royal shore
#

Good night Folks , Feeling sleepy bug bye 🙂

misty sinew
#

I have a class in 5 mins 😦

knotty solar
royal shore
knotty solar
#

mine starts at 9, people join at 9:15
i do at 9:30
attendance at 9:40

misty sinew
#
knotty solar
#

Hemlock, they don't get mad when you hang out in discord while at work?

vocal ivy
vocal ivy
knotty solar
misty sinew
vocal ivy
misty sinew
#

My county is in the top 3 for covid cases in california and in the top 20 or something in the nation

misty sinew
knotty solar
#

pumps me up everytime

misty sinew
#

Anthony Domondon has congestive heart failure, diabetes and HIV – but that wasn’t enough for a hotel room under the state’s program for COVID-19 vulnerable homeless people. “Basically they want me in a body bag before they give me a hotel room,” Domondon told San José Spotlight. Sitting on a curb outside a now-closed Office...

#

Look my county is in the news

knotty solar
#

k, bed time
later 👋

#

@vocal ivy they say, listen to no lyrics music for focus,
not the one with lyrics

#

yeah

#

don't worry

#

about it

#

hmm, whatever floats your boat

#

ciao

misty sinew
#

I have chronic migraines

#

usually during winter and summer

#

it hurts and I can't run

#

lots of sinus

#

ouch

charred creek
#

sinus tech tips

misty sinew
#

maybe if it's too much you'll have to go through Unbox Therapy

#

ahem

#

ahem

#

sorry

#

I have to go

#

I bid you adieu

charred creek
#

go you have to

rose solar
#

byee

mild flume
#

Okay so

#

I totally read that as allergic reaction to hamsters

rose solar
mild flume
#

True

#

Especially when they try to stab you

#

?

charred creek
#

idk

#

am I a nerd or smthin

mild flume
#

I'm guessing that was simply intended to confuse

charred creek
#

prime humour

#

almost alpha humour

mild flume
#

Optimus Prime Humor

charred creek
vocal ivy
novel parcel
#

"Why are we here........just to suffer?"

vocal ivy
#

manifest

lucid heart
#

does anyone know php?

novel parcel
#

not a single soul

#

Nobody on the python server knows php

#

go to the php server

charred creek
#

P||yt||h||on||p

novel parcel
#

no no no

#

php

#

server

mild flume
mint pumice
#

7 Surprising Ways Coding is More Refreshing than New Socks

#

Save Your Marriage Using Only Coding

#

Darth Vader's Guide to Coding

#

Why Coding is Killing You

mild flume
#

!projects

coarse hearthBOT
#

Kindling Projects

The Kindling projects page on Ned Batchelder's website contains a list of projects and ideas programmers can tackle to build their skills and knowledge.

mint pumice
charred creek
golden marsh
#

Write a program that reads a list of integers from the user, then counts the number of multiples of 3, 4, 5, and 6 in the list.

#

Write a program that reads in the number of days in each month, then prints a calendar for the current year. The calendar should have a new line after each month

#

Write a program that reads in a list of five-letter words, then finds and displays the longest word that can be formed by concatenating two words from the list.

#

Write a program that reads in a list of words and a list of numbers, then outputs a table where the words and numbers are sorted alphabetically and the words are formatted as plurals. Include blank lines between the paragraphs.

#

Write a program that takes a list of words and a list of numbers, then creates a list of pairs where each pair contains a word and a number.

mild flume
#

@oak vale https://repl.it

elder wraith
#
charred creek
#

!e

def fizz1(n):
    if n % 8 == 0 and n % 5 == 0:
        return "FizzBuzz"
    elif n % 8 == 0:
        return "Buzz"
    elif n % 5 == 0:
        return "Fizz"
    else:
        return n

def fizz2(n):
    if n % 40 == 0:
        return "FizzBuzz"
    elif n % 8 == 0:
        return "Buzz"
    elif n % 5 == 0:
        return "Fizz"
    else:
        return n

t1 = [fizz1(num) for num in range(100)]
t2 = [fizz2(num) for num in range(100)]
assert t1 == t2, "Wrong"
coarse hearthBOT
#

@charred creek :warning: Your eval job has completed with return code 0.

[No output]
charred creek
#

@elder wraith ^

#

what i was talking about before

elder wraith
#

What?

charred creek
#
    if n % 8 == 0 and n % 5 == 0:
``` is the same as 
```py
    if n % 40 == 0:
wise tapir
#

C?

charred creek
#

?

lucid heart
charred creek
#

no?

#

will 16 mod 5 give you 0?

lucid heart
charred creek
#

so what are you tryna tell me?

lucid heart
#

Bro see i get what you are tryna do here, that if the common factors are found here, simply multiplying them, won't be beneficial

charred creek
#

?

#

ur confusing

#

me

lucid heart
charred creek
#

ok

olive ravine
#

ig he means lcm is not always the product
they're the same for 5 and 8 tho so idk

wise tapir
#

what should i run on a Raspberry Pi to comumnicate with Vive cosomse elite software?

mild flume
wise tapir
#

www2

#

ww2

charred creek
#

Eddie Woo!

wise tapir
#

where would put armor?

#

bingo

wise tapir
#

you se the data you mesure not the unmesurable

#

statistician

#

survivorship bias is from population statistics

#

the average between 0 _ 150 is 100

mild flume
#

Wait

#

What?

wise tapir
#

bell curve

charred creek
#

uwu

#

🫑 curve

wise tapir
#

the standard IQ test also counts out outlires

#

IQ test goes off to Infinity in both directions

charred creek
#

I heard Aliens have 9239213iq

wise tapir
#

what is a statistician you don't count people that are 0 or way off

#

people that score above 140r then retested A Gifted test

untold storm
#

how far am I from getting the voice rights

golden marsh
wise tapir
#

if you're in the high genius category than you need a genius IQ test

#

there are extreme outliers

untold storm
#

avg IQ?

wise tapir
#

if the range is only between 0 150 with a data sample in the billions

#

if your data sample is large enough then if you have extreme outliers they can throw off statistics

#

the average can be thrown off

#

one outlier in 10,000 with 250 can throw off the statistical accuracy

#

no you cannot cheat in IQ test because you administer multiple tests

#

yes