#voice-chat-text-0

1 messages · Page 703 of 1

sick cloud
#

and by the way, i'm trying to make a music bot, cuz why not

#

depends on my mood

#

but i listen to songs like:

#

all english

#

@whole bear listen to the one above

#

yessss

#

i'll be here

#

i'll probably be here

#

utill i go to bed

#

@whole bear my laptop just died

sick cloud
#

@glass gulch helo

#

@somber heath helo

#

how is ur day so far ? opal

true nest
#

hi

#

What's going on ?

sick cloud
#

ummmmm okay

#

@cloud stratus who is crying in the back ground ?

#

ofc

severe pulsar
#

;-;

#

its me

cloud stratus
#

:/

sick cloud
#

@severe pulsar helo again

#

@cloud stratus i'm okay thx

severe pulsar
#

heyyyy

cloud stratus
thin flare
#

hi

scarlet drift
#

hey guys

#

quick question

sick cloud
#

helo

#

@stoic ore

scarlet drift
#

I'm trying to create a cron job for a python script. Do I need to cd into the directory of the script via cron or just need to give the path.
Example
**** path_to_virtual_env cd path_to_script

stuck furnace
#

Hello 🙂

scarlet drift
#

wsup alex?

cloud stratus
#

Erm, hi

stuck furnace
#

@stoic ore you're a bit muffled

sick cloud
#

@cloud stratus mute ur self

#

=_=

cloud stratus
#

:D

#

Voiceeeesss

somber heath
#

@stoic ore Your audio is currently atrocious.

stoic ore
#

Okay

cloud stratus
#

I'll put myself to push to talk

stoic ore
#

I stopee

sick cloud
stoic ore
stoic ore
#

hey

somber heath
gentle flint
#
def func1(bar):
    foo = None
    while not foo:
        user_msg = input("x to exit, y to lorem, z to ipsum\n>")
        if user_msg == "y":
            foo = lorem + bar
            break
        elif user_msg == "z":
            foo = ipsum
            break
        elif user_msg == "x":
            # force func2 to print some message and exit, thereby also ending this loop
        else:
            print("Not an option, please try again")
    return foo

def func2():
    # lots of complicated code here
    bar = input("please enter bar\n>")
    foo = func1(bar)
    # do all sorts of stuff to foo, unless func1 wanted to exit, otherwise exit with a goodbye message

