#voice-chat-text-0

1 messages Β· Page 753 of 1

vivid sapphire
#

Hello everyone!

versed island
#

any one used web RTC

#

@somber heath when would you say that you have learned enough about a programming language .... what are the key concepts

#

for industrial requirement

#

hmm

#

yeah

#

hmm

#

it doesnt really feel comfortable even after doing that with several languages in my case

#

basic programming concepts

#

to g on heaetvier things

#

like domain driven technologies

#

hmm

#

i mean like particular frameworks

#

like sockets IO for web

#

like android architecture

#

and libraries

#

so its fake it till you make it

#

feel comfortable as imposter

#

big companies can throw money at problem

#

but like individuals need a leaner approach

#

much more effiecient

#

ha ha ha

red stratus
#

Killing Eve

nocturne thunder
#

HELLO PRIME

red stratus
#

its on prime

#

Hello Prime are you optimus prime

lunar pendant
#

yaa i watched that too it's on prime

versed island
#

no im not optimus

#

he is different

red stratus
nocturne thunder
#

oooo

red stratus
#

don't you like the colours

#

?

nocturne thunder
#

prime where r u from ??

versed island
nocturne thunder
#

which country ?>???

versed island
#

guys i am working

red stratus
lunar pendant
red stratus
#

xd

hard wyvern
#

hello]

clear shadow
#

Hey

fiery hearth
clear shadow
#

@fiery hearth would you like to play agian

#

I wanna try it again

fiery hearth
#

sure

trail wing
#

like and subscribe

clear shadow
#

@whole bear .lovefest sub

fiery hearth
#

cholebhatore

#

@whole bear

clear shadow
#

jolo chips

whole bear
#

wheat or weed

fiery hearth
#

@whole bear

whole bear
#
fiery hearth
snow coral
#

SHIT

#

MANDATORY

#

50 MESSEGES

#

HERE I COME

#

how are tou doing?

#

?do y wanna sea an ml porject I made

#

send me a random pic

#

why the

#

fuck

#

did

#

the

#

mod

#

s

#

decided

#

to

#

demand

#

sending

#

50

#

messeges

#

before

#

y

#

could

#

speak

#

this

#

lol

whole bear
#

wats up

snow coral
#

am I going to be banned?

whole bear
#

yeah just dont spam

#

i will ask a question

snow coral
#

I can hear y

#

whats the quetion?

whole bear
#

do u eat pizza rolls

snow coral
#

the duck is pizza roll?

whole bear
#

how do u chew it

dusk burrow
#

hhhhhhhhhhhh lol

whole bear
#

do u have arms and legs or no

snow coral
#

no

#

I also don't have a head

#

I am a ghost?

whole bear
#

nice so ur a can

snow coral
#

yup

#

can you answer me

whole bear
#

yeah of course

snow coral
#

who was your day

whole bear
#

chill its

snow coral
#

how

whole bear
#

know dont i

snow coral
#

autcurrect is wierd

whole bear
#

right ur

snow coral
#

wdym?

whole bear
#

doing your are what

dusk burrow
snow coral
#

yato what do i need to do?

violet oasis
#

#voice-verification and !voiceverify

swift breach
#

How y'all doing today?

whole bear
#

great doing im

snow coral
#

cv2.error: OpenCV(4.5.1) \Temp\1\pip-req-build-oduouqig\opencv\modules\imgproc\src\color.cpp:182: error: (-215:Assertion failed) !_src.empty() in function 'cv::cvtColor'

violet oasis
#
x = 0
print(x, end='')

while x < 1000:
    check = input()
    if check != '':
        print('Wrong button! Press Enter.')
    elif not check:
        x += 1
        print(x, end='')
exit()
#
#include <iostream>
using namespace std;
int main() {
    int c = 0;
    cout << c;
    while(c < 1000) {
        if (cin.get() == '\n') {
            c++;
            cout << c;
        }
    }
}
whole bear
#

opal fix ur mic

somber heath
#

I'm not talking if I have to talk over everyone.

violet oasis
#

join vc 1

whole bear
#

everyone listen to opal

somber heath
dusk burrow
#

Cause I'm still doing things in basic way

violet oasis
#

what is the most complex code you've written?

#

can you share it here?

#

we will tell you where to go form there

red stratus
somber heath
violet oasis
#
input_1 = int(input("Write a number ! \n >>>>> "))
input_2 = int(input("Write an other number ! \n >>>>> "))

if input_1 >= input_2:
    x,y = input_1,input_2
elif input_1 < input_2:
    x,y = input_2,input_1

q = x//y
r = x % y
x = (qy) + r

if r == 0:
    print(f'\nPGCD({input_1};{input_2}) = {y}')
elif r == 1:
    print(f'\nPGCD({input_1};{input_2}) = {r}')

while r != 1:
    q = x//y
    r = x % y
    x = (qy) + r
    if r == 1:
        print(f'\nPGCD({input_1};{input_2}) = {r}')
        break
    elif r == 0:
        print(f'\nPGCD({input_1};{input_2}) = {y}')
        break
    x,y=y,r   
#

delete yours and use this as reference :)

whole bear
#

cosplay

violet oasis
#

uhh Salah you want a piece of advice?

#

@dusk burrow try and make your code more readable

dusk burrow
violet oasis
#

