#voice-chat-text-1

1 messages · Page 104 of 1

raven orbit
#
if some_condition:
    some_action
else:
    some_other_action
peak frigate
#

what website is this?

foggy snow
#

codewars

peak frigate
#

oh I thought I recognized it lol 😂

#

@foggy snow are you gonna do another one? :)

foggy snow
#

yepp

#

im going to try and do it and then i send how it goes :)

#

this is the question

peak frigate
#

@foggy snow can you send me a link so I can do it with you

foggy snow
peak frigate
#

ty

foggy snow
#

no problem! :)

#

yea, i have no idea where to start haha

autumn raft
#

codewars!?

#

^kata I made to include as many types as reasonable C:

peak frigate
#

huh?

#

I'm trying to do this kata on my phone lol

#

I have like 3 months

#

codewars test results don't appear to show on mobile lol

foggy snow
#

haha

#

thats bad

peak frigate
#

trying lol

#

just loads mobile version again. in chrome at least

foggy snow
#

yea, i have no idea how to start on this or anything so im going to go to another one ;)

peak frigate
#

:/

#

lOLOL

peak frigate
#

@foggy snowhttps://www.youtube.com/watch?v=YYXdXT2l-Gg

In this Python Beginner Tutorial, we will start with the basics of how to install and setup Python for Mac and Windows. We will also take a look at the interactive prompt, as well as creating and running our first script. Let's get started.

Mac Install: 1:25
Windows Install: 5:44
Installs Complete: 8:37

Watch the full Python Beginner Series he...

▶ Play video
#

@autumn raft can i have stream pls

#

\n

#

@autumn raft @autumn raft @autumn raft

autumn raft
#

👀

peak frigate
#

i needz help w/ my codewars

autumn raft
#

!stream 568276116062863405

pearl torrent
#

shes coding for once

coarse hearthBOT
#

✅ @peak frigate can now stream until <t:1626891500:f>.

autumn raft
#

sorry, missed the first ping

hearty heath
#

Yo Mina. What you working on? 👀

#

Ah right

#

Nope

#

Send the link 😄

peak frigate
hearty heath
#

Hey @random minnow 👋

#

There's this coding escape-room thing we should try some time 😄

#

yet

unreal heron
#

how do i make it so that one of the condtions is also that the pin is only int

hearty heath
#

C++ lemon_smug

#

Wow. Bold thing to say in the python server 😄

#

It has a nicer interface than Code Wars I think, the problems are a bit dryer.

#

I have an idea for a code wars problem that I need to submit 😄

#

It would be a path-finding problem, combined with mine-sweeper.

#

You would have to move a character through a grid using a move method, and a detect method that tells you how many mines are adjacent to your location.

unreal heron
hearty heath
#

Oh yeah, for some reason they make you implement the solution as a method of a class.

#

Probably just made by a Java programmer...

#

Gtg guys 👋

random minnow
#

!e @peak frigate

a = '10'

if a:
    print("A is not an empty string")

if not a:
    print("A is an empty string")

b = ''

if b:
    print("B is not an empty string")

if not b:
    print("B is an empty string")
coarse hearthBOT
#

@random minnow :white_check_mark: Your eval job has completed with return code 0.