func2()
somber heath
#
def my_input(txt=None, valids=None):
    if txt is None:
        txt = ''
    if valids is None:
        return input(txt)
    while True:
        out = input(txt)
        if out in valids:
            return out```
#

list('yzx')

gentle flint
#
    if input() == "c":
        waypoint_id = waypoint_len+1
        print("VNAV altitude")
        while True:
            print("Enter number in feet, or press Enter to skip:")
            alt = input()
            if alt == "":
                alt == None
                break
            else:
                try:
                    alt = float(alt)
                    break
                except ValueError:
                    # will silently loop back to input request
                    pass
        insert_row(waypoint_id, waypoint, lat, lon, alt, in_db, notes)
somber heath
#

!zen

wise cargoBOT
#
The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than right now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!

gentle flint
#
            if alt == "":
                alt == None
                break
            else:
                try:
                    alt = float(alt)
                    break
                except ValueError:
                    # will silently loop back to input request
                    pass
#

s.replace('.','',1).isdigit()

somber heath
#

@gentle flint python try: alt = (None if alt == '' else float(alt)) break except ValueError: pass

gentle flint
#

shorter, but less readable

#

hmmm

somber heath
#

The pass might be better as a continue, too.

gentle flint
#

hmmm

somber heath
#

I'll change the dict get

gentle flint
#

Doesn't continue exit the while loop?

#

oh

#

nvm

somber heath
#

Nope. That's break. Continue will jump to the top of the current loop

gentle flint
#

ye, you're right

#

mb

lime plaza
#
take = input("Say lowercase yes")

if take.upper() == "Yes":
    print("It worked")

else:
    print("It didn't work")

amber raptor
#

Sure but doing that means you don't have debugging

lime plaza
#

its running else

#

oh

#

im dumb

#

nvm

gentle flint
lusty marsh
gentle flint
#

so nice, so nice

#

ńícé

lusty marsh
#

semantic highlighting

faint ermine
#

traefik2

somber heath
#

@lyric basin Your audio clarity has degraded.

#

It sounds like you have a tea towel stuffed into your mouth.

#

and you've gone to hide in a cupboard

cloud stratus
#

Quick question, how can I see a third party pips source code?

somber heath
#

I believe there should be a pip cache folder you can look at.

cloud stratus
#

There is this Zoom project on github

somber heath
#

It'll probably be in your home directory equivalent, somewhere.

#

Possibly hidden.

cloud stratus
#

Oh

#

Well I'll try finding it, thanks Opal!

gentle flint
gentle flint
#

speedboot

cloud stratus
somber heath
#

?

cloud stratus
#

Umm, I can't find the path it is in

#

It's probably cuz I of Lunix

#

I dunno how to really do stuff yet

somber heath
#

If the folder is hidden and you're using a gui file browser, you'll need to change its settings to show hidden files. They'll be preceeded by a . @cloud stratus

cloud stratus
#

Oh, indeed it is preceeded by a dot

somber heath
#

It's how linux does hiding things.

cloud stratus
#

Gotcha, thanks again

gentle flint
kind crescent
#

distance traveling from destination X to destinate Y in miles.

#

In class we were introduced to SQL and the relational model. Create a relation G with the data
shown in Table 1 that describes the distance traveling from destination X to destinate Y in miles.
G
X Y Value
A B 1
A C 2
A D 5
B D 3
C D 5
Table 1: Relation G and distances from X to Y in miles.
Once you’ve created and populated your table, write the following queries:

  1. Select all the tuples
  2. Select all the tuples whose edges are greater than 2
  3. Select all the paths of length 2
  4. Select the path of length 2 that has the greatest sum and display the sum–a hint, you can
    add values in the SELECT clause – investigate this on your own.
  5. Give the average of the edge weights
  6. Give the edges whose values are greater than the average weight
scenic geyser
#

Looks like a logarithmic x axes

gentle flint
#

vik-ing after I suggest that randomly throwing values at the question and seeing which ones mark as correct might work:

scenic geyser
#

The length value are the edges

lyric basin
#

@gentle flint yes, I had a good laugh when you said that because of a concept I learned earlier. :)

gentle flint
#

relational model is where data is organised as such^

somber heath
#

Yesdes might be more cooperative.

kind crescent
#

return "SELECT * FROM G WHERE "

gentle flint
#

select * from G where X = "A"
write this to foo
select * from G where Y = "D"
write this to bar
for i in select * from foo, bar, where X in foo is Y in bar

hybrid urchin
#

@somber heath why did u mute me on vc??????

#

@lyric basin or were u the one who did

gentle flint
#

@hybrid urchin read this channel description

#

@kind crescent

hybrid urchin
#

???????

#

dont send me external links

#

im not gonna click on it

gentle flint
#

no for you

hybrid urchin
#

??????????????/

somber heath
#

@hybrid urchin I did not mute you. 🙂 Everyone is automatically muted until they pass the requirements to become unmuted.

gentle flint
#

for you, read the channel description, famelessguy

kind crescent
#

this dude is weird man

gentle flint
#

the link was for Monky

hybrid urchin
#

bruh why thats so dumb

kind crescent
#

prevent from trolling

hybrid urchin
#

people join to ask questions all the time

somber heath
#

@hybrid urchin It prevents people wandering in off the street, so to speak, and assaulting the ears of people in voice chat.

hybrid urchin
#

what if they need to learn something immeditely

#

they have to wait 3 dAYS AND SEND 50 MSG?

somber heath
#

@hybrid urchin It became a problem

hybrid urchin
#

LIKE BRUHHHH

scenic geyser
#

How do I search for servers?

gentle flint
somber heath
#

@hybrid urchin So it was a case of "this is why we can't have nice things".

gentle flint
#

text chat is a thing

hybrid urchin
#

grep -s servers

lyric basin
hybrid urchin
#

bruh just use pandas

#

to sum

smoky burrow
#

!mute 787444300165152788 1d Falsely accusing other users of using offensive language and then using it yourself. Take some time off and sort your attitude.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @hybrid urchin until 2020-12-13 22:50 (23 hours and 59 minutes).

somber heath
#

@hybrid urchin Except you can, with a small amount of patience and contribution to conversations, become unmuted. It's a speedbump, not a permanent prohibition

kind crescent
#

query

#

return "SELECT * FROM G WHERE Value > 3.2"

#

('A', 'D', 5.0)
('C', 'D', 5.0)

gentle flint
lyric basin
#

return "SELECT * FROM G WHERE Value > 3.2 < Value"

#

return "SELECT * FROM G WHERE Value > 3.2 > Value"

gentle flint
#
def waypoint_info(waypoint_id):
    cursor = cursor_object.execute(
        "SELECT * FROM Route WHERE Waypoint_id=?",
        waypoint_id)
    row = cursor.fetchall()[0]
    waypoint_contents = {
        "id": row[0],
        "waypoint": row[1],
        "lat": row[2],
        "lon": row[3],
        "alt": row[4],
        "in_db": row[5],
        "notes": row[6]
        }
    return waypoint_contents
somber heath
#

Flee market! Run away! Run away!

gentle flint
#

Echidnas (), sometimes known as spiny anteaters, belong to the family Tachyglossidae in the monotreme order of egg-laying mammals. The four extant species of echidnas and the platypus are the only living mammals that lay eggs and the only surviving members of the order Monotremata. The diet of some species consists of ants and termites, but the...

lyric basin
#

chough

#

There are two species of passerine birds commonly called chough ( CHUF) that constitute the genus Pyrrhocorax of the Corvidae (crow) family of birds. These are the red-billed chough (Pyrrhocorax pyrrhocorax), and the Alpine chough (or yellow-billed chough) (Pyrrhocorax graculus). The white-winged chough of Australia, despite its name, is not a t...

gentle flint
somber heath
lyric basin
#

The Grote Kerk or St.-Bavokerk is a Reformed Protestant church and former Catholic cathedral located on the central market square (Grote Markt) in the Dutch city of Haarlem. Another Haarlem church called the Cathedral of Saint Bavo now serves as the main cathedral for the Roman Catholic Diocese of Haarlem-Amsterdam.

gentle flint
somber heath
severe elm
#

hey guys do you think my lower back pain last night could be cauzed by stress?

#

i barely had 2-3h of sleep

#

my back hurt like hell

#

not the first time btw

somber heath
#

@severe elm Have you got a heat pack or something?

severe elm
#

it happens every then and now

gentle flint
#

I have it when I sit in my chair badly

somber heath
#

The heat would probably help to relax the muscles.

gentle flint
#

I also have it when I walk for 6 hours
especially on bad shoes

severe elm
#

alright yeah we have one at home

gentle flint
#

isn't Australia beautiful

cloud root
#

I cant find my old friend

#

😢

gentle flint
vagrant tapir
#

Bruh i cant talk

gentle flint
#

A wallaby () is a small or middle-sized macropod native to Australia and New Guinea, with introduced populations in New Zealand, the United Kingdom and other countries. They belong to the same taxonomic family as kangaroos and sometimes the same genus, but kangaroos are specifically categorised into the four largest species of the family. The t...

paper lodge
#

guys i need some help with a stupid recursive function

#

is there anyone who can help me?

lyric basin
#

@paper lodge what kind of function?

paper lodge
#

it's on oxygen

#

occupied

#

thank you

severe elm
somber heath
#

@eternal bough I've an idea to pitch you. A dress...made entirely out of pockets.

#

Hat? Pockets.

#

Scarf? So many pockets.

#

Shoes with pockets.

#

The pockets? You'd better believe the pockets have pockets.

severe elm
#

im gonna googel that dress

#

i cant find anything

somber heath
#

@hushed tusk

severe elm
#

no dress made entirely of pockets

somber heath
#

Shameful.

severe elm
#

i'm not gonna post any girls imgs in here wearing dresses

#

i'm afraid of getting banned

somber heath
#

It tends to be more of a problem when posted without the dress.

gentle flint
#

^

#

he does have an irrefutable point

paper lodge
#

i cant spea

#

@eternal bough hello

#

i can't speak

hidden cove
#

you need to get voice verified

paper lodge
#

i'm not eligible lol

paper lodge
#

good night everyone guys

eternal bough
#

@blissful knoll and @shadow trout, feel free to join the convo here to get towards 50 messages

#

if you are working on voice verification

shadow trout
#

Im already at 50+ messages

eternal bough
#

cool

shadow trout
#

I mean

#

The economy revovles around money

eternal bough
#

true true

#

@white turret please go to the voice verifcation channel i think you have to write a command there for verification

blissful knoll
#

Hey @eternal bough thanks for the information. Confused why i am on suppressed mode. Just read the rules for voice verification

#

your conversation is really good

eternal bough
#

@blissful knoll yeah feel free to type here to join the convo to get the 50 messages to bypass the supressed mode

#

@white turret awesome about passing voice verification!

#

sure. someone helped me here the same way

shadow trout
#

I'm pretty sure i've read earlier about how some companies not being able to get the 35 bill stimulus package i think.

blissful knoll
#

hey guys i am from India and i can relate myself to the conversation but i blame the trump people to not imposing rules on people like the government in india did

shadow trout
blissful knoll
#

Indians didn't reduce the scale of pandemic but going on a 4 month complete lockdown has reduced the impact of the pandemic significantly

#

I guess the a top military officer from US has shown how to make a mask from a towel/napkin

#

lol

#

That is why protestors in HongKong cover their faces and use lasers to evade the cameras detecting them. I heard things about social score but i didn't know it was this bad. Thanks for sharing

#

@hidden cove people do the space engineering with homes too. There's a channel on YT called NeverTooSmall. Check it out once if you are interested

hidden cove
#

okay, i wll

blissful knoll
#

Hey guys, dropping off . ENJOYED listening your conversation. hope we meet again

eternal bough
#

cool see you around!

#

@pearl crescent , hi if you would want to get voice verified feel free to join our convo here via text chat

royal burrow
#

How do you know theyre all teenagers?

#

what are they in here, talking about ap coding, or just bs

#

tbh, i understand what youre talking about yeah

#

she just sounds low imo

#

check noise suppression maybe

pearl crescent
royal burrow
#

how are you making money with python

#

contract or you working for someone

#

what kind of start up are you trying to make

#

isnt python just all scripting now

#

ai pinpointing stuff

#

you need like a whole IT team for that right

hidden cove
#

Python is used for back-end web development @royal burrow

royal burrow
#

gotacha

hidden cove
#

Python is also used for AI and data science a lot.

royal burrow
#

I see

shadow trout
#

what's this and ships

#

i just came back

eternal bough
#

nix is talking about his idea of detecting ships that unload illegal substances

shadow trout
#

ah

royal burrow
#

rabbit, is that like a rabot or a rabyte

#

w

whole bear
#

Heyyaa

pearl crescent
#

what about using a sonar kinda technology?

whole bear
#

uh what does everyone think of the new aot episode ?

hidden cove
#

buoy

amber raptor
#

Sonar is too unreliable for ranging

pearl crescent
amber raptor
#

Each of the towers, reaching 33 feet in height and capable of “seeing” an area approximately three miles in diameter,

jagged trail
#

So to get to the to the 50 count to get voice rights all messages counted after August count right?

harsh island
#

ah

scenic geyser
#

How to get voice rights?

#

Oops I've already

sick cloud
#

-_-

#

that's why u can't see the voice-verify channel anymore

#

@scenic geyser

gentle flint
#

lol

sick cloud
#

@whole bear helo

#

ummm, just paste ur code here

#

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

sick cloud
#

@whole bear who is tf is talking in the background ?

#

alr, just paste ur code here and the issue

#

and i'll try to fix it

#

its fine

whole bear
#
stuff = {'gold coin': 42, 'rope': 1}
loot = ['gold coin', 'dagger', 'gold coin', 'gold coin', 'ruby']
count = {}

def add_to_inventory(inventory, added_items):
    for item in added_items:
        count[item] = added_items.count(item)
    for key in count:
        if key in stuff:
            stuff[key] = stuff[key] + count[key]
        else:
            stuff[key] = count.get(key, 1)

def display_inventory(inventory):
    print("Inventory:")
    item_total = 0
    for k, v in inventory.items():
        print(str(v) + ' ' + k)
        item_total += v
    print("\nTotal number of items: " + str(item_total))
        
add_to_inventory(stuff, loot)
display_inventory(stuff)
sick cloud
#

!e

stuff = {'gold coin': 42, 'rope': 1}
loot = ['gold coin', 'dagger', 'gold coin', 'gold coin', 'ruby']
count = {}

def add_to_inventory(inventory, added_items):
    for item in added_items:
        count[item] = added_items.count(item)
    for key in count:
        if key in stuff:
            stuff[key] = stuff[key] + count[key]
        else:
            stuff[key] = count.get(key, 1)

def display_inventory(inventory):
    print("Inventory:")
    item_total = 0
    for k, v in inventory.items():
        print(str(v) + ' ' + k)
        item_total += v
    print("\nTotal number of items: " + str(item_total))
        
add_to_inventory(stuff, loot)
display_inventory(stuff)
wise cargoBOT
#

@sick cloud :white_check_mark: Your eval job has completed with return code 0.

001 | Inventory:
002 | 45 gold coin
003 | 1 rope
004 | 1 dagger
005 | 1 ruby
006 | 
007 | Total number of items: 48
sick cloud
#

!e

#

so count is set here....

whole bear
#

yes

sick cloud
#

@whole bear here ```py
stuff = {'gold coin': 42, 'rope': 1}
loot = ['gold coin', 'dagger', 'gold coin', 'gold coin', 'ruby']
count = {}