it will benefit you and people who look at your code

#

yea

#

like instead of q r and stuff

dusk burrow
#

I'm doing better now

violet oasis
#

write exactly what they mean

dusk burrow
#

but I need some advices though

violet oasis
#

you wanna send the most complex code you've written?

#

oh im always down to help man :)

dusk burrow
#

Thanks man that will really help

violet oasis
#

@dusk burrow here

#
# Assigning the counter to a variable starting at 0.
counter = 0

# Print 0 and the end='' is to not add an extra space.
print(counter, end='')

# Keeps the code running until it reaches 1000.
while counter < 1000:

    # Checking if the counting button is pressed, which is 'Enter'.
    check = input()

    # If we input anything other than 'Enter', it will return the message below.
    if check:
        print('Wrong button! Press Enter.')

    # If we press 'Enter', then it will increase the counter and print it.
    elif not check:
        counter += 1
        print(counter, end='')
        
exit()
whole bear
#

sounded like a robot for a sec

violet oasis
#

this code with comments and defining variables makes the code easy to read

whole bear
#

opal knows the bible too

dusk burrow
violet oasis
#

so uhh

whole bear
#

xd

violet oasis
#

it will close the program once its done running

#

if you compile it into an .exe application, it will close once you it reaches 1000

#

dude add me and ask for help whenever you need me to :)

#

always happy to help

whole bear
#

brb

dusk burrow
violet oasis
#

np

somber heath
#

@red stratus Mute yourself, maybe?

red stratus
#

sounds nice

potent torrent
#

Hi, would anyone be able to help me with a c++ worksheet?

somber heath
warped saffron
#

omyawoo

#

mo shingeiyu

#

NANI!?!?!?!

#

indeed

gentle flint
warped saffron
#

indeed Mr. Oof

#

Have you heard that Michelle Obama has been dubbed "too forceful"?

warped saffron
#

strange right

gentle flint
#

and, perhaps, the employees at the council office

somber heath
#

πŸ–ŠοΈ

severe pulsar
#

perfect

gentle flint
warped saffron
gentle flint
#

I may have posted this before

somber heath
#

Wauchope, said "War hope"

whole bear
#

attendance marked

gentle flint
#

a radioactive potato

#

sounds smexy

#

he's no chick tho

#

oh really?

#

that's a big assumption

violet oasis
#

windows main and linux on vm

#

manjaro

#

yea

#

its a pain

#

also opal why you go quiet everytime theres like 2 or more ppl talking

lunar pendant
#

hello everyone

