#voice-chat-text-0

1 messages Β· Page 884 of 1

rugged root
#

Huh

#

I'll be damned

#

So it's better to never use a return in those cases? Just stick with yield?

brave steppe
rugged root
#

Gotcha

prime slate
#

@alpine path the meme thinkmon

rugged root
#

What would be the benefit of a return then

brave steppe
#

Usually you would have the return mean something else other than yield

#

I have a nice use in JS, hold on

prime slate
#

bruh

#

just how

rugged root
#

?

#

Who are you losing packets from?

prime slate
#

Discord just doesn't want to pick up the stream

#

Discord

#

it's Voice Debug thing

brave steppe
#
  /**
   * Send a message to all guilds through the bot's webhook in every guild
   * @param args The arguments to pass to Webhook.send for every guild
   * 
   * @generator
   * @yields The message returned from Webhook.send
   * @returns The number of messages delivered
   */
  async* send(...args: Parameters<Webhook['send']>): AsyncGenerator<Message, number, void> {
    const cursor = this.bot.db.query(new Cursor('SELECT webhook_id, webhook_token FROM guilds;'));
    let count = 0;  // How many messages that was sent

    // Use a cursor object to loop through all webhooks and send the message
    while (true) {

      // Read 50 records in batch
      const rows = await cursor.read(50);
      if (!rows) break;  // End of the table
      count += rows.length;

      for (const record of rows) {
        const webhook = new Webhook(this.bot, {id: record.webhook_id, token: record.webhook_token});
        yield await webhook.send(...args);
      }
    }

    return count;
  }
#

Here I yield each message, and return the amount of places I sent it to

prime slate
#

Btw, the other meme

gloomy vigil
prime slate
#

lol

strong arch
flat sentinel
devout mountain
#

@whole rover joweeeeee

#

join voice

dense ibex
#

RegDate: 2005-04-19
Updated: 2021-01-25

grand wyvern
#

LOL. I'm found out

dense ibex
#

wait you actually stream lol

#

that's so cool

grand wyvern
#

Eight years

devout mountain
grand wyvern
#

Still going strong. As much as my job allows me.

devout mountain
grand wyvern
#

Oh! Sup Powell πŸ˜„

devout mountain
#

Yee!

#

boldharold I was 12

grand wyvern
#

I won't tell Twitch

devout mountain
grand wyvern
#

My activity map on GitHub is now just a map of "when my year fell apart and when I pulled it back together" rooCry

somber heath
#

Gunzel.

#

Am friends with one such self-professed.

dense ibex
#

Hey Opal πŸ‘‹

grand wyvern
#

JAKE.... jake.....

#

jake

devout mountain
#

FFS

grand wyvern
#

how. do. you. not. know. monty. python.!?

#

how?!

#

@dense ibex I demand answers

#

How can you be on the internet and not know Monty Python? How is that possible

devout mountain
celest pecan
#

What's happening?

celest pecan
#

Beautiful like a beautiful british man, yes

dense ibex
grand wyvern
# dense ibex I'm sorryyyy

I'm just impressed. I'm not even mad. It's like meeting someone walking out of a sandstorm without a speck of dust on them.

celest pecan
#

That dust again

devout mountain
#

@whole rover

#

@whole rover

#

@whole rover

#

Join voice

#

bye @grand wyvern

grand wyvern
forest zodiac
#
import itertools

letters = ["a", "b", "c", "d"]
numbers = [0, 1, 2, 3, 4, 4]


x = [
    list(
        map(
            lambda x: sum(x) == 8,
            itertools.combinations(numbers, i),
        )
    )
    for i in range(2, len(numbers))
]
print(*x)
whole bear
#

In this Python Object-Oriented Tutorial, we will begin our series by learning how to create and use classes within Python. Classes allow us to logically group our data and functions in a way that is easy to reuse and also easy to build upon if need be. Let's get started.

Python OOP 1 - Classes and Instances - https://youtu.be/ZDa-Z5JzLYM
Python...

β–Ά Play video
#

whats up guys

versed sapphire
#

@balmy nymph

#

hey

#

can I get stream role

balmy nymph
#

Uhhh

#

I don't think I will be able to, sorry

versed sapphire
#

why?

balmy nymph
#

Well because I am about to start working

versed sapphire
#

uh

#

ok

whole bear
#

where can i learn coding here

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

warm vapor
#

for python ^^^

whole bear
warm vapor
whole bear
#

ok

full torrent
#

uh oh, cant talk yet :c

acoustic folio
#

h m m

green bone
#

@brave steppe __eq__ should return NotImplemented instead of False lemon_warpaint

#

yes

#

also, comparison methods should return bool if they return bool, type checkers understand NotImplemented and dunders

green bone
#

hm?

#

if there's an issue, I guess you can just leave it unhinted

#

see, it works πŸ™‚

#

@brave steppe !d functools.total_ordering

#

!d functools.total_ordering

wise cargoBOT
#