def add_to_inventory(inventory, added_items):
for item in added_items:
count[item] = added_items.count(item)
for key in count:
if key in stuff:
stuff[key] = stuff[key] + count[key]
else:
stuff[key] = count.get(key, 1)
```you are basically trying to add loot to stuff right ?

gentle flint
#

@glass vector here

glass vector
#

hey

#

how are you

gentle flint
#

hi

#

good

#

hbu

glass vector
#

u can talk?

#

good as well soo what dou you like to do

gentle flint
#

yeah

#

you qualify for the voice role

glass vector
#

i will write and you can speak

gentle flint
#

head over to #voice-verification

glass vector
#

i just joind

#

i need 3 days

gentle flint
#

what?

#

oh

glass vector
#

yeah

gentle flint
#

did you rejoin or smth then

glass vector
#

soo what do you like to do (hobbies)

#

yeah

gentle flint
#

mostly programming

#

some bookbinding

#

carpentry

glass vector
#

before the verification was diffrent

gentle flint
#

cycling

#

O

glass vector
#

cool

gentle flint
#

Ic

#

and what do you do

glass vector
#

yeah i like to do Sales and finnance and also iust to do of programing too and i also do marketing and realllylike talking to peapole

gentle flint
#

(or typing, in this case)

glass vector
#

yup (:

#

soo where you from

#

btw if you wwant to we can voice call so you can hear me 🙂

gentle flint
#

eh

#

no need

#

I'm from Amsterdam

glass vector
#

cool

gentle flint
#

though I've lived in all sorts of places in the past

glass vector
#

nicce tthats cool

#

i dont like this new verefication sistem soo much

#

its kinda annoying tbh

gentle flint
#

eh

#

it prevents new users joining to troll and screech at the top of their lungs

#

it's kinda useful tbh

glass vector
#

lol true

#

soo am how old r u

gentle flint
#

18

#

going on 19

glass vector
#

nice

gentle flint
#

what about you

#

where are you from

#

how is slovenia

glass vector
#

its actually pretty cool its just kinda small and not soo many communitys and im more of a social person and i like working with peapole that why i like to do sales and psychology

gentle flint
#

ah, I see

glass vector
#

my

#

ok sure

#

sotrry for that my

#

byee

gentle flint
#

new theme and icon set

scenic geyser
#

Which distro is it?

sick cloud
#

idek

#

@normal hinge what ?

sick cloud
#

@whole bear i'm gud and hbu ?

#

maybe if u know how to

#

do it

#

yesss i'll help u if ik how to do it'

#

yes

sick cloud
#

@tough citrus helo

#

ofc but its trash

frozen plover
#

a

#

1

#

2

#

3

#

hey

#

w

#

s

#

a

sick cloud
#

@whole bear helo

whole bear
#

hey do you know where I should go if I need help with a java question

scenic geyser
#

I'd like to know too

frigid panther
scenic geyser
#

@frigid panther Still don't have permission to post

#

Yes I've got the privileges

stoic ore
#

Like a Ronin

#

Samurai with no master 😄

#

Programer With no teacher 😄

somber heath
stoic ore
#

here i aga'n

slate oracle
stoic nymph
#

how to start python

#

anyone??

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

whole bear
#

Hello

#

How do I create a database of users who are on the discord server?

gentle flint
#

@whole bear

whole bear
tidal salmon
#

!starify 214910690102738945 1h Please pick a nickname that isn't so noisy.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied superstar to @plush vigil until 2020-12-13 18:17 (59 minutes and 58 seconds).

#
Superstarified!

Your previous nickname, ꧁█▬█ █ ▀█▀ ꧂, was so bad that we have decided to change it. Your new nickname will be Aretha Franklin.

You will be unable to change your nickname until 2020-12-13 18:17. If you're confused by this, please read our official nickname policy.

sick cloud
#

what are we talking about ?

#

don't

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @whole bear until 2020-12-13 18:06 (9 minutes and 58 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).

sick cloud
#

F

#

i told u not too

#

spam

hushed elm
#
SNAKE JUICE RECIPE

Per 2 Liter H20:

Potassium Chloride Powder = 1 tsp
Himalayan Pink Salt = 1/2 tsp
Baking Soda = 1 tsp
Magnesium Sulphate(Optional)= 1/2 tsp

When you run out of Snake Juice repeat & don’t eat```
#