somber heath
#
import itertools
print('a')
for each in itertools.product('aopt', repeats=6):
    each = ''.join(each).lstrip('a')
    print(each)
    if each == 'potato':
        break```
violet oasis
#
int a{10};
whole bear
#

ohh

lunar pendant
#

I started with c++ and iam still learning

whole bear
#

oh my

lunar pendant
#

opalmist uses the pickup lines which you never heard off

#

@somber heath but you have the most sexiest accent, you should try

#

but on girls

#

not on me

#

Oplamist - "Hi"
Girl - "let's go on a date"

violet oasis
#

opal we need you

somber heath
#

That's not really how that conversation would go.

#

I'll be back later.

rugged root
verbal heart
#

!voiceverify

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @verbal heart until 2021-02-08 15:10 (9 minutes and 59 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).

dense ibex
balmy nymph
#

!unmute @verbal heart

wise cargoBOT
#

:incoming_envelope: :ok_hand: pardoned infraction mute for @verbal heart.

balmy nymph
pure anchor
#

Also, not sure if you read this but seems lot's of people aren't verified.

amber raptor
#

Yes, that's normal

pure anchor
#

I mean, I understand why. It's just hard for a lurker. xD

zealous wave
rugged root
pure anchor
rugged root
#

I hear you

#

Well on the plus side, most of us watch the text channel when we're in VC

#

So conversations still happen between both side

pure anchor
#

Cool ^_^

rugged root
somber heath
#

I will join, anon.

violet oasis
#

opal join vc

whole bear
#

Hi guys

#

wassup cuz

abstract ravine
#

smtimes hemlock sounds like Dr. Heinz from phineas and ferb

rugged root
hushed elm
#

i've got this pair and it's one of the best out there in terms of cash/sound quality

stoic cloud
#

guys, do you have an idea to convert a python file to an exe file, that uses imagres and wav and mp3 files in the python file?

violet oasis
#

maybe

#

look up python compilers?

stoic cloud
#

yeah i use pyinstaller

#

but im not sure how

violet oasis
#

do you know how to compile your code?

rugged root
#

It makes life a lot easier

hushed elm
somber heath
hushed elm
#

this is another pair i have, with removable cables too

#

they have great sound q, the bass is awesome, but they're a bit big for in-ear headphones

#

BLEEDING πŸ”ͺ 🩸

#

MMCX connectors

rugged root
warped saffron
#

All of the governments hahaha

hushed elm
#

gonna match those headphones with my underwear

somber heath
#

I've been waiting for this moment. @gentle flint and @snow coral in the same chat.

wise glade
#

why does verbose sound like a robot?

gentle flint
#

headset

hushed elm
#

it's because he's a robot

gentle flint
#

^

hushed elm
#

a robot studying electric engineering is like a human learning biology

#

this one also matches my underwear

#

fainals

vivid compass
#

u have fancy underwears

hushed elm
#

oh yeah definetly

#

wanna see?

vivid compass
#

yea

warped saffron
#

Geniuses in stupidity

rugged root
#

!resources @hearty cypress

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.

warped saffron
#

Why are there so many help channels actually?

hushed elm
#

lots of people want help

hoary inlet
#

online courses

hushed elm
#

so they get filled fast

warped saffron
#

ah

vivid compass
#

mhm

lunar pendant
#

scary

vivid compass
#

dont look into my homework folder

warped saffron
#

Why name them after elements?

wise glade
hushed elm
#

because there's a lot of elements

warped saffron
#

I'm curious

gentle flint
#

ngl that is actually a good reason

rugged root
#

Jesus, the number of people that jumped on trying to help her

violet oasis
#

lmfao

gentle flint
#

my "homework" folder, huh?

violet oasis
#

ikr

hushed elm
#

well she's a girl, that's why

vivid compass
#

i stole it from a 6th grade bully

violet oasis
#

^

warped saffron
#

Simpin is etiquette

hushed elm
#

thirsty devs

warped saffron
#

A speciallity

vivid compass
#

begone simps

wise glade
violet oasis
#

@rugged root you're married so you cant judge our thirst xD

warped saffron
#

well

vivid compass
#

lmao

rugged root
#

So long as it doesn't get creepy or what have you

gentle flint
violet oasis
#

oh i didnt do anything

hoary inlet
violet oasis
#

i was just speaking for the bois

warped saffron
#

Understandable, have a nice day

violet oasis
#

im too young to be simping tho :)

gentle flint
#

next up: she goes and reads this whole chat

warped saffron
#

@whole bear The 7 words you may never hear

vivid compass
warped saffron
#

no

gentle flint
#

no

warped saffron
#

ah!

#

You're a great guy

warped saffron
#

No matter how much you try to resist, there will always be a chunk of simp left

violet oasis
#

no

gentle flint
#

shut

warped saffron
#

This is a universal law

vivid compass
#

XD

warped saffron
#

Oh yes

hearty cypress
#
test

snow coral
#

why can't pepole respect women?

warped saffron
#

My oh my

violet oasis
#

yall gotta get some 🐱

warped saffron
#

I respect all women

vivid compass
#

πŸƒβ€β™‚οΈ

amber raptor
#

Glad I’d missed whatever is going on in here

warped saffron
#

Some may not respect me, but that's ok

rugged root
gentle flint
violet oasis
#

^

somber heath
#

Something sounded like it was getting murdered outside. Pretty sure I hear foxes.

amber raptor
#

Get out the bat

violet oasis
#

Hemlock howd you find a wife as a nerd

warped saffron
#

Like a high-school crush

rugged root
violet oasis
#

i mean

somber heath
#

I will summon it with my bat powers.

violet oasis
#

apart from that handsome jawline

warped saffron
#

@rugged root Have you ever written an algorithm for/with your wife

#

?

vivid compass
#
#ok
wise glade
#

I wish I could live in australia for some time, if possible

violet oasis
#

@rugged root can i borrow your jawline?

warped saffron
#

shut

violet oasis
#

accelerator why?

warped saffron
#

Noice

vivid compass
gentle flint
#
for lady in population[ladies]:
    try:
        lady.date()
        wife = lady
    except RejectionError:
        pass
warped saffron
#

hahahaha

somber heath
#

Pfeh.

gentle flint
#

I know, it's bad practice

wise glade
#
while True:
  for lady in population[ladies]:
    try:
        lady.date()
        wife = lady
    except RejectionError:
        continue
gentle flint
#

oh, much better

violet oasis
#
while status == lonely:
  wife.look()
elif status == 'dead':
  stop()
hoary inlet
#

lol

somber heath
#

Exceptions are fine. Asking for forgiveness is often cleaner than asking for permission.

glacial haven
#

and mod mail

gentle flint
#

not sure about while True tho
perhaps

while single and ready_to_mingle:
gentle flint
#

πŸ₯²

hoary inlet
hushed elm
gentle flint
#

^

vivid compass
#

ik πŸ˜”

rugged root
wise glade
#

Rule 5 , can't give book link, for free e-book

vivid compass
hushed elm
#

light mode best mode

vivid compass
hushed elm
#

?

gentle flint
#

!e

raise SyntaxError("No girl for you")
wise cargoBOT
#

@gentle flint :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 1, in <module>
003 | SyntaxError: No girl for you
warped saffron
#

hahahaha

vivid compass
gentle flint
#

@nocturne thunder please mute

#

and he got server muted

rugged root
#

@nocturne thunder I muted you because you had some background noise coming through

#

Let me know when you get it taken care of so I can unmute you

warped saffron
#

Simple as it is

violet oasis
#

hemlock how far does the book cover in python?

wise glade
violet oasis
#

does it have ternary operators, anonymous functions and stuff

vivid compass
#

|| johny is under your bed πŸ‘€ ||

gentle flint
#

FBI OPEN UP

vivid compass
lunar pendant
faint ermine
#
import antigravity
vivid compass
wise glade
violet oasis
#

yea but what about ternary operators, anonymous functions and classes?

glacial haven
#

so i read the rules and unless they changed it

wise glade
#

i learned regex from this book

nocturne thunder
warped saffron
#

@faint ermine What is the antigravity package?

nocturne thunder
#

by mistakely my mick was their on

vivid compass
#

joe mama

viscid lagoonBOT
#
XKCD comic #353
sick dew
glacial haven
#

they are ok under 13 if their parents or guardian approves

#

something like that parent has to verify

gentle flint
#

uh
no it's not @glacial haven

warped saffron
#

program a game?

viscid lagoonBOT
#
XKCD comic #636
faint ermine
warped saffron
#

well well well

#

Code comedy

viscid lagoonBOT
#
XKCD comic #411
vivid compass
#

.xkcd 369

viscid lagoonBOT
#
XKCD comic #369
#
XKCD comic #111
vivid compass
#

ima stop

rugged root
warped saffron
#

The FBI will never warn

wise glade
#

is that any 3 digit num followed by .xkcd?

faint ermine
vivid compass
#

||the secret ingredient is crime||

snow coral
snow coral
gentle flint
wise glade
vivid compass
wise glade
#
____= print
def ___(n):
    _,__ = 0,1
    while _ < n:
        _,__ = __,_+__
        yield _
for _ in ___(100):
    ____(_)
violet oasis
#

huh

gentle flint
#

no

wise glade
#

πŸ˜‚ run it

violet oasis
#

yes

#

python is slow

#

compared to java and c++

hoary inlet
#

python is not supposed to be fast

wise glade
#

yeah, fuck python, let's all quit this server, right now

warped saffron
#

shut

#

Yay!

wise glade
#

anyone like C#?

vivid compass
#

why bully python

violet oasis
#

cuz

vivid compass
glacial haven
#

:(

wise glade
#

man, C# can do a lot of stuff, and its fast too

#

πŸ‘† microsoft backed up support

#

but, verbose

#

but cool

whole bear
#

.help xkcd

viscid lagoonBOT
#
Command Help

.xkcd <comic>
*Getting an xkcd comic's information along with the image.

To get a random comic, don't type any number as an argument. To get the latest, type 'latest'.*

whole bear
#

.xkcd latesr

viscid lagoonBOT
#
XKCD comic 'latesr'

Comic parameter should either be an integer or 'latest'.

whole bear
#

.xkcd latest

viscid lagoonBOT
#
XKCD comic #2421
violet oasis
#

@whole bear dude go into bot channels

#

not here

#

:)

whole bear
violet oasis
#

np

#

have fun :)

#

wdym

#

it may have sounded a bit meaner than I intended it to

wise glade
#

hey, hey, hey,
laundmo is chatting too much with her 😠

sick dew
hazy dagger
#

haha

zealous wave
#

true, I would totally be impressed

somber heath
sick dew
wise glade
#

@faint ermine I just remembered, you never replied to something I ask, 2-3 days ago (I think)
why? 😒

somber heath
violet oasis
#

laundmo just took over chat

sick dew
#

xD yep xD

faint ermine
#
Electronic Frontier Foundation

At issue in Oracle v. Google is whether Oracle can claim a copyright on Java APIs and, if so, whether Google infringes these copyrights. When it implemented the Android OS, Google wrote its own version of Java. But in order to allow developers to write their own programs for Android, Google's...

violet oasis
#

yea these 2 just took over our female free vc

#

xD

sick dew
vivid compass
#

lmao

wise glade
#

ok, brb (maybe)

faint ermine
vivid compass
#

im in your basement

hazy dagger
#

so many ppl

sick dew
#

I'll be back later

vivid compass
glacial haven
hazy dagger
#

no in this vc

zealous wave
#

FBI OPEN UP

vivid compass
wise glade
vivid compass
#

come check yourself py_guido

vivid compass
wise glade
#

I might have been desparate

#

otherwise, I'll dm Hemlock or Opal, not Laudmo πŸ˜‚

faint ermine
#

generally, just dont DM staff without being prompted

wise glade
#

I don't have guts to dm a girl,
won't go past "hi"

vivid compass
#

she should change her status to : i have a boyfreind

violet oasis
#

@wise glade i have super guts

#

like

#

too much for my own good

wise glade
#

hmm, you just proved, you got none

zealous wave
#

@gentle flint

hazy dagger
#

little flex

violet oasis
#

i can walk up to a random girl in public and tell her that shes pretty or hot

#

:)

gentle flint
wise glade
#

verbose, what did you buy for microphone, I want too

gentle flint
#

how nice of you to randomly ping me

zealous wave
violet oasis
#

wdym neither

gentle flint
wise glade
#

I want Vader voice or something like that

violet oasis
#

@vivid compass just be confident :)

#

most of the time they'll just say thank you or smth

vivid compass
violet oasis
#

nah

#

you wont get slapped

#

yea

gentle flint
#

my sister tells me about it

vivid compass
#

ima try now

gentle flint
#

she detests it

zealous wave
#

ima be real with you, doing that makes people really uncomfortable, please dont do it to others.

violet oasis
#

lmao

#

you gotta be nice tho

#

not creepy

gentle flint
#

she says if she felt a little more brave she'd probably slap people across the face for doing it

#

and she's kinda right

wise glade
#

holy sh**, a headphone stand costs more than headphones? why? wtf is this thing other that a stand

gentle flint
#

If you insist.

violet oasis
#

it doesnt have to be if you dont want it to

violet oasis
#

its up to you

wise glade
#

fuc*** EA

vivid compass
wise glade
#

hate EA

zealous wave
#

and even then you wont get much done

wise glade
#

quick question, have any of you guys written any line of code, or are you just typing over here?

violet oasis
#

yes

#

i mean no

violet oasis
#

idk how to code

wise glade
hazy dagger
#

not even a bit

violet oasis
#

i just like programmers

#

programmers are big brain and i like to hang around big brain ppl

gentle flint
wise glade
#

enough for me, for today
i made a resolution to start working out even more from tomorrow morning
so gonna go to bed early

violet oasis
#

is it bad that i dont know how to code?

wise glade
#

let's see how it'll go

vivid compass
gentle flint
#

but it will change

violet oasis
#

its nearly 4 am here

gentle flint
#

so have no fear

wise glade
violet oasis
#

and i have class at 7:30

gentle flint
#

then go sleep

sick dew
hazy dagger
#

its 17:44 for me

vivid compass
#

Adios

gentle flint
#

or you won't be able to code tomorrow

wise glade
violet oasis
#

accelerator where should i start?

zealous wave
#

"foo".__list__ that does list("foo")

hazy dagger
#

just start with C

vivid compass
#

i will try not to py_guido

hazy dagger
#

haha

wise glade
vivid compass
#

start with html

faint ermine
vivid compass
violet oasis
#

uhhh

wise glade
#

most useful dunders? not the common ones

hazy dagger
#

Start with buying 10$ worth of Dogecoin

teal veldt
#

a lot of CPython code might be required for a dunder method @zealous wave

snow coral
#

[ WARN:0] global pip-req-build-oduouqig\opencv\modules\videoio\src\cap_msmf.cpp (434) `anonymous-namespace'::SourceReaderCB::~SourceReaderCB terminating async callback