@functools.total_ordering```
Given a class defining one or more rich comparison ordering methods, this class decorator supplies the rest. This simplifies the effort involved in specifying all of the possible rich comparison operations:

The class must define one of [`__lt__()`](https://docs.python.org/3/reference/datamodel.html#object.__lt__ "object.__lt__"), [`__le__()`](https://docs.python.org/3/reference/datamodel.html#object.__le__ "object.__le__"), [`__gt__()`](https://docs.python.org/3/reference/datamodel.html#object.__gt__ "object.__gt__"), or [`__ge__()`](https://docs.python.org/3/reference/datamodel.html#object.__ge__ "object.__ge__"). In addition, the class should supply an [`__eq__()`](https://docs.python.org/3/reference/datamodel.html#object.__eq__ "object.__eq__") method.

For example:
green bone
#

btw, can you scroll to __eq__?

#

the if isinstance(other, self.__class__) is a bit problematic. It breaks LSP and in a bad way, not in a "haha you brek LSP"
If you have something like

           User
           ^  ^
           |  |
   StaffUser  PremiumUser

then StaffUser should theoretically be comparable to PremiumUser, but it isn't

#

Why do you even implement __eq__ and __lt__ and so on?

#

You can compare when they were created by x.created_at < y.created_at, I like that more

#

it just feels a little bit like notation abuse when you do user1 < user2 to mean one is earlier than another.

#

why

#

Yeah, don't implement stuff you don't need

#

Make it immutable if you use __hash__, because some smartass will use your library and mutate the id

#
@dataclass(frozen=True)
class Object:
    id: int
toxic zephyr
#

I cant speak?

#

Y

brave steppe
toxic zephyr
#

Are we in training?

#

On the call??

faint ermine
#

@mystic lily chat here, not DMs

mystic lily
#

i am trying to save to a csv but it dont seen to work and i donno where im going wrong

#

from binance import Client, ThreadedWebsocketManager, ThreadedDepthCacheManager
from dotenv import load_dotenv
import os
import csv
load_dotenv() # take environment variables from .env.
APIKey = os.environ.get("APIKey")
SecretKey = os.environ.get("SecretKey")
Coin1 = os.environ.get("Coin1")
Coin2 = os.environ.get("Coin2")
client = Client(APIKey, SecretKey)
TradeingPair = Coin1+Coin2
trainDataFrom = os.environ.get("trainDataFrom")
print(TradeingPair, 'last 24')

columns = [
'open_time', 'open', 'high', 'low', 'close', 'volume',
'close_time', 'quote_asset_volume', 'number_of_trades',
'taker_buy_base_asset_volume', 'taker_buy_quote_asset_volume',
'ignore'
]

klines = client.get_historical_klines(TradeingPair, Client.KLINE_INTERVAL_1WEEK, trainDataFrom, "20 Aug, 2021")

with open('output.csv', 'w') as f:
write = csv.writer(f)
write.writerow(columns)
write.writerows(klines)

faint ermine
#
with open('output.csv', 'w') as f:
    f.write(";".join(columns) + "\n")
mystic lily
#

so i would replace

#

with open('output.csv', 'w') as f:
write = csv.writer(f)
write.writerow(columns)
write.writerows(klines)
with ^^

#

thanx

zenith radish
#

Equal employment opportunity is equal opportunity to attain or maintain employment in a company, organization, or other institution. Examples of legislation to foster it or to protect it from eroding include the U.S. Equal Employment Opportunity Commission, which was established by Title VII of the Civil Rights Act of 1964 to assist in the prote...

brave steppe
whole bear
#

so it's the pep 8 for javascript?

brave steppe
#

No

#

It's PEP for JavaScript

whole bear
#

Ah

brave steppe
#

PEP 8 is a specific proposal for style guides for Python

#

EcmaScript is PEP as a whole, it's the standard definition of how JavaScript works

#

The same way PEPs introduce new Python features

whole bear
#

laughs in github copilot

wise cargoBOT
brave steppe
granite ibex
#

Hi

#

Somebody can delete something?

#

Write and delete

#

pls

#

In this channel

gloomy vigil
#

hi @forest zodiac

severe pulsar
severe pulsar
wind cobalt
gentle flint
alpine path
#

Speaker: Jayson E. Street CIO of Stratagem 1 Solutions

This is not a presentation where I talk about how I would get in or the things I might be able to do. This is a talk where I am already in and I show you pictures from actual engagements that I have been on. They say one picture is worth a thousand words I show you how one picture cost a ...

β–Ά Play video
vocal siren
#

please someone help me even installing pynthon i can't open py files when i open it appears to customize repair or uninstall i've tried everything several times and it won't go at all

zenith radish
vocal siren
zenith radish
pseudo pond
#

noice

odd raven
#

pog indeed

severe pulsar
#

thanks!

odd raven
#

@severe pulsar i have a suggestion for the server

#

and i think it's really good

#

so um

#

you should listen

#

or else lemon_fingerguns

#

let me know when you're done coding the next unicorn app going to the moon

#

then i can inform you :)

severe pulsar
#

awesome! you should check out the #community-meta channel and post your suggestion there

#

ill be sure to give it a read

severe pulsar
#

its almost done

odd raven
#

i think it's better if i provide the suggestion to you personally

#

how about

#

a lol train

severe pulsar
#

uh...I dont think that would work in this server.

sand kayak
#
store count as 2
store count2 as 3
add count2 to count
#

script

#
Main:
; store count as 2
   movlw 2
   movwf 10
; store count2 as 2
   movlw 3
   movwf 11
; add count2 to count
   movf 11,w
   addwf 10,f


; 6 instructions from a maximum of 256.
hallow warren
#

https://t.co/RJnlXEA2gr is a Stanford AI paper with a press release saying they addressed ambivalence but they didn't

brave steppe
#

sorry I have to go

coarse cape
#

yeee

leaden hearth
#

ok

ocean night
#

@sand kayak

celest pecan
#

i have a unfunny joke for every st

gloomy vigil
stuck furnace
#

Hello πŸ‘€

languid talon
#

hello man

dense apex
#

!e

print([x for x in list(range(6)) if x % 2 == 0])

wise cargoBOT
#

@dense apex :white_check_mark: Your eval job has completed with return code 0.

[0, 2, 4]
languid talon
#

hi guys

unborn oasis
#

hiii

#

@languid talon

#

are you new here?

languid talon
#

can i send 50 messages in this chat room

#

or no?

unborn oasis
#

hahaha i think is

#

not

#

possible

languid talon
#

i hope

stuck furnace
unborn oasis
#

how can i set the voice for talk with other people?

languid talon
#

i am not spamming

stuck furnace
#

It has to be genuine activity.

unborn oasis
#

okok

#

thanks

languid talon
#

thanks sry for desturb

stuck furnace
dense apex
#

list(range(6))

#

awk

stuck furnace
#

Oh right. Are you guys discussing lazy-evaluation?

dire kite
#

heyo

#

cya human

ivory salmon
#

hey @dire folio can i have voice for a sec to ask some questions

amber raptor
north wyvern
#

what happened

topaz vale
#

i am confused what has eivl given

tiny socket
burnt moth
#

Gm from India Lemon

pearl cove
#

UR MOM

#

nah I kid

#

can you guys see me typing?

#

yes?

#

aight later peace

vagrant roost
#

Help πŸ˜‰

mellow turret
#

hello

#

@terse needle

#

I want to say,,,

whole bear
#

yo whos good at java

#

πŸ•Ί

#

i got a issue and i dont know the next bit

brave steppe
#

Oh shit, I am on my way home

#

Might be able to talk while I walk in a bit haha

dense ibex
#

@silver valley

silver valley
somber heath
#

Spring break. Words that make slinkies cry.

terse needle
#

my favourite us state, japan

brave steppe
#

Do you guys hear any form of wind from me walking?

forest zodiac
#

hey opal

#

what does opalmist actually mean?

#

@somber heath

somber heath
#

I just liked the words when I was much younger.

#

It's opal as in the gemstone and mist as in the hydrological phenomenon.

forest zodiac
#

oh

#

that's quite unique

somber heath
#

Or perhaps an opalescent mist.

#

It's not.

#

I'm not the only OpalMist.

gloomy vigil
#

hello everyone

brave steppe
#

I'm almost home so I'll get on my PC

faint ermine
#

how cursed is this __init__.py

__all__ = [
    p.stem for p in Path(__file__).parent.glob("*.py") if p.name != "__init__.py"
]
somber heath
#

CursΓ©d.

gloomy vigil
faint ermine
# rugged root WHY

bascially, the folder this initpy is in contains a lot of files that all subclass one base file, and i want to get access to them through dunder subclasses on the base. but for that they have to be loaded, hence this.

somber heath
#

I wrote a very simple but lovely generator, today, that I'm somewhat proud of.

def gen():
    while True:
        yield from (1,2,3,4)
        yield from (5,4,3,2)```