@eternal bough

sick cloud
#

hmmmm the drink is highly diluted

#

carbohydrates ?

#

sugar

#

respiration

#

some technical words

#

@hushed elm yeah cuz blood fluid does contain impurities

hushed elm
#

yeh @sick cloud

sick cloud
hushed elm
#

big brain boyo

#

haha

sick cloud
#

i'm trash at bio by the way

hushed elm
#

i don't know too much about it either

sick cloud
#

see ya later

#

bye

wise glade
#

hey gyus

#

I need some advice, on cloud computing, I understand what it is, but can anyone tell me how to approach learning it
where should I start with it

hushed elm
wise glade
#

seems like, knowledge of graphs would come in handy, with something like this 👆

hushed elm
#

yess

wise glade
#

so, opal, kutikatj, hemlock, no one's here today huh?

#

@hushed elm those webapps, do you use JS for them, or python?

hushed elm
#

@wise glade yes, i use both. python for work, js for myself

wise glade
#

for cloud computing, should I go for JS, or does it not matter whatever we go for it
to start learning cloud computing that is

hushed elm
#

hmm not sure haha

#

i think everything goes

wise glade
#

I heard, that if you make an app, and if it gets some user-base, just pack it up with micro-transactions and you're rich 😂

hushed elm
#

haha lol

#

i'm thinking of monthly subscription

wise glade
#

they don't care about yelp, where I live

frozen imp
#

guys how do i know if i am verified?

wise glade
#

you're not, voice verified

frozen imp
#

and how do i do so?