violet oasis
#

what are strings @wise glade

#

and integers????

hazy dagger
#

variables

wise glade
#

__next__, __iter__, __open__, __exit__, __str__, __repr__, __new__
are there more?

wise glade
#

no, the useful ones, the must have's

hazy dagger
#

4:36 min in VsCode an asks what strings are

violet oasis
#

wdym?

hazy dagger
#

'hours

violet oasis
#

vs code looks nice

violet oasis
#

idk how to use it tho

hazy dagger
#

lol

zealous wave
#

!e ```py
print('\n'.join(i for i in builtins.dict if i.startswith("") and i.endswith("")))

wise cargoBOT
#

@zealous wave :white_check_mark: Your eval job has completed with return code 0.

001 | __name__
002 | __doc__
003 | __package__
004 | __loader__
005 | __spec__
006 | __build_class__
007 | __import__
008 | __debug__
violet oasis
#

my friends told me to get vs code

#

how do i use it?

zealous wave
#

thats just a tiny bit

hazy dagger
#

Day 4 of C++ grind

vivid compass
#

yea installed a extension uhu

teal veldt
lunar pendant
#

c++ is life

vivid compass
wise glade
#

so which built in method's most useful? I'll do on that

violet oasis
#

what is c++?

hazy dagger
#

But reffering to you file name you could be a beginner

#

but idk

vivid compass
wise glade
gentle flint
violet oasis
#

what can i do with programming languages?

gentle flint
#

program

violet oasis
#

how???

gentle flint
#

depends on the language

lunar pendant
#

java and c++ >>>> oxygen

vivid compass
violet oasis
#

really?

gentle flint
#

yes

vivid compass
#

yea

violet oasis
#

pls teach me how to do that

vivid compass
#

shrek is life

faint ermine
#

!e ```py
class A:
def init(self, l):
self._l = l
def iter(self):
return iter(self._l + ["hey"])