faint ermine
#
yield from(1,
             2,
               3,
                 4,
                   5,
                 4,
               3,
             2)
somber heath
#

You make me sad.

tiny socket
#
yield from (
             1,
                2,
              3,
            4, 5,
4, 3,
        2,
           )
silk grove
#

my dudes

#

what is up?

tiny socket
#
a = [*range(1,6)]
yield from [
              a[0],
  a[1],
   a[2],
                            a[3],
                        a[4],
                                                a[3],
                                                                                                a[2], 
                                                                              a[1]]
olive hedge
#

🀘

tiny socket
faint ermine
#

rust 2?

sinful bramble
somber heath
#

Jake's crab army.

sinful bramble
#

coarsed

dense ibex
faint ermine
#
def f():
    raise Exception

a = a or None

b = f() or None # sad dont work
brave steppe
#
def f():
    raise Exception

a = a else None

b = f() else None # sad dont work

Would be pretty nice

rugged root
#

My fave. The Japanese Spider Crab

sinful bramble
faint ermine
#
pendulum.Date(self.puttingIntoService) or None
olive hedge
#

I see a dinner

sinful bramble
#

coerced

sinful bramble
terse needle
#

spider + crab = cursed

sinful bramble
olive hedge
#

@devout roost You were mentioned. We luv u

tiny socket
#

wunder come here

#

or ill make you buy 14 domains

dense ibex
#

Yes join

faint ermine
#
def __post_init__(self):
        with suppress(TypeError):
            self.puttingIntoService = pendulum.Date(self.puttingIntoService)
        with suppress(TypeError):
            self.dataSince = pendulum.DateTime(self.dataSince)
        with suppress(TypeError):
            self.dataUntil = pendulum.DateTime(self.dataUntil)
        with suppress(TypeError):
            self.readpath = Path(self.readpath)
        with suppress(TypeError):
            self.readforecastpath = Path(self.readforecastpath)
        with suppress(TypeError):
            self.savepath = Path(self.savepath)

#


    def __post_init__(self):
        self.puttingIntoService = pendulum.Date(self.puttingIntoService) if self.puttingIntoService else None
        self.dataSince = pendulum.DateTime(self.dataSince) if self.dataSince else None
        self.dataUntil = pendulum.DateTime(self.dataUntil) if self.dataUntil else None
        self.readpath = Path(self.readpath) if self.readpath else None
        self.readforecastpath = Path(self.readforecastpath) if self.readforecastpath else None
        self.savepath = Path(self.savepath) if self.savepath else None
tiny socket
#
def try_make_class(cls, *args, **kwargs):
    try:
        return cls(*args, **kwargs)
    except TypeError:
        return None

self.puttingIntoService = try_make_class(pendulum.Date, self.puttingIntoService)
...
faint ermine
tiny socket
#

!otn a mmmmmm-toxins

rugged root
#

!otn a mmmmmm-toxins

wise cargoBOT
#

:ok_hand: Added mmmmmm-toxins to the names list.

tiny socket
olive hedge
#

@dense ibex there you go, he is here

sinful bramble
#

ad astra abysossque

devout roost
#

I will be bacv

sinful bramble
#

oh so this is what fisher looks like when he talks

faint ermine
#

.wa short fibonacci sequence

viscid lagoonBOT
sinful bramble
#

.wa short fibonacci

viscid lagoonBOT
sinful bramble
#

😠

faint ermine
#

0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584, 4181, 6765, 10946, 17711, 28657, ...

rugged root
covert wharf
#

i have some troubles on the cv2 module

whole bear
#

hlo sir ,

#

@rugged root

#

ya ,

#

sublime its , cham man ,

rugged root
#

@zinc ocean Easier to talk to you about this here. So go to a command prompt outside of Sublime and do java -version

zinc ocean
#

mhm

rugged root
#

@honest pier

#

It looks like you'll have to make a build config for it

#

If it doesn't have one already

zinc ocean
#

alr imma try that

#

thx

zenith radish
rugged root
#

Okay and now I can't rejoin

brave steppe
#

;-;

zenith radish
stuck furnace
#

Rabbit is not impressed πŸ˜„

amber raptor
stuck furnace
#

By Jake's joke.

gentle flint
#

well this is a weird module
apparently I need to define my own problem and then solve it

#

This individual project module is an opportunity for you to apply the engineering science principles and mathematical methods you have gained during your OU studies. You’ll need to define, analyse and solve an engineering problem that you choose. For this independent work you will need to demonstrate knowledge and understanding of relevant engineering practice and project management. You’ll need to use relevant literature to support your work and present your project results in a formal technical report. Throughout the module, an experienced tutor will advise and guide you. You’re strongly advised to have completed the OU level 3 module relevant to your project theme. This is a challenging module which requires a high degree of self-direction and motivation.

stuck furnace
#

Are you currently choosing your modules Oof?

gentle flint
#

there's only one module I need to choose

#

it's the last one

#

starts every year in february

stuck furnace
#

Oh right

stuck furnace
#

That's the information for tutors πŸ‘€

#

Are you allowed to do a software project for this?

gentle flint
#

I fear not

#

it has to be based on one of the following modules:
T312, T313, T319, T317, T329, T356, T357, T366, T367, MST326
of which I've done T312 and T356

zenith radish
gentle flint
#

T312 is Electronics: signal processing, control and communications
T356 is Engineering small worlds: micro and nano technologies

#

I'll anyway be basing on the signal processing, because I suck at nanoengineering

#

not really sure what thing to design tho

#

most of what I've been doing outside my study is software

stuck furnace
#

Could you tie it into your job? πŸ˜„

gentle flint
#

programming webapps in python?

#

doubtful

stuck furnace
#

Not doing machine learning, for fun?

gentle flint
#

nope

#

besides that's unrelated to signal processing

stuck furnace
#

Fair enough.

stable anchor
#

heyy

gentle flint
#

no, it definitely has to be hardware

#

arduino at a stretch

stable anchor
#

whats going on in this vc?

rugged root
#

@gentle flint What was hanging in front of the camera?

gentle flint
#

a conversation

stable anchor
rugged root
#

Gotcha

gentle flint
zenith radish
stable anchor
gentle flint
#

so can't give you more info than that

#

Β―_(ツ)_/Β―

#

I must go

#

to consume multitudinous sardines

#

Adieu, messieurs et mesdames

stable anchor
#

imma hang around just in case i hear something new!ducky_angel

stable anchor
zenith radish
#

Crustless money