eternal bough
wise glade
#

aaahh, always my internet stops at 12:20, by bedtime mode app

frozen imp
#

thank you @wise glade

#

It seems that I'm new so i need to wait for 3 daya

#

daYS

#

and send at least 50 messages

wise glade
#

yeah, if you get voice verified, that section disappears from our channels list

frozen imp
#

the discussion there is interesting so i wanted to join

vestal badge
#

do u know whats unfair, the fact that u have to send 50 messages to speak

wise glade
#

sexy oof, that's very mature of you, grown up response

wise glade
#

you know with reviews idea, you might have to worry about chinese click farms, they post fake reviews for stuff, at least on ebay I've seen

#

does there exist a review app, like just an app for reviews? all the products, all the places (restaurants etc), and all of em reviewed

vestal badge
wise glade
#

how do you perform sentiment analysis on text reviews?

hushed elm
#

there's libraries that do that for you, you can find tools like these online

eternal bough
wise glade
#

oof, you haven't started exercising?? we all told you before, when we were discussing "anxiety vs panic attack". Start exercising a little everyday, eat healthy

vestal badge
#

so, do u think this kind of stuff can be used in psicology terms

hushed elm
#

oh i am exercising all the time @wise glade

vestal badge
#

@eternal bough

wise glade
#

sexy oof, if you use android, don't they record it all

#

yeah

#

google

#

I've started waking up till 1am, cause now its too cold to wake up in the morning 🥶

eternal bough
#

@vestal badge feel free to join us in our discussion via text you'll probably get 50 messages in no time

wise glade
#

you know I'm not handsome as hell, as some other people are, but how do I boost my confidence,
I started exercising 1.5 years ago, on my own at home (never been to gym) and now my body looks insane
really boosted my confidence
maybe a little bit ego

vestal badge
#

i hope so XD

hushed elm
#

i'm handsome as hell

wise glade
#

Vik-ing, what are you recording people's ideas for? college project or something ? 😂

wise glade
lyric basin
#

@wise glade I watched this video that talked how when people talk about their ideas they are more likely to act on them. :)

wise glade
#

yeah, I think these guys will act on it, as soon as they get some time to do it

#

other than their jobs

#

yeah, I got carpal tunnel, then bought hand grips off of amazon, fixed itself in a week

#

yeah, it might not have been carpal tunnel, just some pain came, and I went ahead and bought it

hushed elm
#

yeh you did good

wise glade
#