a = A([1])
print(list(a))

snow coral
#

[ WARN:0] global pip-req-build-oduouqig\opencv\modules\videoio\src\cap_msmf.cpp (434) `anonymous-namespace'::SourceReaderCB::~SourceReaderCB terminating async callback

help?

wise cargoBOT
#

@faint ermine :white_check_mark: Your eval job has completed with return code 0.

[1, 'hey']
teal veldt
#

maybe ?

violet oasis
#

whats import?

zealous wave
violet oasis
#

i wish someone would teach me how to program :)

vivid compass
gentle flint
hazy dagger
#

read

teal veldt
hazy dagger
#

Look at his status

vivid compass
#

he jking

gentle flint
#

he's trolling

violet oasis
#

wdym status

#

what is c++?

vivid compass
hazy dagger
#

haha

violet oasis
#

i can program using a toilet paper brand?

hazy dagger
#

oc πŸ™‚

vivid compass
violet oasis
#

whats plython then?

somber heath
violet oasis
#

lmfao

#

bruhhhhhhhhhhhhh

wise glade
violet oasis
#

opal with the dad jokes

vivid compass
violet oasis
#

also uhh

#

if thats your teminal

violet oasis
#

it looks bad

#

tbh

lunar pendant
wise glade
#

it was Dev++, I think

violet oasis
#

thats better

lunar pendant
#

c++

violet oasis
#

meh i wish i knew how to code

zealous wave
wise glade
violet oasis
#

it took me an hour to run hello world in cpp

hazy dagger
#

you forgot print()

zealous wave
violet oasis
#

cuz i forgot i had to install a compiler and stuff

lunar pendant
violet oasis
#

nope i mean run

gentle flint
lunar pendant
violet oasis
#

well build to be exact

#

yea but it was my fault

wise glade
violet oasis
#

that is hell

vivid compass
violet oasis
#

literally

#

this is better

vivid compass
hazy dagger
wise glade
#

I mean, if your eyes start hurting from normal theme, use the red thing
it blocks all the blue light

gentle flint
hazy dagger
#

haha

#

reddit

somber heath
hazy dagger
#

and then wonder why the back hurts

vivid compass
zealous wave
#

...

gentle flint
lunar pendant
vivid compass
#

XD

wise glade
vivid compass
wise glade
#

me on the left, literally that was the transition

vivid compass
#

me on the right py_guido

lunar pendant
wise glade
#

all was good until python classes, then came self

#

ok, I just noticed, why did people go over in voice chat 1?

hazy dagger
zealous wave
#

Because most tutorials are shit

wise glade
#

anyway laundmo, won't dm you again, but can u look at the last dm please @faint ermine
first and last

faint ermine
#

not right now, im kinda busy

lunar pendant
faint ermine
wise glade
wise glade
#

it was sunday

wise glade
#

no one was around, in the channel

#

I saw him in my chats at the top,

lunar pendant
#

why everyone went to voice chat 1?

whole bear
wise glade
#

oops

full sinew
honest pier
#

πŸ‘ failed πŸ‘ my πŸ‘

#

fuck

#

physics πŸ‘ exam πŸ‘

icy axle
#

Ohhh

#

That's a bummer

honest pier
#

well idk if i did

#

it just feels likie it

zealous wave
#

it is what it is

icy axle
#

!charinfo ΠΊ

wise cargoBOT
icy axle
#

@green bone caught

dire oriole
#

im sure you did great @honest pier

green bone
icy axle
#

:(

green bone
#

fixed

#

πŸ™‚

icy axle
#

!charinfo k

wise cargoBOT
icy axle
#

Hmm

#

!charinfo VΠ΅stΠ΅rgurkΠ°n

wise cargoBOT
icy axle
#

I see, I see

zealous wave
#

!charinfo __chili__.gurkan()

wise cargoBOT
#

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

zealous wave
#

smh

#

@icy axle did you just change your nick so u went to the top of the vc?

icy axle
#

Smh mh

#

This a🚌

zealous wave
icy axle
#

Blame @green bone

#

I'm back

green bone
zealous wave
#

Ahh

honest pier
#

i have survived calcus

hoary inlet
#

anyone has any idea on how to delete an older version of python, it is not showing up in control panel

dire oriole
amber raptor
honest pier
dire oriole
#

shh

honest pier
#

:/

dire oriole
#

oh

honest pier
#

yet others love optimism

paper tendon
rugged root
#

I love listening to you guys. You're both people that has to have the last word

faint ermine
rugged root
#

Fair

#

It's just funny to me

#

Wasn't meant as a jab

faint ermine
#

also fair

hoary inlet
#

I deleted the python.exe but the python 3.7.exe still opens the command shell which means the framework is still in the system I just deleted the entry point, so how do I delete the whole thing.

rugged root
hoary inlet
#

arrays only have one type and fixed in c++

summer jackal
#

damn

#

how often do people use vc?

#

here?

hoary inlet
#

always

rugged root
#

I'm pretty much here every weekday

honest pier
#

Arrays are sequence types and behave very much like lists, except that the type of objects stored in them is constrained.

rugged root
honest pier
#

yeah, i'm an ear model

uncut meteor
honest pier
#

integrated development environment?

#

more like

#

improvised device explosive

uncut meteor
#

Irrigation Deployment Environment

amber raptor
digital jackal
#

Hey guysπŸ˜„

#

how are you all?

rugged root
#

Good!

digital jackal
#

I wish i could join vc

#

i got a lot of exams

#

DISTRACTIONS

rugged root
#

!projects

wise cargoBOT
#

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.

honest pier
rugged root
#

Cool, weird website bug on our site here at work

vivid palm
#

😦

rugged root
#

For some reason we're not getting blog updates (which are provided by a 3rd party) to our blog page. We are for the main resources bit, but for some reason the blog itself is only showing articles from September of last year

#

Oh, and I just got hung up on

#

So

#

Yeah

honest pier
#
match greeting:
    case "":
        print("Hello!")
    case name:
        print(f"Hi {name}!")
uncut meteor
rugged root
#

Looks like a cert didn't get properly added

vivid palm
#

C920

digital jackal
#

f

vivid palm
paper tendon
#

Write python script that extract attachments πŸ™‚ Not sure in which format outlook caches mail locally

vivid palm
#

^ lol so many things i could/should try to do to help with work but

#

have to keep doing existing tasks pepeCry

#

my first coding project i did last december was all on my own time in evenings/weekends

#

i don't have it in me to do that all year round lol

paper tendon
#

SE is serious buisness. πŸ™‚

#

Yeah Linear Algebra in my country then Mathematical Analysis which is a part of a Pure math and beyond of Calculus. Basically study how to make proofs and functional analysis.

amber raptor
#

Mina, I can’t find a script to move stuff into OneDrive automatically

vivid palm
#

rabbit 😦

#

remind me, why do you not advise the pst route?

#

oh

#

if the company gets sued?

#

but, that's not my problem right? πŸ˜„

amber raptor
#

Yep

#

And if you lose the PST, poof

#

And people lose stuff all the time

vivid palm
amber raptor
#

Ask for Exchange Online Archiving licensing

amber raptor
#

So in theory it’s possible

#

It’s been a while since I interacted with Graph

rugged root
#

Honestly Office's REST API isn't that bad

#

Had to futz with it when I was making my Excel plugin

amber raptor
#

It’s very Powerful

#

But my archiving license is also 3 bucks a month so shrug

#

There is also scary thought of saving all that data in email

honest pier
#

advisor mina 😍

gentle flint
#

here's an example of a Lebanese full-stack dev

amber raptor
#

Amazon fed me for free

#

That was fun

whole bear
#

Cisco interviews were 3 interviews, last interview was 2hours with 4 people in a room, hitting with questions

amber raptor
#

It ended at 3

vivid palm
#

i feel like you cannot avoid math........

#

even in a sw engineering degree?

whole bear
#

Professor Greg do you have meetup groups where you live?

sonic mountain
#

How close is the Lebanese educational system to the French one ? cc @digital jackal

whole bear
#

Join meetup groups, alot of IT is who you know man

restive geyser
#

you go to uni for the network. <.<

honest pier
#

frfr

restive geyser
#

w0rd up

sonic mountain
#

are you talking about "class prΓ©patoire" cc @digital jackal

#

then the math is going to be basic stats, matrices etc .. nothing crazy if you have really the basics

amber raptor
#

For Americans

restive geyser
#

mmhmmm. they recruit at fordham like cray cray

amber raptor
#

I hear SolarWinds is looking for CISO 😏

restive geyser
#

oooo get that resume ready πŸ˜‰

sonic mountain
#

The IT support guy in the startup i was working with learned Java on the job and started doing small internal tools, then became a junior dev

honest pier
#

bruh my friend literally got 2 internships in a year, one at facebook

#

meanwhile, i have 0

#

πŸ˜”

gentle flint
#

I got offered an IT position when I was 13
(although that was also the only time for the next 5 years)
comes of having a linkedin account with lots of info

restive geyser
#

look into specific programs for high school/ freshmen/sophomores in college.

sonic mountain
#

CRUD FTW

restive geyser
#

the big tech companies have so many of those "get your feet wet" programs

#

that's how firms hire now. they start you yooooouuuuunnng

amber raptor
vivid palm
#

lmao

gentle flint
#

apparently unemployment in lebanon hit 40% in february 2020

whole bear
#

Hey I am new to python and am trying to code flappy bird, my code is hanging and not returning grammatical errors in the code, i think my logic is hozed, any assistance would be appreciated, thx

restive geyser
#

@sonic mountain you need to check the #voice-verification channel

sonic mountain
vivid palm
sonic mountain
#

alright since i can't speak, and its like 11PM here, @digital jackal can DM on twitter raed667

whole bear
#

does anyone look at code in here ?

honest pier
#

maybe

amber raptor
#

Rarely

whole bear
#

lol, fair enough

restive geyser
#

HAR HAR HAR

whole bear
#

i ll try to figure it out myself

restive geyser
#

@whole bear , you can claim a help channel

honest pier
#

if you send it i can decide if i want to help

restive geyser
#

lmao "i can decide"

whole bear
#

lol

#

word.

#

one sec

#

should be pretty green for you guys

#

i hope you like cake

rugged root
#

Heading home

#

Catch you folks later

honest pier
#

!paste @whole bear

wise cargoBOT
#

Pasting large amounts of code

If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.pydis.com/

After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.

honest pier
#

not gonna open anything in dms

whole bear
#

cool

sonic mountain
#

i can do 2+2 = 5

#

and no i didn't get good grades ,, barely passable

whole bear
#

this is my first submission

restive geyser
#

i wanted more of the weeknd and less of the game. lel

#

poor mahones. next time, bud.

whole bear
#

@honest pier I have applied assets also if you want to test..

honest pier
#

!paste

wise cargoBOT
#

Pasting large amounts of code

If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.pydis.com/

After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.

restive geyser
#

he asked if everyone was good at math

#

then passed out

#

lmao

whole bear
#

The issue is the bird flaps, moves and rects with bird and pipes will stop game, i both modified and changed code in the following ways, I can DM them if you can read them as basic text.

honest pier
#

!paste

wise cargoBOT
#

Pasting large amounts of code

If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.pydis.com/

After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.

whole bear
#

ok

#

!paste

honest pier
#

you're meant to read it

whole bear
#

i did, was seeing if i also had the function

honest pier
#

so uh

#

did you read it

whole bear
#

i ve had it copied for a while now. was just parsing where I ve made errors in my code trying to point out the directions that I ve already confirmed do not work

honest pier
#

is there an error

whole bear
#

nope

honest pier
#

so what's wrong

whole bear
#

it it goes from running the game with the bird,pipes, rect collisons, and keybord imput working

#

to the bird just being still

#

here is the working code, im modifying for a python.transform.rotozoom, this is what causes the error

#

working

#

not working

#

ADDED
Line
33 def rotate_bird(bird):
34 new_bird = pygame.transform.rotozoom(bird,-bird_movement * 3,1)
35 return new_bird

Line changes
98 screen.blit(rotated_bird,bird_rect)
Changed (bird_surface,bird_rect) to (rotated_bird,bird_rect)

#

these are the changes that cause me to hit the wall

#

if you need, I can send you assets so that you can run them if you like

#

there are 4

honest pier
#

put print statements or use a debugger to step through the program until it freezes

whole bear
#

ahh

#

alright

#

@honest pier thanks

hoary inlet
#

@zealous wave any help ?

#

πŸ‘

potent torrent
#

i cant talk

#

yeha

#

yeah

gentle flint
zealous wave
#
t = ____.__add__(__import__("math").sqrt(____).__int__()).__add__(__import__("math").sqrt(____).__int__()).__sub__([].__len__().__bool__().__str__().__len__().__sub__([____].__len__().__bool__().__str__().__len__()).__sub__()).__sub__([].__len__().__bool__().__str__().__len__().__sub__([____].__len__().__bool__().__str__().__len__()))
TypeError: expected 1 argument, got 0
amber raptor
#

!e python a = "123456789" if len(a) in range(9,10): print('Hello')

wise cargoBOT
#

@amber raptor :white_check_mark: Your eval job has completed with return code 0.

Hello
zealous wave
#

!e ```py
____ = 100
_____ = None
print(chr(.add(import("math").sqrt().int()).add(import("math").sqrt().int().sub([].len().bool().str().len().sub([].len().bool().str().len())).sub([].len().bool().str().len().sub([].len().bool().str().len())).sub([].len().bool().str().len().sub([].len().bool().str().len())).sub([].len().bool().str().len().sub([____].len().bool().str().len())))))