olive hedge
#

helloo griff

uncut meteor
#

@olive hedge, don't ignore my Snapchat πŸ˜”

zenith radish
gentle flint
#

@zenith radish where did you gooooooo

#
Owo

Owo is a Local Government Area in Ondo State, Nigeria. Between 1400 and 1600 AD, it was the capital of a Yoruba city-state. The local government has a population of 222,262, based on 2006 population census.

zenith radish
gentle flint
#

U.S. Army Esports is an esports team sponsored by the United States Army. The team, which consists of active duty and reserve personnel, was announced in November 2018 as a public outreach initiative operating within the Fort Knox, Kentucky-based Army Marketing and Engagement Team. Games in which the team announced it would compete include Call ...

gloomy vigil
#

hello

zenith radish
woven quiver
#

πŸ‰

zenith radish
#

my mic completely doesn't work when the fans heat up ;DDD

#

krisp ain't having it

#

yea?

#

@gloomy vigil my mic ain't legible over the fan

gloomy vigil
terse needle
#

damn used to listen to linkin park, still do sometimes

gloomy vigil
#

and the other now makes depressed songs(mike)

terse needle
#

yeah, the collision course album with jay z was good

#

i just cross site scripted myself πŸ˜…

gloomy vigil
terse needle
#

when you display raw html that contains something that can break the site or do something malicious

rugged root
#

@glad sandal Your mic is open again

#

@celest pecan Your mic is super messed up

#

It was lots of loud static and background noise. Check your mic in your settings then let me know

gentle flint
#

hiya

gloomy vigil
#

hello @gentle flint

rugged root
#

@celest pecan Just wanting to confirm you've received it

gentle flint
#

a good server

wispy turtle
rugged root
#

!tvban 870058121027027045 1d Please get your mic situation sorted out. It's constant noise and static. If it does not get fixed you will have your voice permissions removed permanently.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied voice ban to @celest pecan until <t:1629830036:f> (23 hours and 59 minutes).

gloomy vigil
#

noise annoys

wispy turtle
#

Guess he didn't get his mic sorted in time

gentle flint
#

it a-noise

gloomy vigil
#

well i am going bye everyonee

celest pecan
#

well

terse needle
#

tom descending into madness

celest pecan
#

google earth pro is a thing?

#

agriculture, biotecnology, food security

#

yep

terse needle
#

worcestershire, as I say just like its pronounced

celest pecan
#

land increases value with time

#

you can't drink coffee without plants

#

there is a python library for real time price of coffee

#

what is the name

#

eminem coffe

rugged root
#

Yeah sorry dude, it was just constant static and noise

celest pecan
#

ok, can someone lower the price of a mic in the place of there

gentle flint
#

@zenith radish the break worked

#

now I can play it without mistakes

wind cobalt
#

@gentle flint nice vaping pen tho

#

@gentle flint gotta go

gentle flint
#

k cya

scenic wind
uncut meteor
#
[...Array(5).key()].forEach(e => console.log(e));
terse needle
#

!e

[...Array(5).key()].forEach(e => console.log(e));
wise cargoBOT
#

@terse needle :x: Your eval job has completed with return code 1.

001 |   File "<string>", line 1
002 |     [...Array(5).key()].forEach(e => console.log(e));
003 |         ^
004 | SyntaxError: invalid syntax
uncut meteor
#
>>> [...Array(5).keys()].forEach(e => console.log(e));
0
1
2
3
4
#
Array.from({length: 5}, (x, i) => i);
#

Array(5) [ 0, 1, 2, 3, 4 ]

rugged root
whole bear
#

already checked but im new to the server gotta wait about 2 more days

#

but thank you anyway

solar steppe
#

can someone help me with setting up gcc in vsc.

#

please.

stuck furnace
#

Hello

#

I heard Toyota had to shut down production.

#

And they had even hoarded chips.

rugged root
stuck furnace
rugged root
#

Oh well that makes sense yeah

amber raptor
#

Anyways, my point about chip shortage, they offered me 23k for 2019 car I bought for 27k

strong arch
stuck furnace
#

If you're on your own, apparently you can use the arm-rest of a couch to do the Heimlich manoeuvre on yourself.

#

It took me far too long to spell 'manoeuvre'.

#

The conversation moved on lemon_pensive

#

Wait, spell correct says it's 'manoeuvre'

#

Might be πŸ˜„

rugged root
#

maneuver

stuck furnace
#

Infiltrated πŸ‘€

#

Β―_(ツ)_/Β―

#

Sooo... πŸ˜„

#

What's everyone up to?

molten pewter
#

manuopera

#

maniobra

orchid barn
#

thanks everybody

#

have a lovely day

honest pier
#

educated by tara westover

tiny socket
#

@somber heath jake: "opal isnt a real australian"

somber heath
whole bear
gentle flint
#

@placid lintel here

placid lintel
#

yeah imhere

gentle flint
placid lintel
#

guys can u tell me some basics to be learned before joining computer science

whole bear
#

learn python

gentle flint
#

python3 -m venv name_of_your_virtual_environment

placid lintel
#

OpalMist are u tryna help me?

somber heath
# placid lintel guys can u tell me some basics to be learned before joining computer science

I would say... learn how computers store data. What is a bit? What is a byte? Why do we call binary files binary files when they sometimes look like they're in hexadecimal?

What are logic gates? How are logic gates and transistors related? What makes RAM? What makes a CPU? What's a CPU architecture? What makes an instruction set? What is assembly language? What is the difference between a lower-level programming language and a higher-level programming language?

#

Python is an example of a higher-level programming language. It's built, under the hood, using the C programming language.

#

Or one of its derivatives.

#

C, in turn, is, as I understand it, built on assembly.

#

Assembly which invokes the instruction set calls of the given CPU type.

#

Like how you asphalt over roads. Dig down far enough and you'll find it's all just magic rocks powered by electricity.

#

Not my best analogy.

placid lintel
#

thanks man

#

ur amazing

somber heath
#

Occasionally.

placid lintel
#

more tips if u dont mind?

somber heath
#

I've never done a computer science course, just so you know.

whole bear
somber heath
gentle flint
#

source <nameofvenv>/bin/activate

#

requirements.txt

#

Flask==2.0.1

#

nano requirements.txt

#

pip install -r requirements.txt

forest zodiac
#

whats the topic guys

zenith radish
#

!pate

wise cargoBOT
#
Did you mean ...

pathlib
windows-path
relative-path

zenith radish
#

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

zenith radish
#

@whole bear

whole bear
#

hi

zenith radish
#

Can someone help @whole bear route traffic to his flask app?

rugged root
#

@dense ibex On in a bit, having a slow start today

zenith radish
rugged root
#

For some reason this looked like corn in foam to me

zenith radish
#

did I lag out or did hemlock lag out?