oof, just one question, why would people ask you do it? no offense, but why you not some other popular professional
( that's the major issue with it, right)
well, I guess, you gotta start somewhere right?

versed island
#

do you like to write on pc's

#

or write it offline first

lyric basin
#

@versed island paper is too good when there is no electricity around. :D

versed island
#

: D

#

i'm curious to know from people who are here ... how do they manage their offline documentation in this digital age

#

of pictures and videos

wise glade
#

writing offline comes with experience, my teacher said, you always write on paper first, only experienced programmers can write something optimal directly on pc

versed island
#

i mean there is so much you cant put on paper

wise glade
lyric basin
#

Write what?

wise glade
#

you're talkin about tapes or something?

versed island
#

write offline documentaion

#

for yourself

#

for future reference

steady pier
#

damnç

versed island
#

any hacks

steady pier
#

i dont think if i could be able

wise glade
#

I mean, I create some docs, for my python projects, but never for each jpeg I use, or mp4 etc

lyric basin
#

Documentation of what? Code? Notes or?

versed island
#

okay im suppressed in voice ...lemme explain

steady pier
#

guys

#

what do u need to do for unmute?

#

the msgs thing right?

versed island
#

yes

steady pier
#

aight thanks u dude

eternal bough
#

Manning Publications

steady pier
#

tyty

vestal badge
#

btw, till i can speak this is one of the best off topic potcasts ive ever heard

wise glade
#

well if you know concepts well, you can explain it well too

wise glade
steady pier
#

yeah but how do u improve ur teaching skills?

toxic niche
#

ok

wise glade
#

that would be some really nice podcast you hear

hushed elm
toxic niche
#

what is etheral hacking?

vestal badge
steady pier
#

i wish but i dont think i got the enough skills for teach

wise glade
#

some of us, who can't be a good teacher, no matter what you know

eternal bough
#

same

#

@steady pier if you know your stuff well and can teach middle school students well

wise glade
#

let me tell you, how do you know you can be a good teacher.
if you can explain some topic in simpler terms, i.e. by some awesome analogies, you can be a good teacher

steady pier
#

the thing is that u have to know very good the things u do and i think some of us dont really know. i mean there are stuff that u know is correct but dont know why

#

and for teach u should know why and explain it

#

its like my physic teacher, he dont even know why the things he teach are like that

wise glade
#

like someone try explaining about polymorphism , if you can do it easily, then you can be a teacher
wanna try somebody?

steady pier
#

so imo if u wanna teach u have to know very very very good what u wanna explain

vestal badge
wise glade
#

😂

hushed elm
#

i also like the writing on this website

wise glade
#

like can anyone even explain to me why 0! = 1 😂

versed island
vestal badge
#

i do can

hushed elm
#

nice video

wise glade
#

0! = 1 is because, we defined it that way, cause we need it to be equal 1

versed island
#

yeah but also there is concepts of limits

vestal badge
#

! is used to count how many posibilities are there to chose in the number u put before

#

for example

#

how many posibilities are there to pick 1 out of 2 people

wise glade
#

well guys, its late now, so
bye, stay safe 👋👋

vestal badge
#

1!/1!x1!

#

thats one

#

so

versed island
#

what else kewl discord servers ... u guys on

steady pier
#

see ya

zealous dust
#

k

vestal badge
#

how many posibilities are there to chose betwen 0 people?

#

1

steady pier
#

gringooo

zealous dust
#

where is the norwegian

vestal badge
#

so 0! =1

hushed elm
#

that's nice

steady pier
#

0!=1

acoustic lance
#

is here i learn my python?

steady pier
#

yes

acoustic lance
#

pablo u looking sexy tonight writing thoose good looking codes ❤️

zealous dust
#

ye

hushed elm
#

hhhhh

zealous dust
#

@lyric basin norge?

acoustic lance
#

is the guys talking russian or norwegian?

steady pier
#

english

acoustic lance
#

he talks russian english like me pablo

steady pier
#

nooo

zealous dust
#

no

#

far away

acoustic lance
#

not this one

zealous dust
#

u tallk indian englisg man

#

HAHAHA

acoustic lance
#

vi king

steady pier
#

they are explaining about teaching

acoustic lance
#

its sunday why we learn?

steady pier
#

hahahaha

zealous dust
#

how do i talk

#

HOW DO I TALK

#

IM NORWGIAN

steady pier
#

u need to go to

#

there

vestal badge
#

@hushed elm i want to study physics and i have that same feeling

steady pier
#

^^^^

#

okey guys i gtg

zealous dust
#

need to wait 3 days

steady pier
#

see ya and good luck

zealous dust
#

pablo is this ur discord friends xd?

pallid atlas
#

f

ashen oar
gentle flint
#

macrofather

hushed elm
#

macrodad

gentle flint
#

macro da doof

#

vs

#

macro dad oof

hushed elm
#

da doof

hushed elm
somber heath
#
import random
dw = True
condition = True
while condition or dw:
    dw = False
    if random.uniform(0,1) > .9:
        condition = False```
gentle flint
#

rate my desktop theme

hushed elm
#

eyyy too dark but i like the green color

gentle flint
#

thx

#

yeah, I chose dark because I'm in front of my PC all day

hushed elm
#

eyyy yes

versed island
#

thats recursion

hushed elm
#

that's my IDE theme

gentle flint
hushed elm
#

coque

#

yeah lol

#

oh no will mods kick us if they see we're naughty

#

uh oh

gentle flint
#

oh no

somber field
#

boi

gentle flint
#

we gonna rock down to

somber heath
#

Koch.

hushed elm
#

boio

gentle flint
#

electric avenue

hushed elm
#

biug koche

#

hhhhh

#

van koch

gentle flint
#

van Gogh

gentle flint
#

Vincent Willem van Gogh (Dutch: [ˈvɪnsənt ˈʋɪləm vɑŋ ˈɣɔx] (listen); 30 March 1853 – 29 July 1890) was a Dutch post-impressionist painter who is among the most famous and influential figures in the history of Western art. In a decade, he created about 2,100 artworks, including around 860 oil paintings, most of which date from the last two years ...

sick cloud
somber field
#

van ko$

gentle flint
#

ˈvɪnsənt ˈʋɪləm vɑŋ ˈɣɔx

hushed elm
#

well i'll soon be an admin so i don't worry haha

sick cloud
hushed elm
#

i feel it

somber field
#

כ

hushed elm
#

ɣɣɣɣɣ

#

whiihhhihihihi

gentle flint
#

maɣro

gentle flint
#

English person gags

hushed elm
#

topllllolll

#

whirley noise yeah

gentle flint
somber field
#

小さなめんこ

somber heath
hushed elm
#

nice

sick cloud
somber heath
sick cloud
gentle flint
#

@somber field

#

here

#

here's another btw

hushed elm
gentle flint
hushed elm
gentle flint
#

that's 'cuz of the white edge

#

partially

#

but the first one is best, I think

sick cloud
#

i'll see @Here tmr good night

gentle flint
#

maɣro

#

ˈvɪnsənt ˈʋɪləm vɑŋ ˈɣɔx

#

if it helps, it's Dutch, and written as
Vincent Willem van Gogh

#

geen tijd

hushed elm
#

ty @somber heath

somber heath
#

I could probably make another properly on its side.

hushed elm
#

yeah, a landscape

#

for a desktop wallpaper

gentle flint
#

1680x1050 here

hushed elm
#

1920x1080

hushed elm
faint ermine
#

1920x1200 is superiour

gentle flint
#

shut

hushed elm
faint ermine
hushed elm
#

u a minecraft fanboy @faint ermine?

#

large seed

#

that sounds weird

#

haha

#

i gotta go to sleep, cya soon guys

wind narwhal
#

hello people

#

hello @somber heath

somber heath
#

Hello hello.

wind narwhal
#

so much silence

somber heath
gentle flint
somber heath
whole bear
#

how can I verify the github account on discord profile?

gentle flint
#

User Settings > Connections > GitHub

#

@whole bear

whole bear
gentle flint
#

did it work

whole bear
#

no, where can i find User Settings?

gentle flint
#

the gear icon

#

is User Settings

whole bear
#

sure. I am here now.

gentle flint
#

well, go on

#

follow the rest of the steps I posted

whole bear
#

sure, perfect.

#

Thanks. 👍

gentle flint
#

ah, you linked twitter while you were at it

#

glad it worked

#

cya

whole bear
#

more one question

#

is it useful?

gentle flint
#

that's up to you to decide

#

lol

whole bear
#

It seems to be dangerous and disturbing. hhh

#

Today, very silence on this server😞

gentle flint
#

it's between 12:07 and 02:07 am in europe, depending on the country

#

so yeah

gentle flint
amber raptor
#

pretty normal

tawdry grotto
#

Hello everyone

#

Physics... 😣

glossy mesa
#

Hello

tawdry grotto
#

MySql

glossy mesa
#

pls whats the topic ?

tawdry grotto
#

want to discuss how to learn relational databases?

glossy mesa
#

So now i can just listen 😦

tawdry grotto
#

ye 3 day or something to speak

#

annoying but must be effective

glossy mesa
#

yeah

tawdry grotto
#

Worked with databases?

glossy mesa
#

yeah but i just learn

tawdry grotto
#

reaaly confusing

#

Should test that ai in typing channels @uncut meteor

uncut meteor
#

huh?

tawdry grotto
#

the you thing

uncut meteor
#

the me thing?

#

im confused

tawdry grotto
#

no, the ai referring to the 'you' and thing

#

imagine testing that ai in the typing channels

#

nevermind

uncut meteor
#

oh

#

thats not me

#

thats Stelercus

tawdry grotto
#

oh my bad

uncut meteor
#

np

#

😂

tawdry grotto
#

lol

#

Click on it

#

Get a refund

#

lmao\

#

@whole bear Google

#

@uncut meteor Thanks to you we free loaders can use it with no ads

#

@uncut meteor that is a loser talk

#

gotta bribe

#

I hate IBM

#

for using Cobol

#

@somber heath let me turn my self in to chirsmast tree

#

@eternal bough I honeslty don't

somber heath
#

You can do it if you just believe!

tawdry grotto
#

for me I just want to blend in

#

@uncut meteor My fk boy friends

#

wear expensive shit

#

YESSIR

#

YES

#

I don't have the luxury to care about my clothing, this effected my social life in school

#

@eternal bough

#

bruh

#

I hate shopping with my life

eternal bough
austere linden
eternal bough
uncut meteor
#

@austere linden

LAMP stack: JavaScript - Linux - Apache - MySQL - PHP
LEMP stack: JavaScript - Linux - Nginx - MySQL - PHP
MEAN stack: JavaScript - MongoDB - Express - AngularJS - Node.js
Django stack: JavaScript - Python - Django - MySQL
Ruby on Rails: JavaScript - Ruby - SQLite - Rails
versed island
#

noice !

stuck furnace
#

Hey all 🙂

#

Yo

austere linden
#

How is it going?

stuck furnace
#

Yeah statistics comes in handy for sure 😄

austere linden
#

Unmute your mic 😆

stuck furnace
#

It would be good if more people were able to make sense of probability and statistics in their life.

#

I listen to this podcast/show called More or Less

#

Sorry, internet cut out for a sec.

#

Erm @austere linden you've got an echo coming through.

austere linden
#

I know

#

It is my headset

#

I am sorry

#

You can reduce my volume if you want

stuck furnace
#

Use of stats in the media is genrally abysmal to be honest 😄

#

Yeah

#

One thing I would have liked is an estimate of the proportion of people in my region who are currently infectious.

#

Instead you get number of confirmed cases/deaths, which is not actually very useful for decision making unless you have the know-how to analyse the data.

#

Didn't catch that sorry.

#

Whenever you need to compare the US and UK, just divide the US number by 5.

#

US has about five times the population of the UK.

#

It's not been great. But then I'm not really knowledgeable enough to say 😄

austere linden
#

Are you from the UK too? @stuck furnace

stuck furnace
#

Echo's still pretty bad @austere linden

austere linden
#

I am really sorry

#

I am using my headset

stuck furnace
#

No worries.

#

Maybe use PTT?

austere linden
#

I will mute my mic

#

Is it really bad now?

stuck furnace
#

Oh yeah

#

I was reading about how to analyse this sort of thing

#

And It's often better to look at like the 99 percentile, rather than the median.

#

Check out Khan Academy @austere linden 🙂

#

Also Brilliant, but it's paid.

#

Notation?

#

Ah yes.

#

Oh right 😄

#

Oh yeah, we say BODMAS, they say PEMDAS 😄

#

Lot's of background noise @eternal bough

#

Sounds like you're eating the microphone 😄

#

Multiple regression is what I'd call it.

#

The thing about maths is it's hard to learn sporadically.

#

Things have to be learned in a certain order.

eternal bough
#

I'm eating seaweed nom nom

stuck furnace
#

Oh that would be cool. Maybe a book club?

#

Where people meet up once a week to discus a chapter of a textbook they're all working on.

austere linden
#

more like Tutorials @stuck furnace @eternal bough

stuck furnace
#

Ah right. That would be harder, because there's a lot of prep involved in running lessons.

#

It's a good idea. But it's a matter of finding someone willing to do all of the work 😄

#

And keep doing it in the long run.

#

Ah right.

#

For sure 😄

#

I remember group projects at university

#

That would be me 😄

#

Yeah me too

#

Are you guys doing AoC?

#

Advent of Code

#

Yeah no worries 😄

#

Yep

#

The next day goes online in 15 mins.

#

I'm kind-of half taking it seriously.

#

Yep

#

Getting on the leaderboard is hard. There are some really fast coders out there.

#

Erm, to preserve my self esteem 😄

#

By not taking it too seriously and then doing badly...

#

Alright see ya @eternal bough 👋

#

It is 😄

#

I take vitamin D

#

I gtg too

#

Bye 👋

gentle flint
#

you're UK, right

#

wth were you doing, still up at 04:37

whole bear
#

@sick cloud wann talk?

sick cloud
willow light
#

that moment when you fall asleep way too early and thus wake up way too early

whole bear
#

Oke xd @sick cloud

#

Ummutr

#

Unmute

sick cloud
#

@whole bear i'm definitely a nervous speaker

whole bear
#

Np

sick cloud
#

and how is life ?

whole bear
#

Good

#

What about u

sick cloud
#

i'm gud tooo

#

are u working on any projects ?

gentle flint
sick cloud
gentle flint
#

lol, true

sick cloud
#

@whole bear is working with socket ezy ?

gentle flint
whole bear
#

Agreeee @gentle flint

gentle flint
sick cloud
#

why do all os look like mac now ? 😭

gentle flint
#

so, should I or should I not

gentle flint
sick cloud
#

@whole bear do u like mac ?

whole bear
#

Hm

#

Not really

sick cloud
#

which os do u prefer ?

whole bear
#

Linux

sick cloud
#

@gentle flint which os do u prefer ?

gentle flint
#

Linux

#

it's so fast

#

and you can do w/e you want

sick cloud
#

windows for me.... that's da only os i have used

gentle flint
#

windows home is kinda shit tbh

#

not sure about windows pro

sick cloud
gentle flint
#

EWWWW

sick cloud
#

@stoic ore helo

whole bear
#

Myb windows 7

gentle flint
#

for fuck's sake, even Windows 7 is better than any 8 version

#

Brb

sick cloud
#

@stoic ore be right back

#

my micro-phone is pretty sh*t

#

so i don't expect u to understand

whole bear
#
x = ""
for j in range(0, 50):
	x += "+"
	if len(x) < 50:
		print("+" + x )
	else:
		break
#

Agree with me?

sick cloud
#

!e

x = ""
print("+")
for j in range(0, 10):
    x += "+"
    if len(x) < 10:
        print("+" + x )
    else:
        break
wise cargoBOT
#

@sick cloud :white_check_mark: Your eval job has completed with return code 0.

001 | +
002 | ++
003 | +++
004 | ++++
005 | +++++
006 | ++++++
007 | +++++++
008 | ++++++++
009 | +++++++++
010 | ++++++++++
sick cloud
#

@somber heath welcome to the chat

stoic ore
#

Afk for a while

sick cloud
#

@stoic ore yesss i'm here

stoic ore
#

ok see u

mellow flower
#

!e
for i in range(1000):

wise cargoBOT
#

@mellow flower :x: Your eval job has completed with return code 1.

001 |   File "<string>", line 1
002 |     for i in range(1000):
003 |                          ^
004 | IndentationError: expected an indented block
mellow flower
#

!e
for i in range(1000):
print("simp")

wise cargoBOT
#

@mellow flower :white_check_mark: Your eval job has completed with return code 0.

001 | simp
002 | simp
003 | simp
004 | simp
005 | simp
006 | simp
007 | simp
008 | simp
009 | simp
010 | simp
011 | simp
... (truncated - too many lines)

Full output: https://paste.pythondiscord.com/ivigeriquq.txt

sick cloud
#

@whole bear helo

#

@whole bear

whole bear
#

@sick cloud sorry mate

#

im in a class rn

#

lol

sick cloud
#

oh, which class u in ?

whole bear
sick cloud
sick cloud
#

@hollow haven helo

frozen oasis
#

hey

rugged root
#

I'm probably not going to be here for the next 3 or 4 days. Just wanted to let you guys know

#

Holiday deliveries, having to drive all over town

sick cloud
#

play roblox

twilit hound
#

I can't talk

sick cloud
#

do u play minecraft ?

twilit hound
#

I play minecraft

sick cloud
twilit hound
#

I tried it wouldn't wor

#

work

#

I have no idea why I can't talk

#

so mad about that

frigid panther
#

check voice verification channel

normal hinge
#

any tips on how to deal with recursion depth error

#

in python

#

?

sick cloud
#

ummm, can u show us the code ?

twilit hound
#

I have to send less that 50 masseges

#

I am

sick cloud
frigid panther
#

not less, equal or more than 50 messages

twilit hound
#

oh

#

my bad

normal hinge
#
def testing(fun):
    def wrapfun():
        t1=time()
        myfun()
        t2=time()
        print(f'your time is : {t2-t1}')
    return wrapfun
@testing
def myfun():
    for i in range(100):
        i*2

myfun()```
twilit hound
#

huh

#

so how do I track how many massege I have send?

sick cloud
#

!e

from time import time
def testing(fun):
    def wrapfun():
        t1 = time()
        myfun()
        t2 = time()
        return f'your time is : {t2-t1}'
    return wrapfun

@testing
def myfun():
    for i in range(100):
        i*2

myfun()
#

nvm

twilit hound
#

!e

wise cargoBOT
#
Command Help

!eval [code]
Can also use: e

*Run Python code and get the results.

This command supports multiple lines of code, including code wrapped inside a formatted code
block. Code can be re-evaluated by editing the original message within 10 seconds and
clicking the reaction that subsequently appears.

We've done our best to make this sandboxed, but do let us know if you manage to find an
issue with it!*

twilit hound
#

huh

#

so confused

normal hinge
sick cloud
twilit hound
#

okay

sick cloud
normal hinge
#

i wanna print

#

it with in wrap

#

function

sick cloud
#

!e

from time import time
def testing(fun):
    def wrapfun():
        t1 = time()
        fun()
        t2 = time()
        return f'your time is : {t2-t1}'
    return wrapfun

@testing
def myfun():
    for i in range(100):
        var = i*2

print(myfun())
wise cargoBOT
#

@sick cloud :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 16, in <module>
003 |   File "<string>", line 5, in wrapfun
004 |   File "<string>", line 5, in wrapfun
005 |   File "<string>", line 5, in wrapfun
006 |   [Previous line repeated 995 more times]
007 |   File "<string>", line 4, in wrapfun
008 | RecursionError: maximum recursion depth exceeded while calling a Python object
normal hinge
#

@sick cloud i'm trying to print it inside the wrap function not outside

#

may i know the reason

#

why i getting this error

sick cloud
#

!

#

wait

#

!e

from time import time
def testing(fun):
    def wrapfun():
        t1 = time()
        fun()
        t2 = time()
        return f'your time is : {t2-t1}'
    return wrapfun

@testing
def myfun():
    for i in range(100):
        var = i*2

print(myfun())
wise cargoBOT
#

@sick cloud :white_check_mark: Your eval job has completed with return code 0.

your time is : 1.1682510375976562e-05
normal hinge
#

i mean i'm not even printing in a loop

#

so

sick cloud
#

@normal hinge fixed it

normal hinge
#

u not getting my point

sick cloud
#

!e

from time import time
def testing(fun):
    def wrapfun():
        t1 = time()
        fun()
        t2 = time()
        return f'your time is : {t2-t1}'
    return wrapfun

@testing
def myfun():
    for i in range(100):
        var = i*2

print(myfun())
normal hinge
#

i'm not calling the function again and agian

#

it only calls once

wise cargoBOT
#

@sick cloud :white_check_mark: Your eval job has completed with return code 0.

your time is : 1.5020370483398438e-05
sick cloud
normal hinge
#

yeah

#

but error

#

right

#

i don't understand why

#

come to code help 1

#

damn i need to go and get some coffee

#

@sick cloud thanks man

#

👍

sick cloud