wise cargoBOT
#

@zealous wave :white_check_mark: Your eval job has completed with return code 0.

t
somber heath
#

"I can't believe you've done this!"

zealous wave
#

!e ```py
(:=None, ____:=int([].len().bool().str().len().add([].len().bool().str().len()).str().add([].len().bool().str().len().add([].len().bool().str().len()).str())).add([].len().bool().str().len().sub([].len().bool().str().len())), :=[_ for __ in [.sub(.sub(.sub([].len().bool().str().len()))), .sub(.sub(.sub([].len().bool().str().len()))), .add(.sub(.sub([].len().bool().str().len()))), .add(.sub([].len().bool().str().len().add([].len().bool().str().len()).mul([].len().bool().str().len().add([].len().bool().str().len())).add(import("math").sqrt().int()))), .add(import("math").sqrt().int().add([].len().bool().str().len().sub([].len().bool().str().len()).add([].len().bool().str().len().sub([].len().bool().str().len())))), 111, 114, 116, 95, 95, 40, 34, 95, 95, 104, 101, 108, 108, 111, 95, 95, 34, 41]], eval(''.join([str(chr(___)) for ___ in _])))

wise cargoBOT
#

@zealous wave :white_check_mark: Your eval job has completed with return code 0.

Hello world!
tidal salmon
#

!otn a Chili's esoteric print statements

wise cargoBOT
#

:ok_hand: Added 𝖒hili’s-esoteric-print-statements to the names list.

zealous wave
#

eval("__import__('__hello__')")

tidal salmon
#

getattr(globals()['__builtins__'], 'print')

zealous wave
wise cargoBOT
#

@zealous wave :white_check_mark: Your eval job has completed with return code 0.

Foo
tidal salmon
#

!e

class HorriblePrint:
    _print = print
    def __lshift__(self, str_):
        _print(str_)

print = HorriblePrint()

print << "Thanks, I hate it!"
wise cargoBOT
#

@tidal salmon :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 8, in <module>
003 |   File "<string>", line 4, in __lshift__
004 | NameError: name '_print' is not defined
olive hedge
tidal salmon
#

!e

class HorriblePrint:
    def __lshift__(self, str_):
        getattr(globals()['__builtins__'], 'print')(str_)

print = HorriblePrint()

print << "Thanks, I hate it!"
wise cargoBOT
#

@tidal salmon :white_check_mark: Your eval job has completed with return code 0.

Thanks, I hate it!
zealous wave
#

!e ```py
____ = 100
_____ = None
h = .add(import("math").sqrt().int().sub([].len().bool().str().len().sub([_____].len().bool().str().len()))).truediv((import("math").sqrt().int()).truediv(import("math").sqrt().int().truediv(print([].len().bool().str().len().sub([].len().bool().str().len())).add(print([].len().bool().str().len().sub([].len().bool().str().len()))))))

wise cargoBOT
#

@zealous wave :x: Your eval job has completed with return code 1.

001 | 1
002 | Traceback (most recent call last):
003 |   File "<string>", line 3, in <module>
004 | AttributeError: 'NoneType' object has no attribute '__add__'
zealous wave
#

!e ```py
____ = 100
_____ = None

h = .add(import("math").sqrt().int().sub([].len().bool().str().len().sub([_____].len().bool().str().len().int().truediv(2))))

print(h)

wise cargoBOT
#

@zealous wave :white_check_mark: Your eval job has completed with return code 0.

NotImplemented