rugged root
#

I'm going to guess you

past pawn
#

no mic hi guys

#

oh wait i need sleep

rugged root
primal shadow
rugged root
#

Neat

real horizon
#

:p

tiny socket
#

I think ive fucked up my ears, it hurts my ears when I hear deep noises or people with deep voices talking 😦

real horizon
#

hey

tiny socket
#

and ive almost completely lost hearing in my right ear

real horizon
primal shadow
rugged root
#

!vban 700872975888416768 You already have a bit of history spamming on the server. Joining voice chat and spamming a loud rant is not acceptable behavior.

wise cargoBOT
#

failmail :ok_hand: applied voice ban to @whole bear permanently.

tiny socket
#

I woke up yesterday with a buzzing noise in my right ear, and now I can barely hear through it at all

real horizon
tiny socket
#

lol

primal shadow
#

Those damn ear wasps

tough panther
real horizon
rugged root
rugged root
#

Does it also involve ear wasps?

past pawn
past pawn
rugged root
#

Makes sense

#

They thrive on stress

past pawn
#

i need sleep but i cant sleep

primal shadow
#

eat a turkey

past pawn
#

eat Turkey

primal shadow
#

the whole thing, you'll be full and turkey puts people to sleep

#

that's like 2 things that make people sleep

#

who are they?

past pawn
#

the illuminati

#

i just like that its not begging for money or premium subscriptions

#

wait what if theyre the same phenomenon?

#

just this random h in a box

#

h

rugged root
#

I.... huh

#

I don't know

past pawn
#

h

rugged root
#

@tiny socket Are you infecting websites?

past pawn
#

eww, infected website

#

whats this mean on your profile in replit?

rugged root
#

Har-dee-har

past pawn
#

ok i figured it out

#

i was paniced for a second

#

i thought my nefarious activities had me tagged malicious

gloomy vigil
#

hello everyone

past pawn
#

hi

#

i dont even remember subscribing to replit

#

howd this get here?

rugged root
#

No idea

worldly smelt
#

someone help

past pawn
#

wat

worldly smelt
#

i cant open a new file, it says no permmision ,in vs code

primal shadow
#

the googliest thing to do

#

abandon it

worldly smelt
#

Unable to write file 'c:\Users\learn\jarvis.py' (NoPermissions (FileSystemError): Error: EPERM: operation not permitted, open 'c:\Users\learn\jarvis.py')

past pawn
gloomy vigil
#

tensorflow was developed by google right?

worldly smelt
#

please help

primal shadow
#

is it the GO OrGanizational LEague?

worldly smelt
#

i cant talk in vc cuz this people are talking i dont wanna disturb them

amber raptor
gloomy vigil
honest pier
#

@amber raptor when you were young did you participate in one of those time capsule things where you put a bunch of stuff into a box into the ground

amber raptor
amber raptor
rugged root
primal shadow
gloomy vigil
#

ok

past pawn
#

how make normal usb security key?

rugged root
past pawn
#

;-;

gloomy vigil
hollow haven
#

πŸŽ‰ I finished editing the audio from the patma event πŸŽ‰

tiny socket
#

you look like the australian version of laundmo KEKW

tough panther
hollow haven
#

sadge But now I need to make the video sadge

rugged root
somber heath
hollow haven
#

I cut out like 20 minutes of dead air and troubleshooting and otherwise non-relevant audio

dense ibex
#

What do you use to edit?

past pawn
#

i borked pycharm

hollow haven
#

audacity

rugged root
#

Otherwise you run the risk of someone just lifting the encryption keys

past pawn
#

ah, so i should stick with usig my finger for security?

rugged root
#

Whatever works

past pawn
#

fingerprint scanning securest?

rugged root
#

Yeah that does the job

past pawn
#

excellent!

#

id talk but i cant make noise

#

:/

#

except maybe...

#

there

#

XD

#

should i turn mic on then go to sleep?

#

πŸ˜†

rugged root
somber heath
dense ibex
somber heath
past pawn
#

ok im gonna try to sleep again

#

gn

molten pewter
#

The latest edition is 5h.

#

4 has two editions 4, and 4e

somber heath
#

Bun bun. Love it.

molten pewter
rugged root
#

@worldly smelt Were you asking for the stream perms?

worldly smelt
#

yes

somber heath
#

I think O is the best letter in the standard English alphabet. It can be written as a "perfect" circle.

worldly smelt
#

please can ya gimme?

rugged root
#

What're you wanting to stream?

worldly smelt
#

code*

#

that how do i make my AI to recognise my voice

rugged root
#

I might in a bit, sorry. Wait, did you have a voice changer on?

#

That just clicked in my head

terse needle
#

the only thing i remember about cloud flare is truly random number generation with lava lamps and ddos protection

silver valley
#

but its a little bit expensive

#

Sorry, for ping you

rugged root
#

I don't mind

#

Lets me know when people are talking to me

#

My attention can be spread thin, so it helps when people ping me

somber heath
#

"You're paying me...in salad?"
"We said you'd be paid a celery."
"...Ah."

rugged root
#

I love you Opal

#

You get me

gentle flint
#

milk for the week

gloomy vigil
#

thats alot of milk

gentle flint
#

because we're a family of 5, with occasional visitors

#

so we go through 10-12 packets a week

#

the red one is semi-skimmed, for my mom

#

the others are whole milk

gloomy vigil
#

alright alright i thought its all for you

gentle flint
#

lol no

amber raptor
gloomy vigil
#

well i am gonna go goodnight everyone

amber raptor
rich gyro
#

hello

#

any way to get a value out of a async function?

gentle flint
rich gyro
#

and use it in another one

gentle flint
#

FSX for not so rich people

rugged root
#

You'd have to call it and return it same as any other kind of function

#

Just have to make sure you await the function call

dense ibex
#

!u