001 | A is not an empty string
002 | B is an empty string
peak frigate
whole finch
#
lambda _, __: return _ & __
raw wren
autumn raft
autumn raft
peak frigate
#
def lovefunc(flower1, flower2):
    if flower1 % 2 + flower2 % 2 == 1:
        return True
    else:
        return False```
raven orbit
autumn raft
#

!e

print(1 == 1)
coarse hearthBOT
#

@autumn raft :white_check_mark: Your eval job has completed with return code 0.

True
charred creek
#
def lovefunc(flower1, flower2):
    return flower1 % 2 + flower2 % 2 == 1
peak frigate
#
def lovefunc(flower1, flower2):
    return flower1 % 2 + flower2 % 2 == 1
misty sinew
#
def lovefunc(flower1, flower2):
    return((flower1 % 2 ) + (flower2 % 2) == 1)

@peak frigate

raw wren
#

!e

print("fisher" > "ella")
hearty heath
#

👋 KJ

coarse hearthBOT
#

@raw wren :white_check_mark: Your eval job has completed with return code 0.

True
whole finch
#
lovefunc = lambda _, __: return _%2+__%2==1
misty sinew
#

!e

def lovefunc(flower1, flower2):
    return((flower1 % 2 ) + (flower2 % 2) == 1)
print(lovefunc(2, 2))
coarse hearthBOT
#

@misty sinew :white_check_mark: Your eval job has completed with return code 0.

False
misty sinew
#

!e

def lovefunc(flower1, flower2):
    return((flower1 % 2 ) + (flower2 % 2) == 1)
print(lovefunc(0, 2))
coarse hearthBOT
#

@misty sinew :white_check_mark: Your eval job has completed with return code 0.

False
mild flume
#

So many wubs

#

Yeah I think I over complicated it

#
def song_decoder(song):
    wub_stripped = song.replace("WUB", " ").split()
    return ' '.join(wub_stripped)
#
def song_decoder(song):
    return " ".join(song.replace('WUB', ' ').split())
peak frigate
#

Function should return true (1 in Prolog) if it is possible and false (0 in Prolog) if not.

hearty heath
#

It's one of the few 'logic programming' languages that became widely used.

peak frigate
#

the f is this lol

charred creek
#

!e
print(help(exec))

coarse hearthBOT
#

@charred creek :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 1, in <module>
003 | NameError: name 'help' is not defined
charred creek
#

!docs exec

coarse hearthBOT
#

exec(object[, globals[, locals]])```
This function supports dynamic execution of Python code. *object* must be either a string or a code object. If it is a string, the string is parsed as a suite of Python statements which is then executed (unless a syntax error occurs). [1](https://docs.python.org/3/library/functions.html#id2) If it is a code object, it is simply executed. In all cases, the code that’s executed is expected to be valid as file input (see the section “File input” in the Reference Manual). Be aware that the [`nonlocal`](https://docs.python.org/3/reference/simple_stmts.html#nonlocal), [`yield`](https://docs.python.org/3/reference/simple_stmts.html#yield), and [`return`](https://docs.python.org/3/reference/simple_stmts.html#return) statements may not be used outside of function definitions even within the context of code passed to the [`exec()`](https://docs.python.org/3/library/functions.html#exec "exec") function. The return value is `None`.
charred creek
#

!e

def is_even(n):
    if n == 0:
        return True
    else:
        return is_odd(n - 1)

def is_odd(n):
    if n == 0:
        return False
    else:
        return is_even(n - 1) 


print(f"{is_odd(5) = }")
print(f"{is_odd(6) = }")
print(f"{is_even(5) = }")
print(f"{is_even(6) = }")
coarse hearthBOT
#

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

001 | is_odd(5) = True
002 | is_odd(6) = False
003 | is_even(5) = False
004 | is_even(6) = True
charred creek
#

!e

class Apple:
  def __repr__(self) -> str:
    return "Now I'm Shown"
  
  def __str__(self) -> str:
    return "Apple"

def t() -> Apple:
  return Apple()


print(f"{t()}")
print(f"{t()!r}")
coarse hearthBOT
#

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

001 | Apple
002 | Now I'm Shown
autumn raft
unique raptor
raven orbit
peak frigate
#

lol i

#

suddenly felt all the vaccine side effects again

#

with that one loud noise

raven orbit
unique raptor
unique raptor
raven orbit
#

KiCad

unique raptor
#

ok

raven orbit
#

KiCad ( KEE-kad) is a free software suite for electronic design automation (EDA). It facilitates the design of schematics for electronic circuits and their conversion to PCB designs. KiCad was originally developed by Jean-Pierre Charras. It features an integrated environment for schematic capture and PCB layout design. Tools exist within the pac...

unique raptor
#

use

#

fusin

#

360

#

lol

raven orbit
#

no?

#

it's not designed for electronics

unique raptor
#

ok

raven orbit
#

the 3d thing is just a preview

#

I can export a pcb gerber file from this so I can have a company print and assemble this thing

#

costs about 10 bucks to have that done

autumn raft
#

very cool

misty sinew
#

can we all stop fucking arguing

ripe lantern
#

Z170A GAMING M5

#

Kingston HyperX Fury RGB 16GB (2x8GB) DDR4 PC4-CL17 3600MHz

peak frigate
raven orbit
peak frigate
#

til there is a 3rd param for range()

mild flume
#

Yep, step

#

Same as slicing

#

[start:stop:step]

raven orbit
#

I love that they all start with st

peak frigate
#

til there are 3 params for slicing

#

LMAO

mild flume
#

HA

#

Fair enough

autumn raft
#

!e

for num in range(0, 12)[::3]:
  print(num)
coarse hearthBOT
#

@autumn raft :white_check_mark: Your eval job has completed with return code 0.

001 | 0
002 | 3
003 | 6
004 | 9
raven orbit
charred creek
#

where abouts?

raven orbit
#

We can tell you in a month

peak frigate
autumn raft
#

api == ant product integration

#

duh

peak frigate
#

i did a level 6 ClapCat

autumn raft
#

whoaaaa

#

did you cheat eyes_sus

#

!otn a his name is groff

coarse hearthBOT
#

:ok_hand: Added his-name-is-groff to the names list.

charred creek
#

Fosh

peak frigate
#

1000

#

1,000

#

100,0

#
test.assert_equals(group_by_commas(1), '1')
test.assert_equals(group_by_commas(10), '10')
test.assert_equals(group_by_commas(100), '100')
test.assert_equals(group_by_commas(1000), '1,000')
test.assert_equals(group_by_commas(10000), '10,000')
test.assert_equals(group_by_commas(100000), '100,000')
test.assert_equals(group_by_commas(1000000), '1,000,000')
test.assert_equals(group_by_commas(35235235), '35,235,235')```
mild flume
peak frigate
#
def group_by_commas(n):

    string = str(n)[::-1]

    chunks = []
    
    for i in range(0, len(string), 3):
        chunks.append(string[i:i+3])
    
    result = ','.join(chunks)[::-1]

    return result
#

?

#

how would you do it

#

lmao

autumn raft
#

looks good

peak frigate
#
def group_by_commas(n):
    return f'{n:,}'```
#

lmao

autumn raft
#

haha

peak frigate
#

i should have known this

mild flume
#

No wait

#

What

peak frigate
#

i do this all the time

mild flume
#

OHHHHH

#

Right

#

yep

peak frigate
#

formatting floats to the formatted currencies

#

like

mild flume
#

Gotta love string formatting

peak frigate
#

every day lmao

mild flume
#

That's amazing

peak frigate
#

lmao

mild flume
#

That's why I love Python

#

So much of this shit is just built in

peak frigate
#

i used code from previous kata unnecessarily ..

mild flume
#

We've all done it

#

And will continue to do so

peak frigate
#

!e ```py
print("${:,.2f}".format(100000000))

coarse hearthBOT
#

@peak frigate :white_check_mark: Your eval job has completed with return code 0.

$100,000,000.00
charred creek
#

thats alot

#

of money

peak frigate
#

mai $

charred creek
#

@peak frigate look

peak frigate
#

divided by 1000000000000

random minnow
#

f-string magic

charred creek
#

!e

x = 12

print(f"{x = }")
coarse hearthBOT
#

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

x = 12
charred creek
#

it show the var and its vlaue

#

you can also do

#

!e

x = 12

print(f"{x + 2 = }")
coarse hearthBOT
#

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

x + 2 = 14
charred creek
#

its op

#

af

peak frigate
#

kewl

mild flume
hidden cliff
#

@elder wraith

peak frigate
#

oh

#

!e py print(f"{type(2) = }")

mild flume
#

Better onboard audio, 64 gb internal storage

coarse hearthBOT
#

@peak frigate :white_check_mark: Your eval job has completed with return code 0.

type(2) = <class 'int'>
peak frigate
#

so that will be handy for my per line prints Dogekek

elder wraith
peak frigate
#

i have heard the smash community is trash

mild flume
charred creek
#

yo

#

im so happy

#

my bro just got me

#

REAL sushi

#

from like

autumn raft
#

LOL

charred creek
#

a proper place cos his friend works there

#

Im hype

autumn raft
#

duuuuuuuude

#

hell yeah. Ever tried it before?

charred creek
#

yeah

#

been a while tho

autumn raft
#

noice noice

#

I am excited for you

mild flume
peak frigate
charred creek
#

so good

peak frigate
#

!e py print('sdlkfjsldfjsdfkjsdlfsdlfj'[1:10][::-1])

#

?

raw wren
#

print?

peak frigate
#

lol

raw wren
#

!e
print('sdlkfjsldfjsdfkjsdlfsdlfj'[1:10][::-1]) test

coarse hearthBOT
#

@raw wren :white_check_mark: Your eval job has completed with return code 0.

fdlsjfkld
raw wren
#

I can't tell you how many times I have done that lol

peak frigate
#

how do i re-run the !e?

#

or is there a time limit

raw wren
#

if you edit the code it should add a reaction and you should be able to re run it

#

I think

peak frigate
#

!e ```py
x = 'sdlkfjsldfjsdfkjsdlfsdlfj'[1:10][::-1]
print(x)
print(x)

coarse hearthBOT
#

@peak frigate :white_check_mark: Your eval job has completed with return code 0.

fdlsjfkld
raw wren
#

yeah

#

there

peak frigate
#

i c

autumn raft
raw wren
#

Is that a dmd emoji

#

because if it is I need it

autumn raft
#

stitchcryrain nope

raw wren
#

wht server

#

lol

autumn raft
raw wren
#

I need these

peak frigate
#

WHAT i thought i had joined that server

autumn raft
#

You can catch ella there

#

You may be pruned if not active

peak frigate
#

i never agreed to the rules so they probably kicked me

#

@random minnow i did 20 kata today

#

😪

random minnow
raven orbit
#

@raw wren tf

peak frigate
#

no i mean i did twenty of them lmaooo

random minnow
#

nice cat @raw wren

raven orbit
#

your dog is actually moving?

raw wren
#

She’s stopping lol

#

And now she’s turning back around

elder wraith
#

These rules of use are not meant to be exhaustive, and we reserve the right to determine what conduct we consider to be a violation of the Terms, Community Guidelines or improper use of the Service and to take action including termination of your Account and exclusion from further participation in the Service.

coarse hearthBOT
#

@vital burrow :white_check_mark: Your eval job has completed with return code 0.

Hello, i'm a big ghost
raw wren
#

@elder wraith so does discord delete the message in their db?

raw wren
#

That's a surprise

elder wraith
hidden cliff
peak frigate
#

!e py print('1', 'this is a long string'[0:10][::-1])

!e ```py
print('2', 'this is a long string'[0:10:-1])

coarse hearthBOT
#

@peak frigate :white_check_mark: Your eval job has completed with return code 0.

001 | 1  a si siht
002 | 2 
peak frigate
#

!e py print('1', 'this is a long string'[0:10][::-1])

!e ```py
print('2', 'this is a long string'[10:0:-1])

coarse hearthBOT
#

@peak frigate :white_check_mark: Your eval job has completed with return code 0.

001 | 1  a si siht
002 | 2 l a si sih
jolly gale
#

induction is better than all that crap

#

fastes boilling stove ever

violet venture
#

!e

print('2', 'this is a long string'[0:50:1])
print('2', 'this is a long string'[50])
coarse hearthBOT
#

@violet venture :x: Your eval job has completed with return code 1.

001 | 2 this is a long string
002 | Traceback (most recent call last):
003 |   File "<string>", line 2, in <module>
004 | IndexError: string index out of range
peak frigate
#

!e py print('this is a long string'[0:10][::-1])

print('this is a long string'[10:0:-1])

print('djdjjd')

jolly gale
#

get them with knobs

coarse hearthBOT
#

@peak frigate :white_check_mark: Your eval job has completed with return code 0.

001 |  a si siht
002 | l a si sih
003 | djdjjd
violet venture
elder wraith
raven orbit
autumn raft
elder wraith
#

Fake pilots are doing CASE I which is VFR

elder wraith
true valley
elder wraith
#

@raven orbit @autumn raft if fake fighter jets interest you, DCS offers 2 week free rental of any jet.

raven orbit
#

I've seen that one

elder wraith
violet venture
#

Start-MpScan -ScanType QuickScan

#

According to Google

boreal sinew
#

!voice-verify

#

!voiceverify

#

!voice

coarse hearthBOT
#

Voice verification

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

boreal sinew
#

Oh, you can't

peak frigate
#

there is no such thing as video verifying

boreal sinew
#

You need to ask a mod for that

#

Well he's a helper /shrug

raven orbit
#

@misty sinew can you quit pinging jake

#

I'm not coaxing

#

I'm demanding

hidden cliff
#

Kotlin has its uses

raven orbit
#

12-year-olds shouldn't be in this server in the first place

misty sinew
#

lol

peak frigate
#

are you saying you're 12?

hidden cliff
#

I blocked the kid

boreal sinew
#

Leave the server and come back tommorow lol

raven orbit
#

*11:19

#

41 minutes

peak frigate
raw wren
#

<@&831776746206265384>

peak frigate
#

@hidden cliff blocking ppl doesn't block their voice in vc right?

lost grotto
#

!mute @misty sinew

coarse hearthBOT
#

:incoming_envelope: :ok_hand: applied mute to @misty sinew until <t:1626913629:f> (59 minutes and 59 seconds).

raw wren
#

We warned you many times to stop

peak frigate
#

tizzy boss Salute

raw wren
#

@lost grotto Might I also add they are not 13

misty sinew
#

at least he'll be 13 when he gets back

cunning bolt
#

Joe dances pretty well xd

peak frigate
hidden cliff
#

Yes

peak frigate
#

good to know

coarse hearthBOT
#

Cannot infract that user. User infracted is a bot.

peak frigate
#

@foggy snow how'd you do on the tutorials?

raw wren
#

wait wut

lost grotto
#

!ban @misty sinew 2d you can come back when you're 13, but I recommend not spamming again if you decide to return

coarse hearthBOT
#

:incoming_envelope: :ok_hand: applied ban to @obtuse crypt until <t:1627082945:f> (1 day and 23 hours).

lost grotto
boreal sinew
#

RIP

foggy snow
peak frigate
#

sure, that comes with application & repetition

foggy snow
#

👍

cunning bolt
#

Xd stick the screen to the chair

#

And see

peak frigate
#

@foggy snow you are starting with the basic ones right?

elder wraith
#

A discussion and curiosity is resolved now.
Van Gogh, which is used by Valve's Steam Deck, has 4 UMCs.
I expected 4x 16-Bit (a memory channel under LPDDR5 is actually 16-Bit wide).
The official spec claimed 5.5 Gbps (dual-channel), which didn't made sense to me.
It got corrected

Likes

182

foggy snow
#

i mean, i have made rock paper scissor, an other game and 3 in a row

autumn raft
#

!ban 113304266269003776 how many times do we need to keep teaching you this lesson

peak frigate
foggy snow
#

maybe

#

i think so

foggy snow
#

yea i know what it is :P

hidden cliff
#

@raven orbit tell me how u can make iOS apps on a different laptop

foggy snow
#

yes it is tic tac toe

hidden cliff
#

o/

peak frigate
#

cool

#

Jake they're ahead by 5

hidden cliff
#

Yo @raw wren I heard u we're learning kotlin

#

U wanna help me with something

unique raptor
#

learn c#

#

or kivy

elder wraith
#

Using NFTs, Ploog will offer Collateralization Debt Art Bonds to public which are ART rated

tender sand
#
elder wraith
#

Kubernetes (an open source project out of Google that’s named after the Greek god of spending money on cloud services)

unique raptor
elder wraith
#

from Digital Ocean Kubernetes:

tender sand
elder wraith
#

We needed something like this load the SANs

#

getting MSSQL to properly talk to AlwaysOn Read Only Clusters is annoying

#

Citus transforms Postgres into a distributed database you can run at any scale. By distributing your data and parallelizing your queries across multiple nodes, your application can scale & your queries are fast. Citus is available as open source and in the cloud, built into Azure Database for PostgreSQL.

#

Also, why would you put two apps in one container

#
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.8-slim```
covert brook
#

@raw wren you better not be creating an even worse pycharm theme

raw wren
covert brook
#

I'm making sure that there is no sin

raw wren
#

Jesus Christ typing is hard

covert brook
#

lol

#

it do be like that sometimes

raw wren
#

well I just sin

covert brook
#

rip

tender sand
#

calling it a night, cya

elder wraith
#

still on this I guess

#

time to go mess with my discord bot

true valley
#

we are talking about commodore and atari now

true valley
ebon viper
#

@true valley

ebon viper
raw wren
#

Hey @proud mason glad to see you in vc!

proud mason
#

hey

ebon viper
#

Thinkpad T420s

ebon viper
subtle blade
#

hello

#

:>

hidden cliff
#

constructor(entities: Map<Entity, Profiler.TimingData>, blocks: Map<ResourceKey<Level>, Map<BlockPos, Profiler.TimingData>>, custom: Boolean = true) : this(entities.map { (entity, data) -> Entry(entity, entity.type.descriptionId, data) }.sortedByDescending { it.rate }.groupBy { it.entity.level.dimension().location() }.mapValues { it.value.map { Entry(it.entity.id, it.type, it.rate, it.traces) }}, blocks.map { it.key.location() to it.value.map { Entry(it.key, it.value.name, it.value) } }.toMap()) @warm tendon

peak frigate
#

MONOKAI PRO

#

wait the hoodies are real

#

i reiterate

#

i like gifts

hidden cliff
peak frigate
#

CUTE CUTE

#

ᓚᘏᗢ

#

@viral pilot

autumn raft
#

I think you know why this needs to be deleted LOL

peak frigate
#

huh?

autumn raft
#

the embed xD

peak frigate
#

idk what was deleted

#

i don't remember

autumn raft
#

Rick and morty link haha

peak frigate
#

oh lol

#

oki

lime grove
#

hi :3

#

hi pub

#

mina smh

warm tendon
#

smh

peak frigate
#

WOT lol

#

i confused bc

#

the korean title is 'white blood'

#

like english, phoneticized as korean

lime grove
#

o

#

oop

#

nice pfp~

peak frigate
#

hayan webtoon

lime grove
#

what mina

#

s m f h

#

read enders game >:0

peak frigate
#

The average reader will spend 13 hours and 33 minutes reading this book at 250 WPM (words per minute). The two years before he wrote Crime and Punishment (1866) had been bad ones for Dostoyevsky.

#
  • the martian
  • enders game
  • the three-body problem
  • project hail mary
  • educated
  • the sandman
lime grove
#

lol, educated

#

anything by margaret atwood

#

yeah

#

fun

#

me too

#

ah, read kurt voggenut or however you spell it

#

😔

#

oh well

#

shush

#

huh i don’t think i’ve read a single book in the past year that wasn’t recommended to me by pub

#

🤔🤔🤔

#

how many books have you read in the past year pub 😔

#

uhhuh

peak frigate
#

borrowed praise

lime grove
#

also read 1984 lmfao

#

hmm

true valley
#
IMDb

Dune: Directed by David Lynch. With Francesca Annis, Leonardo Cimino, Brad Dourif, José Ferrer. A Duke's son leads desert warriors against the galactic emperor and his father's evil nemesis when they assassinate his father and free their desert world from the emperor's rule.

lime grove
#

oop i still have to read the rest of the enders game books

elder wraith
lime grove
#

bye guys 👋

#

gotta get my ~beauty sleep~

warm tendon
#

👋

peak frigate
#

yeesh the first chapter is violent

true valley
#

it gets worse.... remember its written for 14 year olds

peak frigate
#

oh is it lol

raw wren
#

Hey pub, it has been awhile 👋

hidden cliff
#

@elder wraith which guy

#

Implying Fortnite was ever good

autumn raft
#

👀

warm tendon
#

@autumn raft 👀

autumn raft
true valley
#

warzone..

hidden cliff
#

2100?

autumn raft
warm tendon
#

😔

raw wren
#

@autumn raft who is your status meant for?

#

Or is it just some lyric

autumn raft
#

😏

warm tendon
#

😳

raw wren
#

It's not 8 pm yet

#

4 more minutes

#

actually 1 hour and 4 minutes for u

autumn raft
#

yep yep

#

wheres griff

raw wren
hidden cliff
#

@raw wren I like vue

#

Can I report this as mod abuse

#

Also why did pub get to listen

autumn raft
#

lolol

#

im sowwwwy

autumn raft
boreal timber
#

Wait huh

#

@warm tendon isnt a helper anymore

hidden cliff
#

I'm 20 and graduating

#

No, uni

#

Got a few months left

#

@_jake#0169 u know Ohio exists, right

#

That and Cleveland

autumn raft
fluid edge
#

👀

warm tendon
fluid edge
warm tendon
#

stream paint the town

fluid edge
#

i don't have stream privileges :B

warm tendon
#

you do tho

fluid edge
#

no i don't 🙃

warm tendon
#

but also that's not what i meant

fluid edge
#

i haven't heard the song yet. lol. i'm not a loona fan; you know dis.

warm tendon
fluid edge
warm tendon
#

jake says yes

fluid edge
#

oooo TIL 🤓

hearty heath
#

Erm, ceremony finished 😄

#

I'm currently hanging up washing.

#

Like, they don't trust foreigners to follow the rules kind of thing?

hearty heath
#

@raw glade did you hear Laguna?

#

In the pictogram thing?

#

Ah, yeah, I saw that 😄

#

They fumbled the thing badminton.

#

But 49/50 isn't bad.

#

I did gymnastics, which was a horrible idea by my parents as I was pretty overweight 😄

#

I mostly just flopped about.

peak frigate
#

Vladimir Nikolaevich Artemov (Russian: Владимир Николаевич Артемов, born 7 December 1964) is a former Russian gymnast, Olympic champion and world champion who competed for the Soviet Union. He is considered to be one of the greatest parallel bars workers of all time.
He was born in Vladimir.
Artemov competed at the 1988 Summer Olympics in Seoul ...

hearty heath
#

brb

elder wraith
hearty heath
#

But you get paid a bucketload of money.

#

To make people look at their Facebook feeds for .5s longer per day.

slate stag
#

(kivy_venv) PS C:\Users\Name>

hearty heath
#

What's the Windows equivalent of which pip?

#

Shows you what executable pip refers to.

#

Well, on unix.

elder wraith
#

Not everyone can be like “I got money, who cares if I’m useless!”

#

If you can just take the money and not care, I salute that because my life would be easier if I was more nihilistic

#

Eat at Arby’s

slate stag
hearty heath
#

A litany of reasons 😄

#

I think documentation should be whatever it needs to be to help the user understand how to use the software.

#

Whether that's a reference manual, or a short story 😄

unborn plume
slate stag
#

Set-ExecutionPolicy RemoteSigned

hearty heath
warm tendon
#

They have the meats.

unborn plume
stark saddle
#

hello hi yes

hearty heath
stark saddle
#

At work, so no mic

#

I'm doing busy work and I'm the only one in my office on this side of the building

unborn plume
#

The longer I read and know about people and world, nihilism makes a lot of sense, now I just want to buy a cozy house somewhere in the middle of nowhere, have a dog and just keep reading till I die

elder wraith
#

I’m “working”

stark saddle
#

I mean, my "working" is just tidying up my office and desk

hearty heath
#

Sentdex just pinged me lemon_hearteyes (and everyone else in his server)

slate stag
stark saddle
#

Nah, I just got a new desk so I'm reorganizing

elder wraith
#

Ahh

stark saddle
#

This one lets me fit 3 computers and roll between them

elder wraith
#

Nice, my company removes workspace

raw wren
#

LMFAO

elder wraith
#

Kat probably has several computers for different things. Data people sometimes have that

#

Our used to have laptop for corporate, desktop for workloads that didn’t make sense to transfer to SQL server

stuck bluff
stark saddle
#

I have my admin laptop that has my email and stuff. My RDT&E networked computer, which is a dev computer that can access the internet. Then I have my RDT&E standalone that I have full admin access on but it's not connected to the internet

stark saddle
# elder wraith How do you access the 🌧?

On my network one. I do my super heavy dev stuff on my standalone, when it's mostly ready I migrate it to the networked rdt&e and then my email laptop is shoved in a corner of my desk

#

But we do have uhhh... I'll DM you the name

unborn plume
#

I use Visual Studio, I guess Code can do what I usually do but I dunno Visual studio feels good, powerful

hearty heath
#

My macbook sometimes randomly changes all the audio setting when the CPU is under high load.

#

¯_(ツ)_/¯

#

It's fine

#

As long as it's not obnoxious.

warped wind
#

o/

hearty heath
#

\o

warped wind
#

exams

#

tmw is last one

peak frigate
#

o/

#

o_

warped wind
#

and then again from next week 🥲

hearty heath
#

\o/

warped wind
#

electronics

peak frigate
#

orz

#

OTL

warped wind
#

wut

peak frigate
#

^ do you guys know these symbols

warped wind
#

o/ \o \o/

peak frigate
#

it's a body keeled/kneeling over

#

orm

warped wind
#

o7

peak frigate
#

OTL

warped wind
#

smart

slate stag
#

\o/

peak frigate
#

i think it's a korean thing

#

orz

warped wind
#

orz=OTL but with the ass a little back

peak frigate
#

OTL is like BIIIG BIIG OOF

#

orz is like ok, little oof

warped wind
#

😶

stark saddle
#

If this is WSL, you should not be doing cross OS-system stuff

warped wind
hearty heath
tiny torrent
#

hi

warped wind
#

m1 or intel

unborn plume
#

./

gleaming agate
#

sh <filename>

#

otherwise you have to make it executable

slate stag
gleaming agate
#

then the file should start with

#!/bin/sh
#

to make a file itself executable you have to do:

chmod +x <fileneme>
unborn plume
#

777 ?

#

or that is too much perms

gleaming agate
#

that is readable, executable and writable for all users

#

so that would be quite a lot of rights

unborn plume
#

I thought I was messing that up

slate stag
gleaming agate
#

try sh ./kivyenv.sh

unborn plume
#

For curiosity sake howd you fix the file not opening error

#

cant open file

#

oh ok, lol i thought id learn the correct way to do that

gleaming agate
#

I guess I started 10 years ago

#

but with breaks inbetween

stark saddle
#

Opal, but he left

unborn plume
#

@stark saddle will you be joining us tomorrow for Joe's session or it will only be him

stark saddle
#

I'll be hosting the session and making sure it generally stays on track

#

I'll also help moderate the Q&A portion

unborn plume
#

Oh good. I also wanted to ask something about Codejam. Do you guys rank all the projects or just the top 10 ?

#

I think only top 10 but... hope all

stark saddle
#

We review all the videos, definitely. But I don't think we'll rank outside of the top 10

warped wind
#

nothing @mild flume

mild flume
#

Fair

stark saddle
#

@unborn plume which team were you on?

unborn plume
#

Any stats on how many teams actually completed whole projects, how many have completed half assed projects (our team)

#

Virtuos Vultures

#

It was just 2 guys though, other people were busy or came in too late.

stark saddle
#

aaah, that one had a super cool idea

#

We can probably try to pull some stats on mostly finished projects vs half finished projects

unborn plume
#

Wish we couldve completed the whole thing, Im still thinking of coding it to full fruition

unborn plume
mild flume
#

This should be a good jumping off point

unborn plume
#

@mild flume We can also open terminal through address bar and pressing "cmd" there

slate stag
gleaming agate
mild flume
#

Yeah that's way over my head

gleaming agate
#

I'll just read the docs for now

#

or the code

stark saddle
#

Hem you gonna help judge the code jam videos?

mild flume
#

I can. When?

whole finch
#

Wait can I not hear anything or is no one talking

stark saddle
#

I don't think anyone is talking

unborn plume
#

No one talking

stark saddle
whole finch
#

Ahh ok

mild flume
#

I can make time

stark saddle
#

if you're busy no worries~

#

It's fine~

#

hsp has submitted a few, we'll probably get the ball rolling on that in a few weeks

mild flume
#

Righto

#

You should check out this stream, actually

stark saddle
#

For the top 10? In-depth spreadsheet and a full up code review

mild flume
#

Very worth me giving the perms

stark saddle
#

We'll roughly determine the order and stuff. On the livestream, actually demo-ing the projects is when we'll determine the top 3 and the winner

raw wren
#

Alrighty

whole finch
#

I like your new PFP @peak frigate

mild flume
#

bot#168 bot#1682

peak frigate
#

tenqoo praise

mild flume
#

bot#1680

ocean orbitBOT
stark saddle
#

whaaaat

#

Currently struggling with fixing a desk drawer

#

The bottom is a bit fucked, so I'm trying to reseat it

#

It's not playing nicely

#

I'm having such a productive friday in the office

gleaming agate
#

I'm currently implementing an Ant colony optimization algorithm

stark saddle
#

eeeey, I fixed the desk drawer

mild flume
dusty apex
#

this is funny

gleaming agate
#

nice - I'm getting my noisemaps to tile now

elder wraith
#

@raw wren I did all this work and you left

raw wren
#

Lmao I was getting food

mild flume
#

Dude like

#

All we heard was a loud noise and then nothing

#

Thought you died

elder wraith
#

We were dividing up your stuff

mild flume
#

Do you have a stereo?

elder wraith
#

also, AFK for a minute

hearty heath
#

Can I keep Scout? 👀

elder wraith
#

Sure, no one claimed him

mild flume
#

Her

hearty heath
#

Oh yeah. Bermuda actually 😄

raw wren
#

Sure

#

wait

#

no

#

she's mine

hearty heath
#

Ah, you're still alive 😄

mild flume
#

This is if you were dead from whatever loud thing happened

raw wren
#

Yes

hearty heath
#

Ifyouwanttogivemeapayrisesaywhat

true valley
#
Veem

Send and receive money internationally with Veem's online wire transfer services. Sign up today and enjoy zero wire or bank transfer fees

raw wren
hearty heath
#

They're just using a non-standard logic.

mild flume
#

Alternative logic

#

I'll be back, have a meeting with our IT folks

hearty heath
#

Oh no...

elder wraith
#

Just ban Fury and save us

raw wren
#

@stark saddle YOU TOOK MY ROLE

#

😦

elder wraith
#

Please don't give to him, I'm thrilled to have a role that Jake doesn't and it makes me happy

peak frigate
#

^

mild flume
#

So rude

peak frigate
#

@soft locusthi bongowave

dusty apex
#

well i have to go guys goodnight

mild flume
#

Bleh, I'm $33k

misty sinew
#

heyo first time here:)

#

what do people usually do and talk about here? just casual chill talk, or people also review each others code?

#

I do not know that much about coding yet, since I just began a couple of months ago lol

peak frigate
#

sometimes both but mostly just chatting

misty sinew
#

ahh okay cool

peak frigate
hearty heath
#

Yeah, it's always a prime number.

#

It's kind of interesting why.

peak frigate
#

wait that's bizarre

hearty heath
#

It means that different species (or whatever) clash less often.

#

If one comes out every 17 years, and another every 19 years, they come out in the same year every 323 years.

#

Er, idk that's biology 😄

#

I'm imagining you packing a tupperware of termites in your carry-on bag.

#

Pretty sure customs would have something to say.

#

I have not seen a cockroach in the UK

#

I have in Florida.

#

Mhm

#

Actually quite a lot as a child.

#

We have rats! 😄

#

Is it Devon or Cornwall who put the jam on scones the wrong way? 🤔

#

Jam, then cream.

#

Oh...

hearty heath
#

Clotted cream.

#

It even sounds unhealthy.

#

It's what it does to your blood.

#

They make ice cream from it. It's fantastic.

#

Stately homes 😄

#

"big houses"

true valley
#

junoir account executive.

random minnow
hearty heath
hearty heath
#

Does that mean you get to have lunch in fancy restaurants?

peak frigate
#

lmao yeah over zoom

random minnow
misty sinew
#

how do i make vscode not select shit like this when i press tab?

hearty heath
#

Oh, like focus is moving out of the text pane?

misty sinew
#

yes

#

i cant code without my tabs

#

and every tab i do moves the cursor to a button in the menu

peak frigate
hearty heath
misty sinew
#

ok

hearty heath
#

Looks like you just have to press ctrl+m to turn this mode off.

misty sinew
#

yes thank you

hearty heath
#

Gtg 👋

peak frigate
#

lol a guy just came to me and said

#

do we have a bp monitor?

mild flume
#

Um

#

What?

peak frigate
#

LOL idk...

#

i was like.. u ok?

#

said he had neck pain

hidden cliff
loud mirage
#

@peak frigate long time for no music XD

peak frigate
peak frigate
#

"6. Universal Audio Jack "

mild flume
#

This USB sound adapter is designed for new headphones with a 3.5mm trrs interface. For headphones with separate headphones and microphone, 3.5mm audio port can only be connected to headphones or microphone

peak frigate
#

bose nc700

#

bose qc35 ii

hidden cliff
mild flume
mild flume
gleaming agate
#

30 gang

peak frigate
#

gucci gang

#

@floral currentyah

gleaming agate
#

people just turn off the app then 😄

mild flume
#

I'm home so I'm heading off

peak frigate
#

bbye

#

and ty

floral current
#

bye

gleaming agate
#

have a good one

hidden cliff
#

@raw wren what yall doin ova der

wind prism
#

Hi , how does these voice channels work? are these also for help with clearing doubts ?

peak frigate
wind prism
#

ok got it

#

thanx

misty sinew
#

@upper dagger

modern comet
misty sinew
#

what should i do to activate voice chat?

grizzled tinsel
coarse hearthBOT
#

Voice verification

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

grizzled tinsel
#

I'm assuming this is what you mean

glossy dagger
#

!voice

coarse hearthBOT
#

Voice verification

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

misty sinew
#

hello

misty sinew
#

he

#

y

knotty solar
#

yeah, I'll help, if I can 🙂

misty sinew
#

i have very simple task

knotty solar
#

what's the prob?

misty sinew
#

that i cant solve

knotty solar
#

yeah, what is it?

misty sinew
#

i have 2 commands : +1 , *1.5 if x % 2 == 0. If x % 2 != 0 you cant *1.5. So i need to count programms that can do from 1 to 22

#

how i cant send my code?

knotty solar
#

wait, so i don't understand properly
but
if x % 2 == 0, you multiple by 1.5
and if it doesn't you can't,
right?

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

misty sinew
#

!code def f (x,y):
if x == y:
return 1
if x > y:
return 0
if x < y:
return (f(x+1,y))
if x % 2 == 0 and x < y:
return (f(x*1.5, y))
print (f(1,22))

#

its must work

knotty solar
#

lemme show you, one second

misty sinew
#

but here 1 , when answer 44

knotty solar
#
def f (x,y):
  if x == y:
    return 1
  if x > y: 
    return 0 
  if x < y:
    return (f(x+1,y))
  if x % 2 == 0 and x < y:
      return (f(x*1.5, y))
print (f(1,22))
#

👆 , this even better

misty sinew
#

u mean with spaces :?

#

my bad

knotty solar
#

yeah, just use backticks

#

don't do it now
I've posted you code up there

#

use it some other time

misty sinew
#

ok

knotty solar
#

so, the problem is answer is 44, but it shows 1 right?

misty sinew
#

yes

knotty solar
#

yeah, it's 1 as answer because

#

wait, can you hear me?

misty sinew
#

yes

#

yes

#

i have solved other task like that with that sample and they work correctly

#

ok, ill give original task

#

wait

knotty solar
#

this is the best I can do 😂

misty sinew
#

The performer has two teams, which are assigned numbers:

1.add one,

  1. multiply by one and a half.

The first of them increases the number on the screen by 1, the second increases this number by 1.5 times if the number is even. The second command does not apply to odd numbers.

A program is a sequence of commands.

How many programs are there that convert the number 1 to the number 22?

#

when here no odd numbers, task solved easy

#

I think problem in this

knotty solar
#

yeah, nice problem, keep trying 🤷‍♂️

#

I'm doing something atm, so please solve it on your own 🤷‍♂️

misty sinew
#

ok(

#

gb

misty sinew
#

!voiceverify

peak frigate
#

@mild flume can you hear me? lol

#

hm

#

oops i in wrong channel

warped wind
#

o/

#

too low

#

nvm, its fine now

#

what ya upto

#

ah true true

#

I have holidays until my final exams start on saturday

#

I am thinking what to do, just done with my assignment

scenic mason
warped wind
scenic mason
warped wind
#

my uni really knows how to torture students

#

or annoy us

scenic mason
#

lmao

warped wind
#

smart uni

scenic mason
#

i think that's every uni
tho I can't be sure until I go to a uni

warped wind
#

haha yea

#

we just finished our internals last saturday

#

and again finals this saturday

#

lol

#

tho internals were optional

#

have you worked with matlab @peak frigate

#

?

#

ohk

#

wow

#

they still use it

peak frigate
warped wind
#

and we had a course on it, lol

#

yes yes

#

that logo

#

we had matlab classes all online and never attended, lol

#

basically no one cares for matlab classes

#

its just so boring and idk why they are even teaching us that

#

we had python and C

#

nop

#

cpp from next sem

#

for CS course

#

but I am in mech course

#

1st year/first 2 semisters are same for all students regardless of branch

#

its not written formally anywhere, but english

#

the entire course is in english

#

really?

#

🤔

#

I did see a few student vlogs in korea

#

they had korean textbooks

#

ah right

#

I think, even the english degree had books in korean, I remember seeing a vlog

scenic mason
#

hmmm

warped wind
#

nice

#

chicken rice 😋

#

is it usually white rice there?

#

ah

#

in my house, brown rice is kinda standard, lol

#

tho we use white rice when we want to make biriyani, etc

#

in biriyani?

#

there are different types

#

yes yellow biriyani exists

#

today I had paneer pizza for dinner

#

yes it is for now

#

but many say third wave is around the corner

#

oki

hearty heath
warped wind
#

whats that

hearty heath
#

Matlab knock-off 😄

#

Basically an open-source Matlab clone.

warped wind
#

aah

#

was it a useful course?

hearty heath
#

I... don't remember. I'm not sure if I even completed that course.

warped wind
#

oh

#

o/

mild flume
#

!stream 253957578302816258

coarse hearthBOT
#

✅ @sage cloud can now stream until <t:1627323928:f>.

warped wind
#

whats up

#

@sage cloud

mild flume
golden marsh
#

@true valley i can hear you

#

and i could also hear that ping @true valley

#

nothing

open osprey
#

expected ouput:

granite nova
#

howdy

#

oh really?

#

thats nice

#

so how did u guys get started with python?

#

ooh nice me too

#

im actually like brand new to python and coding in general

#

like i still dk some things

#

for how long?

#

yeah me toooo

#

but im just really bad

#

oooh interesting

#

what was ur first coding app?

#

was it python?

#

ooooh same

#

haha i see

#

hahaha

#

is it still arnd?

#

howdy

#

sry what is?

#

sry repeat pls?

random minnow
granite nova
#

oooh

#

yeah yeah the coding app u started with

#

is it still arnd

#

sad haha

#

hahahaha thats mee

#

im just trying to get distracted from life

#

what kind of of beginner discord server?

#

haha

#

what were they talking aboot?

#

yeah thats a giant rookie mistake

#

yeah i agree

#

how did u practice python basic when u started?

#

i could use some advice

stuck bluff
#

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

granite nova
#

lol

#

oh u do? thats cool

#

u can draw in python?

#

amazin

#

ooooh i see

#

welp its getting late for me now