wise cargoBOT
#
jake (\_jake#0169)

hypesquad_bravery

User information

Created: <t:1580002257:R>
Profile: @dense ibex
ID: 670802831678373908

Member information

Joined: <t:1609774606:R>
Roles: <@&787816728474288181>, <@&267630620367257601>, <@&585529568383860737>, <@&764245844798079016>, <@&764802720779337729>, <@&463658397560995840>, <@&542431903886606399>

Infractions

Total: 4
Active: 0

rich gyro
#

what i am trying to do is to know when user react a emoji and know what emoji user used

dense ibex
rich gyro
#

yeah

#

is it posssible?

dense ibex
#

Ok so there is something called on_raw_reaction_add()

#

Lemme get the docs for it hold on

rich gyro
#

yeah i need this value out of the function

dense ibex
#

!d discord.on_raw_reaction_add

wise cargoBOT
#

discord.on_raw_reaction_add(payload)```
Called when a message has a reaction added. Unlike [`on_reaction_add()`](https://discordpy.readthedocs.io/en/stable/api.html#discord.on_reaction_add "discord.on_reaction_add"), this is called regardless of the state of the internal message cache.

This requires [`Intents.reactions`](https://discordpy.readthedocs.io/en/stable/api.html#discord.Intents.reactions "discord.Intents.reactions") to be enabled.
dense ibex
#

So you need to have you reactions intent enabled

#

so make sure you have that

rich gyro
#

yeah i used on_reaction_add(reaction,user)

dense ibex
#

Yeah, so the problem with on_reaction_add() is that it won't get called if the message isn't cached

#

so that's why you would use on_raw_reaction_add()

#

Because it gets called regardless of if the message is in the internal message cache.

rich gyro
dense ibex
#

Yeah

#

so you can access all of that with the payload

#

!d discord.RawReactionActionEvent

wise cargoBOT
#

class discord.RawReactionActionEvent```
Represents the payload for a [`on_raw_reaction_add()`](https://discordpy.readthedocs.io/en/stable/api.html#discord.on_raw_reaction_add "discord.on_raw_reaction_add") or [`on_raw_reaction_remove()`](https://discordpy.readthedocs.io/en/stable/api.html#discord.on_raw_reaction_remove "discord.on_raw_reaction_remove") event.
rich gyro
#

even out of function?

dense ibex
#

Yeah, so instead of passing reaction, user you would pass payload into the function

#

so it would be

async def on_raw_reaction_add(payload):
  # code goes here
#

so like this

#

and with that payload value you will be able to access all of these things

#

so if you wanted to get the emoji

#

you would just do payload.emoji

#

if you wanted the channel id you would do payload.channel_id and so on and so forth

rich gyro
#

ok

dense ibex
#

Please let me know if you have any other questions as I know this is a lot of info to take in

#

I don't wanna bombard you with information

rich gyro
#
@client.event
async def on_raw_reaction_add(payload):
  #code
@client.command()
async def test(ctx):
  #can i use payload here? 

dense ibex
#

No you couldn't

#

so what are you trying to do exactly?

rich gyro
#

too long to explain

dense ibex
#

Ok

rich gyro
#

in short a among us game play

dense ibex
#

Oh ok

rich gyro
dense ibex
#

!u

amber raptor
#
version: '3'
networks:
  frontend: 
    driver: bridge
services:
  nginx-proxy:
    build:
      context: .
      dockerfile: nginx/DOCKERFILE
    image: 'nginx-proxy:latest'
    restart: always
    networks:
      - frontend
    ports:
      - '9000:80'
  calc-main:
    build:
      context: .
      dockerfile: docker/calc_main.dockerfile
    image: 'calc-main:latest'
    restart: always
    networks: 
      - frontend
    ports:
      - '9001:80'
  calc-micro:
    build:
      context: .
      dockerfile: docker/calc_micro.dockerfile
    image: 'calc-micro:latest'
    restart: always
    ports:
      - '9002:80'
    networks: 
      - frontend
  date-micro:
    build:
      context: .
      dockerfile: docker/date_micro.dockerfile
    image: 'date-micro:latest'
    restart: always
    ports:
      - '9004:80'
    networks: 
      - frontend
  date-main:
    build:
      context: .
      dockerfile: docker/date_main.dockerfile
    image: 'date-main:latest'
    restart: always
    networks: 
      - frontend
    ports:
      - '9003:80'
  name-micro:
    build:
      context: .
      dockerfile: docker/name_micro.dockerfile
    image: 'name-micro:latest'
    restart: always
    networks:
      - frontend
    ports:
      - '9006:80'
  name-main:
    build:
      context: .
      dockerfile: docker/name_main.dockerfile
    image: 'name-main:latest'
    restart: always
    networks:
      - frontend
    ports:
      - '9005:80'
  ps-tests:
    #As testing container, it doesn't need to restart or need to have network ports
    build:
      context: .
      dockerfile: pstests/ps_test.dockerfile
    image: 'ps-tests:latest'
    networks:
      - frontend```
wise cargoBOT
#
jake (\_jake#0169)

hypesquad_bravery

User information

Created: <t:1580002257:R>
Profile: @dense ibex
ID: 670802831678373908

Member information

Joined: <t:1609774606:R>
Roles: <@&787816728474288181>, <@&267630620367257601>, <@&585529568383860737>, <@&764245844798079016>, <@&764802720779337729>, <@&463658397560995840>, <@&542431903886606399>

Infractions

Total: 4
Active: 0

dire folio
#

!user

wise cargoBOT
#
eivl#1134

hypesquad_bravery early_supporter

User information

Created: <t:1461172594:R>
Profile: @dire folio
ID: 172395097705414656

Member information

Joined: <t:1517581604:R>
Roles: <@&267628507062992896>, <@&267629731250176001>, <@&831776746206265384>, <@&587606783669829632>, <@&267630620367257601>, <@&295488872404484098>, <@&585529568383860737>, <@&764802720779337729>, <@&463658397560995840>, <@&542431903886606399>

Infractions

Total: 10
Active: 1

amber raptor
#

[CmdletBinding()]
param (
    # Parameter help description
    [Parameter(Mandatory=$true,HelpMessage="Execution")]
    [ValidateSet('build','up','stop','down')]
    [string]
    $Action
)
switch($Action){
    "build" {
        Start-Process 'docker-compose' -ArgumentList '--project-name micro build --no-cache' -NoNewWindow -Wait
    }
    "up" {
        Start-Process 'docker-compose' -ArgumentList '--project-name micro up -d --build' -NoNewWindow -Wait
        #Start-Process 'docker' -ArgumentList 'system prune -f'
    }
    "down" {
        Start-Process 'docker-compose' -ArgumentList '--project-name micro down' -NoNewWindow -Wait
    }
    "stop" {
        Start-Process 'docker-compose' -ArgumentList '--project-name micro stop' -NoNewWindow -Wait
    }
}```
dire folio
amber raptor
#

!u

wise cargoBOT
#

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

rich gyro
#

!u

wise cargoBOT
#

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

rich gyro
#

!d import time

wise cargoBOT
#

7.11. The import statement


import_stmt     ::=  "import" module ["as" identifier] ("," module ["as" identifier])*
                     | "from" relative_module "import" identifier ["as" identifier]
                     ("," identifier ["as" identifier])*
                     | "from" relative_module "import" "(" identifier ["as" identifier]
                     ("," identifier ["as" identifier])* [","] ")"
                     | "from" relative_module "import" "*"
module          ::=  (identifier ".")* identifier
relative_module ::=  "."* module | "."+
```...
royal sphinx
#

[Help Needed]

I've installed python 3 on my PC & while installation I checked add python to PATH

The problem I'm facing is I'm unable to access global packages that I installed with pip, for instance, I installed the virtualenv package globally with pip but when I type virtualenv the CLI couldn't recognize the command.

In Python version 2 there was a bin folder inside the python installation directory where all global packages were stored but in python 3 there isn't any bin folder that I could add to my system PATH

Can anyone know how I can make global packages accessible to my CLI

Note: in my current settings I can access local packages through my CLI inside the virtual environment.

I've tried running

python -m <package_name>

But still, it didn't work

#

Feel free to ping me if you know the solution.
Thanks

rugged root
#

@royal sphinx So for handling your Python installations on Windows, it's recommended to use py instead of python
The Py Launcher avoids having to mess with the PATH and lets you work directly with individual install. By default, just doing py will trigger the most up to date version of Python on your machine, however you can specify a different. For example accessing 3.7 would be py -3.7. Beyond that, everything else is the same as it would be for python. py -m pip install <package_name> or py -m <package_name>

warm vapor
#

@dire folio can I know what are you doing πŸ‘€

rigid sparrow
#

What are the benefits of using pycharm over something like visualstudio code?

warm vapor
#

That's good πŸ‘€

rigid sparrow
#

Heavy as in able to handle more load when you execute stuff or?

stuck furnace
#

That is such a great book.

rigid sparrow
#

Which one?

stuck furnace
#

Thinking Fast and Slow

rigid sparrow
#

ah cheers, will put that on my to read list πŸ˜„

rugged root
#

I'm so mad.

#

Of course the issue is that I forgot to put the file extension on

#

Herp da derp

#

!stream 689087720018280478

wise cargoBOT
#

βœ… @glad sandal can now stream until <t:1629828705:f>.

rugged root
#

@glad sandal Or did you not mean right right now?

molten pewter
#

Semantic memory is one of the two types of explicit memory (or declarative memory) (our memory of facts or events that is explicitly stored and retrieved). Semantic memory refers to general world knowledge that we have accumulated throughout our lives. This general knowledge (facts, ideas, meaning and concepts) is intertwined in experience and d...

rigid sparrow
#

Indeed, and that as a result for asking about pycharm

rugged root
#

Gotta love the VC here

#

It really is an experience here

rigid sparrow
#

And it's open source

dense ibex
rugged root
#

The payoff is great, though

#

When you finally figure out a problem, it's like a huge weight off of your shoulders

#

Are you using any resources to help you?

#

Like any books or sites or videos?

#

!resources You might check out the ones we have linked on our site. We typically recommend "Automate the Boring Stuff" and "A Byte of Python", which ever one clicks better with you. That'll be under the Read section

wise cargoBOT
#
Resources

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

rugged root
#

We also have a variety videos linked there as well

#

Also don't hesitate to ask questions if you need stuff clarified. That's what we're here for

#

!tools

wise cargoBOT
#
Tools

The Tools page on our website contains a couple of the most popular tools for programming in Python.

rugged root
#

It really is

#

It's a huge learning curve

#

Which is why I suggest things like Thonny and Mu-Editor

fluid shale
#

relatable

stuck furnace
#

In Thonny?

#

Oh right.

#

Yeah, that's how I found out about this server originally πŸ˜„

#

They used to have a kind of live-coding thing.

rugged root
stuck furnace
#

It allows you to step through the execution of your program, to see what is happening.

vivid palm
#

you can step thru your code line by line and see what various objects have as values as you step thru

#

it's handy for when you write code and it runs with no errors, but it's not doing what you expected it to do. debugger can help you identify what didn't work as you expected

#

it's handy when you get actual errors, too

stuck furnace
#

Try writing some python code, but put breakpoint() in the code somewhere, then try running it with python. It will run and stop at the breakpoint, and you can type in the names of variables to see what values they have.

violet sleet
#

hello i'm new here and i don't now why i'm suppressed

wise cargoBOT
#

Voice verification

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

violet sleet
#

ok

gentle flint
#

sometimes it doesn't provide enough info

#

with debugger you can inspect variable contents in certain states etc

vivid palm
#

@terse needle do you have cpp server?

stuck furnace
#

Your code may raise an error if something goes wrong, but not always. Another way your code can go wrong is to simply produce the wrong output for a given input. A debugger can help you to figure out what's going on. (An alternative is just to put print statements in your code.)

gentle flint
vivid palm
#

😦

rugged root
terse needle
#

wait, what do you mean

vivid palm
#

someone was asking, nvm tho

terse needle
gentle flint
vivid palm
rugged root
#

!server

wise cargoBOT
#
Server Information

Created: <t:1483877013:R>
Voice region: europe
Roles: 89
Member status: status_online 52,844 status_offline 190,725

Members: 243,569

Helpers: 124
Moderation Team: 32
Admins: 15
Owners: 3
Contributors: 39
Leads: 15

Channels: 239

Category: 31
News: 9
Staff: 67
Stage_Voice: 1
Text: 123
Voice: 8

gentle flint
rugged root
wise cargoBOT
#
Command Help

!user [user]
Can also use: member_info, member, u, user_info

Returns info about a user.

rugged root
#

!user

wise cargoBOT
#
Mr. Hemlock#2740

hypesquad_balance early_supporter

User information

Created: <t:1443481946:R>
Profile: @rugged root
ID: 98195144192331776

Member information

Joined: <t:1525291749:R>
Roles: <@&267628507062992896>, <@&807415650778742785>, <@&267629731250176001>, <@&831776746206265384>, <@&587606783669829632>, <@&797891034906099752>, <@&267630620367257601>, <@&295488872404484098>, <@&764245844798079016>, <@&764802720779337729>, <@&463658397560995840>, <@&542431903886606399>

Infractions

Total: 27
Active: 1

#

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

molten pewter
stuck furnace
#

We have a wall clock!

molten pewter
stuck furnace
gentle flint
#

yes

stuck furnace
#

Engineering, in a programming server? sus

violet sleet
#

ohh i have a story for a customer and a printer

gentle flint
#

back in 5 minutes

bleak crow
#

What do you do @whole loom

gentle flint
#

@vocal raven have another random fact

#

look up "albanian sworn virgins"

vocal raven
gentle flint
#

yes

#

Balkan sworn virgins (in Albanian: burrnesha) are women who take a vow of chastity and wear male clothing in order to live as men in patriarchal northern Albanian society, Kosovo and Montenegro. To a lesser extent, the practice exists, or has existed, in other parts of the western Balkans, including Bosnia, Dalmatia (Croatia), Serbia and North M...

#

basically it's like gender switching but different

glad magnet
#

Hola

#

who wanna be my friend?

gentle flint
#

hurrah for paychecks

#

bye @prime slate

amber raptor
gentle flint
#

100 m^2

stuck furnace
#

;-;

fresh python
#

guys i wanna use regex to validate float numbers

#

does anybody know how can i do it?

terse needle
#

do you need to test if a number is a float, for example

"1.131321321, True"
"1.2432.123, False"
"sfafa.123, False"
fresh python
#

no i'm validating a excel

#

collum and table

#

so i wanna it to check

#

by using regex

#

i was trying this

#

"/^(?=.+)(?:[1-9]\d*|0)?(?:\.\d+)?$/";'

stuck furnace
#

!stream 589497499174043800

wise cargoBOT
#

βœ… @scenic wind can now stream until <t:1629838002:f>.

stuck furnace
#

I think it's actually pretty hard to ignite diesel.

flat sentinel
#

bc im a good freind

flat sentinel
gentle flint
#

not this

#

only posted there 'cuz y'all never come here

flat sentinel
strong arch
#

@whole rover have u considered symlinking the python 3.10 bulma folder to python 3.9

whole rover
past pawn
#

change my mind

whole bear
#

@gentle flint can you go to vc 0?

ashen flume
past pawn
#

Im gonna make an executable interface soon

slim raft
forest zodiac
leaden hearth
flat sentinel
tiny socket
#

@rugged root you know i mentioned my ear being fucked... i saw a doctor and now I have to go to hospital and have a prescription of steroids concern

rugged root
#

What do they think it is?

tiny socket
#

they're not sure, but giving steroids in case its some nerve thing and steroids will stop it getting worse before they see me

rugged root
#

Your ears are going to be fit

leaden comet
#

hell yeah. buff-ass ears.

dense ibex
#
class Numbers(discord.ui.View):
    def __init__(self):

        super().__init__()

        self.add_item(NumberSelection())


class NumberSelection(discord.ui.Select):
    def __init__(self):
        for i in range(1, 11):
            options.append(discord.SelectOption(label=str(i)))

        options.append(discord.SelectOption(label="No Limit"))

        super().__init__(placeholder="Please select a number.", max_values=1, min_values=1, options=options)

 @commands.command()
 async def create(self, ctx: Context) -> None:
     await ctx.send("hi", view=Numbers())

@sick dew

sick dew
#
Numbers = discord.ui.View()
Numbers.add_item(NumberSelection())
gloomy vigil
#

hello

crimson copper
#

it won't let me connect :/

rugged root
#

As pub you mean?

crimson copper
#

as me, lol

rugged root
#

Fair

rich cloud
#

"thank you for smoking"

rugged root
#

Such a powerful movie

rich cloud
#

πŸ’―

#

jake savage af xD

gentle flint
amber raptor
#

which countries we have "liberated with Democracy" and "those pending liberation"

rugged root
#

DROP THE FREEDOM BOMBS -eagle noise-

gentle flint
amber raptor
#

And we have nearby river when we need to go all πŸ¦… and throw some tea in it

dapper ice
#

ayo so I ran into this...

#

I am trynna make an OS

stuck furnace
#

Good luck with the resigning πŸ‘

dapper ice
#

yep

gentle flint
#

that's...
interesting

rich cloud
#

hi opal ! :D

dapper ice
#

yea true

#

well yes

#

thats the real messer upper

#

It is just for a school project dw guys I aint gonna use it

rugged root
#

Force of habit to mention it

dapper ice
#

In my programming scvhool

#

school*

#

and its common sense it needs an enterpreter to run, thats why I am making it in pycharm just bcs it has an enterpreter

#

and its gonna run in that

dapper ice
#

yea I will need to recompile

#

I use kernel

#

and ubuntu

#

dualboot

flat sentinel
#

i use a Debian base os

dapper ice
#

haha yes

dapper ice
#

It does

#

it really does

#

I cannot unsee it now

flat sentinel
gentle flint
dapper ice
#

a measure of time how much u spend on a project does not backfire on how good it is.
-Whoever said that

flat sentinel
dapper ice
sullen radish
gentle flint
flat sentinel
#

Linspire (Formerly Lindows) is a commercial operating system based on Debian and Ubuntu and currently owned by PC/OpenSystems LLC. From 2001 to 2008, it was owned by Linspire. Inc., and from 2008 to 2017 by Xandros.
On July 1, 2008, Linspire stockholders elected to change the company's name to Digital Cornerstone, and all assets were acquired by...

#

@gentle flint shhhhhhhhhhh

#

AUR is the best

gentle flint
#

ZPE Programming Environment (or simply ZPE) formally the Zenith Parsing Engine is a general-purpose compiler, parser and interpreter for the YASS language designed for educational use as well as for its general use. The language it interprets, YASS, is an interpreted, high-level, general-purpose programming language. YASS is largely built upon m...

#

@rugged root

rugged root
#

Laaaaaaaame

gentle flint
#

The language it interprets, YASS, is an interpreted, high-level, general-purpose programming language. YASS is largely built upon making the language easy to read and use, with optional support for syntaxes such as curly-bracket syntax. YASS supports dynamic typing.

somber heath
#

Aladka.

#

We've a town named Yass in my state.

#

It has this cafe that has the biggest sausage rolls you'll ever see.

#

and amazing pineapple juice

gloomy vigil
#

yas

somber heath
#

...might not be yass.

somber heath
#

No. I'm misremembering.

gentle flint
#

that's a very tiny screenshot

somber heath
#

I'm thinking of Yea.

past pawn
#

sorry to leave but i wanna conserve mobile data

somber heath
#

Yea. Yass. Kind of thematically similar, really.

past pawn
#

i have a bot running on replit, and when i segfault it it just triggers on_ready

#

this bot invincible

rugged root
#

HA

past pawn
#

you see it segfaults, then just keeps on going

gentle flint
brave steppe
#

It's raining so fucking much halp

fresh ember
rugged root
brave steppe
#

Bro I am on a buss bro

rugged root
#

On the sussy buss

gentle flint
#

sussy baka

#

as kemal would say

brave steppe
brave steppe
past pawn
#

okay i tried it again

#

it printed a solid kilometer of error message... and ignored the exception

#

all of it

#

the last line was server disconnected

#

just a few hundred repeats of

#

followed by

celest pecan
#

that's a real problem like if one has a job

#

I'm not a programmer, so I don't have contex

#

what is this place

past pawn
#

idk i use it as a torture dungeon for python

brave steppe
#

@past pawn, what are you doing exactly?

celest pecan
#

see a farm

past pawn
#

im doing that with async

#

mixing segfault with coroutines XD

#

like lemon juice and papercut

celest pecan
#

saga and yellow bus

past pawn
#
@command(2)
async def restart(message):
  __import__("os").system("python ."),exit(0)

@command(2)
async def abort(message):
  if message.channel.last_message.author!=message.guild.me:
    await message.channel.send("Attempting to recover from: SIGTERM")
  __import__('ctypes').py_object.from_address(69).value=420
#

I actually broke something