#voice-chat-text-0

1 messages · Page 1027 of 1

quaint oyster
#

gi irl

ebon sandal
lavish rover
#

!d heapq

wise cargoBOT
#

Source code: Lib/heapq.py

This module provides an implementation of the heap queue algorithm, also known as the priority queue algorithm.

Heaps are binary trees for which every parent node has a value less than or equal to any of its children. This implementation uses arrays for which heap[k] <= heap[2*k+1] and heap[k] <= heap[2*k+2] for all k, counting elements from zero. For the sake of comparison, non-existing elements are considered to be infinite. The interesting property of a heap is that its smallest element is always the root, heap[0].

lavish rover
#

!d queue.PriorityQueue

wise cargoBOT
#

class queue.PriorityQueue(maxsize=0)```
Constructor for a priority queue. *maxsize* is an integer that sets the upperbound limit on the number of items that can be placed in the queue. Insertion will block once this size has been reached, until queue items are consumed. If *maxsize* is less than or equal to zero, the queue size is infinite.

The lowest valued entries are retrieved first (the lowest valued entry is the one returned by `sorted(list(entries))[0]`). A typical pattern for entries is a tuple in the form: `(priority_number, data)`.

If the *data* elements are not comparable, the data can be wrapped in a class that ignores the data item and only compares the priority number:
astral drum
#

tig?

woeful salmon
peak ice
#

@thin finch

#

how can i speak in channel

woeful salmon
#

!voice

wise cargoBOT
#

Voice verification

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

peak ice
#

mine audio is suppressed

peak ice
woeful salmon
#

it shows the criteria to get voice verified and you can talk after that

peak ice
#

i need to send 50 message at any channel

#

?

#

guys please help with this code

#
#

i was actually trying to get the concept

#

so came here in hope to get explanation

thin finch
peak ice
#

i am trying to understand why init function expect me to return value

#

guys what am i doing wrong?

#

in rajasthan it is very hot

#

@thin finch please help

#

@thin finch yeah it is giving error

somber heath
somber heath
#

If your assessment software is telling you your __init__ is wrong because it's returning None, then the software is wrong.

#

But it may just be pointing it out as a potential problem.

#

A method returning None is often appropriate.

#

Often you will want to return some other object.

#

!e ```py
class MyClass:
def init(self):
return 7

MyClass()```

wise cargoBOT
#

@somber heath :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 5, in <module>
003 | TypeError: __init__() should return None, not 'int'
somber heath
#

list.count

#

collections.Counter

thin finch
#

!e

import collections
print(collections.Counter(['a', 'b', 'c', 'a', 'b', 'b']))
wise cargoBOT
#

@thin finch :white_check_mark: Your eval job has completed with return code 0.

Counter({'b': 3, 'a': 2, 'c': 1})
woeful salmon
#

!e

from collections import Counter

arr = [1, 2, 3, 1, 2, 1, 2, 1, 1, 1, 1]

print(arr.count(1)) # O(n) count of 1 thing
print(Counter(arr)) # O(n) for all counts
wise cargoBOT
#

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

001 | 7
002 | Counter({1: 7, 2: 3, 3: 1})
lunar mulch
#

!e

print("")
wise cargoBOT
#

@lunar mulch :warning: Your eval job has completed with return code 0.

[No output]
thin finch
#

!e

lst = ['a', 'b', 'c', 'a', 'b', 'b']

def counter(lst):
    count = dict()
    for i in lst:
        try:
            count[i] += 1
        except:
            count[i] = 1
    return count

print(counter(lst))
wise cargoBOT
#

@thin finch :white_check_mark: Your eval job has completed with return code 0.

{'a': 2, 'b': 3, 'c': 1}
thin finch
#

!timeit

lst = ['a', 'b', 'c', 'a', 'b', 'b']
def counter(lst):
    count = dict()
    for i in lst:
        try:
            count[i] += 1
        except KeyError:
            count[i] = 1
    return count

print(counter(lst))
wise cargoBOT
#

@thin finch :white_check_mark: Your timeit job has completed with return code 0.

20000000 loops, best of 5: 13.5 nsec per loop
thin finch
#

!timeit

import collections
print(collections.Counter(['a', 'b', 'c', 'a', 'b', 'b']))
wise cargoBOT
#

@thin finch :white_check_mark: Your timeit job has completed with return code 0.

50000 loops, best of 5: 6.06 usec per loop
woeful salmon
somber heath
#

!timeit ```py
from string import ascii_lowercase as alphabet
from collections import Counter
the_list = list(alphabet * 10000)

for c in alphabet:
the_list.count(c)```

wise cargoBOT
#

@somber heath :white_check_mark: Your timeit job has completed with return code 0.

2 loops, best of 5: 146 msec per loop
woeful salmon
#

!e

from collections import defaultdict

lst = ['a', 'b', 'c', 'a', 'b', 'b']
def counter(lst):
    count = defaultdict(int)
    for i in lst:
        count[i] += 1
    return count

print(counter(lst))
wise cargoBOT
#

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

defaultdict(<class 'int'>, {'a': 2, 'b': 3, 'c': 1})
somber heath
#

!timeit ```py
from string import ascii_lowercase as alphabet
from collections import Counter
the_list = list(alphabet * 10000)

count = Counter(the_list)
for c in alphabet:
count[c]```

wise cargoBOT
#

@somber heath :white_check_mark: Your timeit job has completed with return code 0.

10 loops, best of 5: 22.2 msec per loop
somber heath
#

Yes.

#

str

#

!e py import string print(string.ascii_lowercase)

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

abcdefghijklmnopqrstuvwxyz
somber heath
#

str

#

I just wanted to give list.count something to chew on.

#

str.count is comparatively zoomy.

#

I was getting a result inverse to what I expected at first, then I realised it was a str not a list.

quaint oyster
#

lol

indigo bloom
#

hi

woeful salmon
#

!e

import unicodedata

for char in "【𝑵𝒐𝒐𝒅𝒍𝒆𝑹𝒆𝒂𝒑𝒆𝒓.】":
    print(unicodedata.name(char))
``` @thin finch
wise cargoBOT
#

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

001 | LEFT BLACK LENTICULAR BRACKET
002 | MATHEMATICAL BOLD ITALIC CAPITAL N
003 | MATHEMATICAL BOLD ITALIC SMALL O
004 | MATHEMATICAL BOLD ITALIC SMALL O
005 | MATHEMATICAL BOLD ITALIC SMALL D
006 | MATHEMATICAL BOLD ITALIC SMALL L
007 | MATHEMATICAL BOLD ITALIC SMALL E
008 | MATHEMATICAL BOLD ITALIC CAPITAL R
009 | MATHEMATICAL BOLD ITALIC SMALL E
010 | MATHEMATICAL BOLD ITALIC SMALL A
011 | MATHEMATICAL BOLD ITALIC SMALL P
... (truncated - too many lines)

Full output: https://paste.pythondiscord.com/unibacogoz.txt?noredirect

whole bear
#

sounds like smth up my ally troll_killmeihavehadenough

#

@ebon sandal smyle

ebon sandal
#

😶

#

Bruh i am not even in vc

#

😶

whole bear
#

you are

#

pycharm depression

quaint oyster
#

pycharm for project development not script writing

cedar swallow
#

🗿

whole bear
#

aaa

#

notepad++

#

🥺

quaint oyster
#

shhh that one doesnt exist

whole bear
thin finch
amber raptor
#

I didn’t know it was GA. I was beta tester on it. Like copilot, found it not very useful for me.

lunar mulch
#

?

amber raptor
#

But I generally know what I’m looking for

modest bloom
#

how do i get this

woeful salmon
lunar mulch
thin finch
#

you asked how to use base64 images with tkinter.

lunar mulch
#

no I did not

#

it's @glad sandal

#

he asked

#

there's two fat cats in this room

amber raptor
#

So AI trying to help gets in the way more often then not.

quaint oyster
#

I like the fatycaty thing

#

but it's not as good if you dont change your actual username

#

@lunar mulch fake fatycaty

keen stirrup
#

Anyone theer?

frigid panther
#

o/

whole bear
#

Hello

#

:)

ebon sandal
#

🙂

whole bear
#

Emoji

#

I dont now happens on cellphone

#

Sorry

#

Wrong chat

#

Mine no

#

Its from reddit

lunar mulch
#

how do I terminate a thread?

broken harbor
#

.join

lunar mulch
#

won't work when you have input() actively listening on that thread

glossy tulip
#

help anyone ? 🙂

#

haven't been in this discord too long so not worth of voice

#

worthy*

whole bear
#

noooo

#

f

#

bye

safe pumice
#

Hey Is what's happening You guys know if python pygame is a good library to use for graphics and it if it has potential for integration into artificial intelligence

somber heath
#

Big no to both questions. Little yes to both questions.

safe pumice
#

I've been trying a couple of different libraries Like kivy Which did not work for some reason And the program is not well documented with good examples Then I tried tkinter and I did not like the architecture that they use

#

Ok so what would you think would be good Library for hellping Understand Python Because when I learn other languages are used a graphics library To help Me understand and see the concepts when I first started

somber heath
#

The turtle module is fun to play around with. I wouldn't say any one module would be especially helpful above others in terms of learning about Python.

safe pumice
#

ok I looked at it briefly and I must have made some misconceptions about out it is there any way you can help me clear that up

somber heath
#

Elaborate?

safe pumice
#

First I didn't like the fact that I had a arrow thank you where you are I just preference maybe And I thought of it as It had to draw Every shape each time with the arow wizing around

somber heath
#

The arrow can be hidden.

#

turtle.penup

safe pumice
#

Is there anyway that you can turn that off And can you work with just coordinates

somber heath
#

turtle.goto

safe pumice
#

Is there any way to iterate without using the functions given like y += 1

#

ok ill have a closer look

somber heath
#

You could write a class to handle that cleanly. Yes, but the way you'd write it to do the thing itself would be a touch awkward.

safe pumice
# somber heath turtle.goto

This is what I'm talking about I'm not trying to make constructors To handle the shapes myself and even if I made those constructors How would I then move that shape Across the Canvas as a whole Peace

#

There is no problem with making constructors for it by the way

#

But I find out vectors would be better to work with

somber heath
#

Kivy is good.

#

Nicer than all of them.

#

Though it can use some reskinning.

#

So can tkinter.

safe pumice
#

Ok I look a little bit more into pygame with kivy you have to make two files and You have to declare everything you make in a separate file as well as referring back to it like css because the currently I'm learning Python is already very awkward It's so new and so weird how Python does things It's like you always wanted them that way but you been forced to do it a different way It's intuitive By the way thank you so much for hellping me With my decision

safe pumice
somber heath
#

You don't have to make two files in Kivy.

#

You don't have to touch kvlang if you don't want to.

#

Though the way kvlang works is one of Kivy's strengths as a gui framework.

safe pumice
#

For some apparent reason I am doing a course right And they are using kivy Language to learn using both files and it Already very confusing To understand how they are referring to Everything using the kivy file

#

I understand the concept of AI but I just feel like it's really cranky On how they are using the graphics library Any limits your creativity Especially as a beginner in Python

somber heath
#

A.I. is not a beginner concept.

safe pumice
#

Yeah already have two languages under my belt

#

But I'm going to be doing tensorflow next year in my University

somber heath
#

But you shouldn't be learning anything like that until you have the underlaying language under your belt.

#

If you're new to Python, it should all be about learning the language.

#

Not branching off into other modules.

#

To a point.

#

There is a point where you want to while learning.

#

But there's a lot of cover before imports.

safe pumice
# safe pumice But I'm going to be doing tensorflow next year in my University

I think you're very right that's why I'm trying to learn the graphics library I am studying with friends all summer And they're doing these courses but i Understand the concepts I know how to implement them in other languages but i need Library so I can use to save me time I'm and get me comfortable with the Language For when I'm doing these sessions with them

#

I know it's a lot of pressure

somber heath
#

Libraries aren't going to especially help you.

safe pumice
#

ok so what will

somber heath
#

Using the language will.

safe pumice
#

I think I understand I'm just going to have to learn that language

somber heath
#

Corey Schafer has a number of excellent videos on YouTube that cover a lot of ground

#

Also

#

!resources

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.

somber heath
#

Read the documentation.

#

I did.

safe pumice
#

Thank you so much or looking to those resources

somber heath
#

library.pdf is my favourite.

safe pumice
#

looking the videos right now

#

ok ill check that out

#

i am doing some planing Based on these Videos..... doing it right now and implemmenting it in to my Schedule thank you so much For your help OpalMist

somber heath
#

Mm.

teal flower
#

How I learn to understand the basic stuff to programming

quaint oyster
#

they want me to divide the two numbers

#

L O L

quaint oyster
#

oh nvm i get it

#

it has to do with the limits for int bits

wind raptor
#

@feral summit talk in here

#

!voice

wise cargoBOT
#

Voice verification

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

feral summit
#

im muted

#

!voice

#

Lmao

#

I deff need more chat messages

#

I have not made that cut

#

like 2 years

#

Plan on building a Linux Laptop from a chromebook soon

#

Yeah, saving up now think it would be a fun project

vagrant grove
#

Can you unmute me

wind raptor
#

!voice

wise cargoBOT
#

Voice verification

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

vagrant grove
#

😔

#

I just started python

#

Been 5days

#

I love it

#

Yes i started 5 days ago

#

And been in the server for about 4days

#

I sent a few

#

How

#

It doesn't it just says its less than 50

#

Yeah

#

Youtube

#

Bro Code

#

The 12hr one

#

I think im at object oriented programming

#

Yeah

#

Will youtube be enough to learn

#

Yes i have been

#

Yes

feral summit
#

do you know sql?

vagrant grove
#

Yeah me too idk why are they relevant

feral summit
#

or object relational diagerams

#

yeah

#

Just started

#

First week

#

Yeah its something

#

Yeah, cant wait to dive deeper

#

g

peak ice
#

hello everyone

lavish rover
#

!e

s='s={};print(s.format(repr(s)))';print(s.format(repr(s)))
wise cargoBOT
#

@lavish rover :white_check_mark: Your eval job has completed with return code 0.

s='s={};print(s.format(repr(s)))';print(s.format(repr(s)))
wind raptor
lavish rover
#

Can probably just use something like this for react too

somber heath
#

@neat acorn You audio sounds like your amplitude is clipping.

somber heath
#

It'd also be good if you turned on push to talk.

#

Your mic is always on, otherwise.

#

Thanks. 😄

lavish rover
#

Tech-sus

steel lodge
#

this better?

#

yey

#

i mainly work in 4 bc of paper 2D

#

this is actually my 1st time on discord and i have a server for testing bots

quaint oyster
#

!e```py
s = "hello"
print(s[0:1])
print(s[0])

#

-_-

steel lodge
#

.

quaint oyster
#

oh its non inclusive

#

my bad

steel lodge
#

tbh i work with like the bare minimum when in comes to python

quaint oyster
#

sometimes it takes asking my question and answering it in mustafas turkish accent in my head

#

🙂

steel lodge
#

same, but its british for some reason..

#

.-.

quaint oyster
#

he's explained so much simple shit to me that now i have a mustafa in my brain

steel lodge
#

sometimes i have a split personality disorder

#

other times i think its my autism

#

messing with me

#

srry if it sounds wierd

quaint oyster
#

can you thumbs up my comment

#

im trying to be pythons discord top trending comment

steel lodge
#

i made a text base assistant that does certain things if you enter a command that is in a list of commands stored in certain variables

quaint oyster
#

alright you're toxic

steel lodge
#

i did it tho

quaint oyster
#

you thumbs down

#

you have to thumbs up

steel lodge
#

oh whoops

#

tho ya

#

here are the variables

mighty glade
#

I cannot talk

somber heath
#

!voice

wise cargoBOT
#

Voice verification

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

lavish rover
#

?

quaint oyster
#

delete your message

steel lodge
#

oof how do i do that?

lavish rover
#

!code

wise cargoBOT
#

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

mighty glade
#

Guys why i cannot open my mic

somber heath
wise cargoBOT
#

Voice verification

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

mighty glade
#

!voice

#

Ahh i see

steel lodge
#

omg

lavish rover
#

```py
code
```

#

not single quotes

#

Pls use a smaller code block to not spam the channel

quaint oyster
#

we already se the variables bro, why are you sending it lol

steel lodge
#
var_1 = ["hello", "hi"]
var_2 = ["how are you?", "what's up?", "how's it going?", "how are you doing?"]
var_3 = ["give me an inspirational quote", "give me something inspirational", "quote", "quote, please"]
var_app_runner = ["open my app runner", "open app runner"]
var_cmd = ["open cmd", "open my command prompt"]
var_bye = ['goodbye jarvis', 'see you later, jarvis', 'bye jarvis', 'bye', 'cya', 'goodbye', 'cya later', 'cya later jarvis', 'cya jarvis']
var_commands = ["these cmds", "this cmd", "commands", "cmd"]
var_youtube = ["open youtube", "open youtube, please", "youtube", "please open youtube"]
var_spotify = ["open my spotify", "spotify, please", "please open my spotify", "spotify", "music", "open my music player", "music, please", "open spotify"]
var_google = ["open google", "google", "open google please"]
var_outlook = ["open my outlook", "open my email", "open my account", "open email", "email", "outlook", "email, please", "outlook, please"]
var_notepad = ["open notepad", "open my notepad", "notepad", "notepad, please"]
var_pong = ["pong, please", "pong", "open pong", "open my pong program"]
var_tts = ["text to speech", "tts", "tts, please"]
var_steam = ["steam", "steam, please", "open steam", "please open steam"]
var_unreal = ["unreal engine", "unreal", "unreal please", "unreal engine please", "open unreal", "open unreal engine please", "open unreal please", "please open unreal", "please open unreal engine", "open unreal engine"]
var_mc = ["open minecraft", "minecraft", "minecraft please", "please open minecraft"]
var_IDLE = ["open my python ide", "open my python editor", "open idle"]
#

there

#

thx

quaint oyster
#

delete your other two

steel lodge
#

there

#

:3

mighty glade
#

Thanks guys, gtg

steel lodge
#

i just changed my icon :>

shut drum
#

yo guys

#

help me out

steel lodge
#

sure

shut drum
#

im tryna

#

delete the last character

#

from a string

somber heath
#

!d slice

wise cargoBOT
#

class slice(stop)``````py

class slice(start, stop[, step])```
Return a [slice](https://docs.python.org/3/glossary.html#term-slice) object representing the set of indices specified by `range(start, stop, step)`. The *start* and *step* arguments default to `None`. Slice objects have read-only data attributes `start`, `stop`, and `step` which merely return the argument values (or their default). They have no other explicit functionality; however, they are used by NumPy and other third-party packages. Slice objects are also generated when extended indexing syntax is used. For example: `a[start:stop:step]` or `a[start:stop, i]`. See [`itertools.islice()`](https://docs.python.org/3/library/itertools.html#itertools.islice "itertools.islice") for an alternate version that returns an iterator.
somber heath
#

!e py text = "applecakes" result = text[1:] print(result)

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

pplecakes
steel lodge
#

what does !e mean?

somber heath
#

!eval

wise cargoBOT
#
Missing required argument

code

#
Command Help

!eval <code>
Can also use: e

*Run Python code and get the results.

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

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

steel lodge
#

thx opal

shut drum
#

this opal fella is craaacked

#

at python

tame latch
#

Hey

#

Does someone know telegram?

steel lodge
#

what?

tame latch
#

Massager

#

Telegram

ebon sandal
steel lodge
#

oh

ebon sandal
#

0_0

tame latch
shut drum
#

massager?

ebon sandal
#

why do you ask

shut drum
#

🤔

steel lodge
#

messager*

tame latch
#

I tryna make bot, i wanna add a buttons

ebon sandal
#

xD

steel lodge
#

ye

shut drum
#

fair enough

tame latch
shut drum
#

huh?

ebon sandal
steel lodge
#

😄

ebon sandal
#

it was understandable

shut drum
#

uh

#

@somber heath how do I apply slice() to a string

tame latch
#

so i wrote this code

#

@bot.message_handler(commands=['start'])
def start(message):
markup = types.ReplyKeyboardMarkup(resize_keyboard=True, row_width=1)
btn1 = types.KeyboardButton(text="Button")

markup.add(btn1)

bot.send_message(message.chat.id, config.start)
somber heath
#

Corey Schafer, Youtuber.

tame latch
#

But it doesn't working

shut drum
#

ok

ebon sandal
shut drum
#

god is good, god is great

tame latch
shut drum
#

I am horrified

ebon sandal
ebon sandal
shut drum
#

its another way to say that I don't know how to proceed

#

like

#

im nearly done with my project

#

just gotta find out how to delete string

#

im like hella new to python

#

but its good

#

imma fight for it

#

so like this
slice("string")
?

#

yeah show examples plz

lunar mulch
#

@ebon sandal

ebon sandal
#

0_0

#

what?

lunar mulch
#

hi

ebon sandal
#

u look soooo cute, pssss pssss pssss

somber heath
#

!e py text = "abcdefg" print(text[0]) print(text[1]) print(text[-1]) print(text[-2])

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

001 | a
002 | b
003 | g
004 | f
lunar mulch
#

😳

shut drum
#

ok

#

oh ok thats easy

#

yeah aight i got it

#

wait

#

😮

#

I didnt think of that

ebon sandal
shut drum
#

ok ok

somber heath
#

!e py text = "abcdefghijklmnop" result = text[5:8] print(result)

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

fgh
shut drum
#

fuck

#

ok

#

mmmmmm

steel lodge
#

who in this chat loves pip and thinks its every programmers best friend

#

?

quaint oyster
#

just do s[:-1]

shut drum
#

thank u tho

#

I figured it out

#

@somber heath dude I swear to god you're like the biggest chad in the world

#

thank u so much

#

@quaint oyster thank u too

shut drum
#

start is before stop

#

then its by how many u wanna iterate

#

i think

somber heath
#

!e py text = "abcdefg" a = text[3:] b = text[:-3] print(a) print(b)

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

001 | defg
002 | abcd
shut drum
#

thats very cool I had forgotten u can use negatives

#

thanks a lot mate

quaint oyster
#

step is how many your want to skip

shut drum
#

👍

somber heath
#

!e py text = "abcdefghijklmnop" result = text[::2] print(result)

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

acegikmo
quaint oyster
#

I like numbers better lol

ebon sandal
#

0_0

#

shit

shut drum
#

alright

somber heath
#

!e py text = "abcdefg" result = text[::-1] #One to remember print(result)

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

gfedcba
quaint oyster
#

reverses the string

shut drum
#

thats very helpful

#

💪

ebon sandal
shut drum
#

ight guys I appreciate the help

#

have a good one

#

❤️

somber heath
#

!e py text = "abcdefg" a = text[5:2] b = text[5:2:-1] print(a) print(b)

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

001 | 
002 | fed
somber heath
#

If your start is higher than your stop, you need a negative step to get anything other than a blank string.

nocturne ridge
#

hi

somber heath
#

@nocturne ridge Are you able to hear us? 🙂

nocturne ridge
#

yes but i am not verified to talk in chat yet

#

my sound problem was because of echo cancellation

ebon sandal
#

@whole bear type here, not dm

whole bear
#

ok

#

I am doing python these days

frosty star
#

Base 2

woeful salmon
#

@cunning monolithhttps://www.udacity.com/course/data-structures-and-algorithms-in-python--ud513

frosty star
thin finch
pulsar helm
#

Any of you familiar with CLI development??

woeful salmon
gentle flint
#

python3-venv
python3-virtualenv
virtualenv

frosty star
#

What are those

thin finch
frosty star
thin finch
#

@frosty star Good luck, its a good book.

terse needle
somber heath
#

Abstract ALL the things!

#

@pulsar helm Your audio is awful. 😅

somber heath
#

Codejam. Where you take your code and JAM it down your computer's throat.

woeful salmon
whole bear
#

Is there any idea how to change jarvis tts real time

#

Like ironmans

slim nexus
#

xD

lavish rover
woeful salmon
#

btw look at dms

lavish rover
#

That was just yesterday

slim nexus
quasi condor
#

did you commit node_modules/ or something?

lavish rover
#

That wasn't me

#

And no, that was not the case

quasi condor
#

what was it?

lavish rover
#

Somebody rewrote the test framework and all the tests

quasi condor
#

oh god

amber raptor
#

SRE is what you get when you treat operations as if it’s a software problem.

lavish rover
#

Another one

hollow vigil
#

@thin finch Thanks for the book that will my next reading

amber raptor
#

FROM python:3.8.6-buster
pandcry

proper grove
#

@amber raptor it helps with easy setup too

thin finch
#

@hollow vigil There are 4 volumes published and 4 more planned.

honest pier
#

@bronze charm if you're trying to spam to reach the 50 message limit, please don't

woeful salmon
#

@amber raptor rabbit your voice is a bit robotic

honest pier
#

not to me

woeful salmon
#

it isn't?

honest pier
#

it isn't

woeful salmon
#

for me everyone else's voice is fine but rabbit's isn't and 0% packet loss

#

weird

honest pier
#

weird

thin finch
#

@woeful salmon refreshing discord might help

woeful salmon
#

ig my isp got offended by rabbit insulting the vim culture

#

jk

thin finch
#

Lol

proper grove
#

@mint canyon self host? when_the_imposter_is_sus

amber raptor
amber raptor
warped saffron
#

😃 Good Morning

cerulean ridge
#

@mild quartz @amber raptor shall we talk about facebook again?

mild quartz
#

lol

#

no thanks

quaint oyster
#

whats the facebook inside joke

#

@cerulean ridge

cerulean ridge
#

they had a long discussion lol

lavish rover
#

compared to say microsoft or apple, facebook is pretty bad...

quasi condor
#

yeah, agreed

cerulean ridge
quasi condor
lavish rover
#

thats above my pay grade

amber raptor
broken harbor
#

hey

#

i have a problem

#

Le volume dans le lecteur C s'appelle Acer
Le num‚ro de s‚rie du volume est 6C94-E706

R‚pertoire de C:\Users\ \PycharmProjects\necron

30/05/2022 18:27 <DIR> .
30/05/2022 18:27 <DIR> ..
30/05/2022 18:07 <DIR> .idea
30/05/2022 18:14 1ÿ088 funcs.py
30/05/2022 18:27 1ÿ057 main.py
30/05/2022 18:14 <DIR> pycache
2 fichier(s) 2ÿ145 octets
4 R‚p(s) 107ÿ620ÿ126ÿ720 octets libres

#

i'm getting the output of dir command

#

and there is weird characters..

#

can you help me ?

lavish rover
#

please use the help channels

broken harbor
#

done it

lavish rover
#

well, I'd suggest making another post there when you can and waiting. It's not nice to hijack an ongoing conversation to ask for help

quasi condor
plain rose
#

Checks on history that has already occurred won't change much, because there may be mentally unstable individuals without a record, they require intensive psychological screening to determine that without a record.

#

Which states have psychological screening and evaluation?

whole bear
#

I’m just here for something funny to listen too while I code

whole bear
#

Chat boy

#

Bot

#

I’m trying to add make it more like an ai tho

plain rose
#

there are about 120 guns for every 100 people in America

whole bear
#

Okay I do wanna say something our country’s umm like people we have in office even republicans and democrats cuz I’m in the middle but there all fucking crazy

#

Like can we talk abt gas prices

#

I can’t afford to go get a Pepsi 😦

amber raptor
plain rose
# whole bear Chat boy

couldn't you just do ```py
from transformers import pipeline, Conversation
import torch

conversational_pipeline = pipeline("conversational", model='microsoft/DialoGPT-large')

while True:
conv1_start = input("You: ")

conv1 = Conversation(conv1_start)

conversational_pipeline([conv1], pad_token_id=50256)

print(conv1)

conv1.add_user_input(input("You: "))

conversational_pipeline([conv1], pad_token_id=50256)

print(conv1)``` just do this
whole bear
#

What’s it do

plain rose
whole bear
#

Does it like learn?

#

Cuz it’s not a lot of code

plain rose
#

nope, it's already a pretrained model

whole bear
#

Oh I have 76 lines

plain rose
#

nice, what are they?

whole bear
#

They suck cuz I’m still building it lol

plain rose
#

alr

#

pydis manifesto moment

#

cya

whole bear
#

How do I get in on this convo

marble canyon
amber raptor
#

@quasi condor you are too used to somewhat functional government though Boris Johnson is working to fuck it up

slim nexus
#

hahaha

gentle flint
quasi condor
amber raptor
#

I used to bike to see friends

#

and at 14, you can arm them to protect themselves at school Fury

#

21

#

whenever you can no longer be claimed as dependent on someone taxes

quasi condor
#

rubbish metric

amber raptor
#

Indeed it has been said that democracy is the worst form of Government except for all those other forms that have been tried from time to time.…

quasi condor
#

@amber raptor had to go at short notice. I heard most of what you said though. My last thing is that the only thing you change by regulating them like publishers is raise the floor of the content they promote. Instead of being overtly racist dailystormer posts, it will be covertly racist nypost posts

#

which is an improvement

#

but the extent to which it is an improvement is very limited

stuck furnace
#

Hello Phatic expressions 👋

terse needle
stuck furnace
#

Yo

#

What's up?

#

What're you studying? 😄

#

Oh yeah

#

Oh

#

Do you know about the KA course?

#

Ah right. See the top pin in #databases if you need learning resources.

molten pewter
#

GTG see y'all later

stuck furnace
#

Imagine 😄

#

Dude, two words, Khan Academy

#

Maybe I am slightly obsessed 😄

#

Sal Khan 😍

#

What, he's great 😄

#

Pretty much taught me calculus.

terse needle
#

@broken harbor My school is inflensed by the baccalauréat in terms of the subjects I take

stuck furnace
#

Yikes

#

Erm, what have you covered so far?

#

Oh right. Have you learned about the theory of relational databases?

#

SQL is a language for relational databases.

#

Erm, there are these nice SQL short courses on edx, by Stanford.

#

Avoiding work 😄

#

Erm, not really, it's a university course I'm taking.

#

Nah, your English sounds fine!

#

;-;

#

Yep, I'm completing a degree I started but didn't finish.

#

¯_(ツ)_/¯

#

Have you tried learning the phonetic alphabet?

#

Mhm, yeah the mapping from spelling to pronunciation in English is totally inconsistent.

#

gtg 👋

thin finch
#

bye

thin finch
#

Orang-outan

broken harbor
#

Goodbye

#

au revoir

#

anticonstitutionnellement

warped saffron
#

@gentle flint Back von zee tote hahahahah

lavish rover
errant comet
#

lol

#

very formal!

#

I am doing some coding problems

#

I am doing a pseudo code project ^^

#

yup ^^

#

I agree. sometimes my actual code is hard to pesudo

#

This is my first course! we are required to take scripting for ALL STEM majors

#

I am an enviro sci

#

NO I wanna slide into ecology! 🙂

#

Use my enviro degree to slide into ecology

#

I am muted until..... I talk a bit :<

#

I kinda joined since I am in a class and like python BUTTTTT apparently security!

#

Are you a mod?

#

^^

#

You sound formal!

#

I CAN SEE WHY'

#

Are you professor?

#

top hat and white long mustache?

#

You sound like you own a mansion

#

And ride a very formal pony cart 😛

#

Dont forget the monocle

#

Over one eye 😛

#

I think that guy is on the can of peas....... 😉

#

SERIOUSLY? I love canned peas

#

I guess I am too fancy for my own good

#

I wish I wasnt muted I could talk code with yall

#

doing while loops and some pseudo some if else statements etc

#

no patience?

#

why?

#

Why is no one else in here ._.

mental rock
#

hmmm... a lotta stuff...

errant comet
#

?

#

are all muted people also locked?

somber heath
#

Locked?

frosty shell
#

I'm suppressed ... Didn't know about this

somber heath
#

!voice

wise cargoBOT
#

Voice verification

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

errant comet
#

?

#

Opal what did you do?

frosty shell
#

@somber heath : looks like i just gotta talk here for a bit

#

a long bit 😛

somber heath
#

I typed in a message into chat. The nature of the message was such that it triggered the server's bot to post that message in reponse.

frosty shell
#

Have over 50 non-deleted messages in the server

#

not sure how to see that stat

errant comet
#

so that was a message deleter

frosty shell
#

what is the search string for that?

#

@somber heath

#

7 now!

#

woohooo!

errant comet
#

you text for 30 minutes lol

mental rock
#

just talkntalkntalk

frosty shell
#

yeppity yep! for a few days

errant comet
#

no spamming 😛

#

btw the voice chat is muted too for me now for some reason

#

:i

frosty shell
#

uh, no, you started it @errant comet 🙂

#

I'm just minding my own business

lavish rover
#

moostafa

frosty shell
#

stafamoo

#

@lavish rover you work at amazon? what do you do/

#

?

lavish rover
frosty shell
#

lol, nice

lavish rover
#

mstfqrsh

frosty shell
#

AWS!

lavish rover
errant comet
#

whos she?

lavish rover
#

no idea, googled "amazon badge"

lavish rover
errant comet
#

lol!

frosty shell
#

@lavish rover like recursive descent parsers and what not? Assembly cross compilers?

#

did you have that class in university?

lavish rover
#

machine learning compilers for custom accelerators

frosty shell
#

woah, gnarly

lavish rover
#

i only know what half of those words mean, it's going to be fun

mental rock
#

sounds like a great position you got

frosty shell
#

haha, yeah, you've got room to grow

lavish rover
#

the hope is I don't get kicked out before that LOL

frosty shell
#

I'm trying to get an android program to compile... still setting up android studio.

mental rock
#

heh, why would they do that?

amber raptor
lavish rover
amber raptor
#

Employee

#

Generally tech companies badge employees differently depending. Yellow is Contractor at most places

somber heath
#

I'd have expected security to be blue.

#

Or black.

lavish rover
#

i see, yeah I'm going to be an employee

somber heath
#

Possibly dark green.

frosty shell
#

maybe administration is red .

#

science is blue

#

and engineering is yellow

errant comet
#

why?

#

whats art? rainbow?

frosty shell
#

that's Star Trek color pattern

#

anyone here good with android?

#

psh... you guys are funny 🙂

#

java!

errant comet
#

whats your android issue?

frosty shell
#

-_-

#

I want to modify it

#

then build it

#

?

#

you guys are crazy

#

lol

#

random inside a pitch thing

#

that's cray cray

#

found the parent library

#

yeah, but it won't build 😛

#

doesn't say

#

a mystery!

#

no readme

#

is it Status code 666?

#

for user is stupid?

somber heath
errant comet
#

sadly im python not java

frosty shell
#

otters ?

lavish rover
frosty shell
#

is his name AL?

#

Jerry codes

#

See Jerry get an interview

#

See Jerry get a job

#

See Jerry perform

lavish rover
#

Jerry is happy freeloading off me, and that's ok too

errant comet
#

how much is jerrys rent?

frosty shell
#

!voice

wise cargoBOT
#

Voice verification

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

lavish rover
#

he doesn't take up much space so it's less than the market average

errant comet
#

whats trash bot?

lavish rover
#

trash bot?

errant comet
lavish rover
#

the person who that message is for can react to that to delete it

#

don't ruin my jokes with sensible points 😦

mental rock
#

@frosty shellpetersen has an android tuner app... oh, you made it 🙂

frosty shell
#

@mental rock I haven't made anything yet

mental rock
#

but you got voice verified

frosty shell
#

oooh , yeah

#

that I did

mental rock
#

that was quick...

frosty shell
#

yep 🙂

lavish rover
#

!d difflib

wise cargoBOT
#

Source code: Lib/difflib.py

This module provides classes and functions for comparing sequences. It can be used for example, for comparing files, and can produce information about file differences in various formats, including HTML and context and unified diffs. For comparing directories and files, see also, the filecmp module.

lavish rover
hollow vigil
#

sooo cool open ai

terse needle
lavish rover
#

International Baccalaureate

#

It's like an advanced high school curriculum

thin finch
thin finch
#

!resources

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.

woeful salmon
frosty star
#

Haaaaaay

gentle flint
#

jaaaa

frosty star
#

Yo yo

#

I argue with my dad a lot too. Mostly abt the dishes.

#

Jaaaaa

thin finch
rugged root
frosty star
frosty star
peak ice
#

@peak copper please help

#
import random
import string

from words import words

def get_valid_word(words):
    v_word=random.choice(words)
    while '_' in v_word or ' ' in v_word:
        word=random.choice(words)
    return v_word.upper()

def hangman():
    l = 7
    word=get_valid_word(words)
    word_letters=set(word)
    alphabets = sorted(set(string.ascii_uppercase))
    used_latters=set()
    while l>0 and len(word_letters)>0:
        print("your used letters are",' '.join(used_latters))
        user_input = (input("enter a single letter")).upper() # this line
        if user_input in alphabets - used_latters:
            used_latters.add(user_input)
            if user_input in word_letters:
                word_letters.remove(user_input)
            else:
                l=l-1
                print(f"sorry wrong answer now you have {l} chances")

        elif user_input in used_latters:
            print("you entered an used letter please try again")
            print(used_latters)
        else:
            print("you entered an invalid character")
    if l==0:
        print(' you lost because you used all tha chances')
    elif word_letters==0:
        print("you won because you guessed all letters in ",word)

if __name__=='__main__':
    user_input=(input("enter a single letter")).upper()
rugged root
#
Stardew Valley Wiki

Villagers are characters in Stardew Valley. They are citizens who live in and around Pelican Town. Each villager has a daily routine, so they can be located in different sections of town depending on the in-game time of the day.

#

sorted() will always return a list

somber heath
#

!e py v = {1, 2, 2, 3, 3, 3} print(v)

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

{1, 2, 3}
thin finch
#

!e

l = [1,2,3,1,1,2]
print(set(l))
wise cargoBOT
#

@thin finch :white_check_mark: Your eval job has completed with return code 0.

{1, 2, 3}
peak ice
#

please help anyone

#

how do i convert it into set?

#

@rugged root

frosty star
somber heath
#

!e py v = [1, 2, 3] result = set(v) print(result)

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

{1, 2, 3}
peak ice
#

@rugged root what about this code ```py
import random
from words import words
import string

def get_valid_word(words):
word = random.choice(words) # randomly chooses something from the list
while '-' in word or ' ' in word:
word = random.choice(words)

return word.upper()

def hangman():
word = get_valid_word(words)
word_letters = set(word) # letters in the word
alphabet = set(string.ascii_uppercase)
used_letters = set() # what the user has guessed

lives = 7

# getting user input
while len(word_letters) > 0 and lives > 0:
    # letters used
    # ' '.join(['a', 'b', 'cd']) --> 'a b cd'
    print('You have', lives, 'lives left and you have used these letters: ', ' '.join(used_letters))

    # what current word is (ie W - R D)
    word_list = [letter if letter in used_letters else '-' for letter in word]
    print('remaining lives',lives)
    print('Current word: ', ' '.join(word_list))

    user_letter = input('Guess a letter: ').upper()
    if user_letter in alphabet - used_letters:
        used_letters.add(user_letter)
        if user_letter in word_letters:
            word_letters.remove(user_letter)
            print('')

        else:
            lives = lives - 1  # takes away a life if wrong
            print('\nYour letter,', user_letter, 'is not in the word.')

    elif user_letter in used_letters:
        print('\nYou have already used that letter. Guess another letter.')

    else:
        print('\nThat is not a valid letter.')

# gets here when len(word_letters) == 0 OR when lives == 0
if lives == 0:
    print('remaing lives',lives)
    print('You died, sorry. The word was', word)
else:
    print('YAY! You guessed the word', word, '!!')

if name == 'main':
hangman()

frosty star
#

Cool

rugged root
#

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

thin finch
#

!paste

#

@rugged root

frosty star
#

Bedtime asmr.

peak ice
thin finch
peak ice
#

he is also using list

#

nut still it is not giving error

#

please help anyone

thin finch
#

if user_letter in set(alphabet) - used_letters:
try this @peak ice

peak ice
#

ok just a min

#

thanks it worked

thin finch
#

Great!

frosty star
#

Oh rune factory is actually a spin off of harvest moon (as I read here on wikipedia)

#

“Harvest moon where you wield a sword”

frosty star
woeful salmon
thin finch
#

VCO?

woeful salmon
#

voice chat 0

#

@rugged tundra we have 40 C everyday rn

thin finch
#

haha

woeful salmon
#

xD

#

we're on equator so we get both hot and cold weather extreme

thin finch
#

@rugged tundra @woeful salmon 40C with light drizzle every now and then.

woeful salmon
#

winter down to 5-8 C and summer upto 40-45 C

rugged tundra
#

15C is the temperature I like. The Fall season is that temperature here.

woeful salmon
#

22-25 feels the most normal to me :x

#

not too hot not too cold

frosty star
#

Woah what is that

woeful salmon
#

temprature

#

in Celsius

frosty star
#

Matt r u like underwater

frosty star
thin finch
rugged tundra
#

Yeah, during December-January I work under a blanket -2C average

frosty star
#

I havent been running for a looong time

#

And i’ve been sitting cross legged for long hours so now my knees are fked

#

The migraines

#

Right above the eyeball

#

Yeah

#

Would put me out for days

#

Just had that over the weekends

#

The eyeglass shop tried to sell me “digital lenses” last time

#

I didnt get it

#

But apprently it has good reviews

#

😮

#

Actually arent migraines one of those things that are not quite well understood

#

Like a medical mystery

#

Sort of thing

thin finch
#

@frosty star its a fact that we now more about the moon than we know about our brain.

frosty star
somber heath
thin finch
#

Does any one know how many chemicals our brain produce?

frosty star
#

I heard real analysis is pretty hard

#

Im trying to cook more often so I’ll probably make some dumplings in the weekend

#

Yeah they make it look so easy :0

#

There’s some kind of algorithmic shit going on with the folding

#

Are samosas dumpling

#

I would consider it a dumpling

#

Pffftt

#

Close enough. But the filling could be anything. And the wrapper are not always pasta

thin finch
#

The wrap is mostly wheat.

frosty star
#

Yeah. But in some cultures it could also be rice.

#

Is mochi a dumpling 🤔

somber heath
#

Mimosa - Drink
Samosa - Fried dumpling

wise cargoBOT
#

@mighty pollen Per Rule 6, your invite link has been removed. If you believe this was a mistake, please let staff know!

Our server rules can be found here: https://pythondiscord.com/pages/rules

frosty star
#

Brb

gentle flint
dreamy stump
#

When I was joining the voice channel (my first time lol), I was thinking like that: wow that's a python voice channel, there should be a huge discussion and there is even a stream, gud, but no thoughts of this silence

#

ok probably like that

somber heath
rugged root
#

I just got to climb on a roof and attempt to save a bird

#

Got into the roof at the office. You could hear it from the inside just freaking the fuck out

gentle flint
#

You should add "Saviour of birds" to your About Me

rugged root
#

Maybe. Don't know if I actually saved it

peak copper
#

Get a free Audio Book trial at http://www.audible.com/smarter
Prince Rupert's Drop T-Shirts: http://bit.ly/PRD_Shirts
Original video here: https://youtu.be/k5MORochIDw
⇊ Click below for more links! ⇊

To see all my Prince Rupert's Drop Videos go to
http://www.princerupertsdrop.com

I shot a .223 7.62x39mml bullet at the Prince Rupert's Drops...

▶ Play video
gentle flint
#

then perhaps it's premature

rugged root
#

Ended up putting peanut butter crackers crumbled up to try and coax it out

#

It's not screeching anymore, so I think it caught the smell and will try to get to it.

#

Hopefully that's enough

peak copper
gentle flint
#

gtg

#

ttyl

thin finch
#

Bye

rugged root
#
peak copper
rugged root
thin finch
thin finch
#

We all have many different chargers lying around the house. Often, we forget which charger was compatible with which device. Recently, USB-C chargers are becoming increasingly widespread across multiple devices, both smartphones and laptops. Thus, most people are starting to wonder the following: is it actually safe to use a (USB-C) laptop charg...

rugged root
#

Neat

#

Never thought of kg being a potential factor

thin finch
#

You need one for electrical power

#

Watt is a unit for energy, electrical energy, kinetic energy, mechanical energy, so on...

rugged root
#

Ohhhh right right right

#

Forgot

thin finch
#

Electrical power = I^2 * R = I*V = V^2/R

lavish rover
#

Hello

woeful salmon
#

and link it in your profile

mild quartz
thin finch
mild quartz
wicked wolf
#

who is the other person talking?

mild quartz
mild quartz
#

The Thinker (French: Le Penseur) is a bronze sculpture by Auguste Rodin, usually placed on a stone pedestal. The work depicts a nude male figure of heroic size sitting on a rock. He is seen leaning over, his right elbow placed on his left thigh, holding the weight of his chin on the back of his right hand. The pose is one of deep thought and con...

rugged tundra
#

This video is a full backend web development course with python. In the course, you will learn everything you need to know to start your web development journey with Python and Django.

✏️ Course developed by CodeWithTomi. Check out his channel: https://www.youtube.com/c/CodeWithTomi
🔗 Join CodeWithTomi's Discord Server: https://discord.gg/cjqNB...

▶ Play video
cobalt flint
#

I wonder how most 10x developers actually manage to commit at least 5 times a week on Github while still working for a company?

fickle parcel
#

guys, how u learned python?

rugged tundra
#

@fickle parcel https://www.youtube.com/watch?v=Z1Yd7upQsXY&list=PLBZBJbE_rGRWeh5mIBhD-hhDwSEDxogDg I would suggest this playlist, to begin

Learn Python programming with this Python tutorial for beginners!

Tips:

  1. Here is the playlist of this series: https://goo.gl/eVauVX
  2. If you want to learn faster than I talk, I’d recommend 1.25x or 1.5x speed :)
  3. Check the outline in the comment section below if you want to skip around.
  4. Download the sample files here to follow along (th...
▶ Play video
fickle parcel
#

love pakistan

#

🙂

jagged night
#

eh yo how do you get permission to unmute

#

on the vc

dreamy stump
#

#voice-verify channel

#

or smth like that

#

its called

jagged night
#

yee

#

thanks

#

i need to more active or something ;-;

#

ill wait lmao

dreamy stump
#

:lemao:

#

oh wait im late for the chess tournament 😳

#

bye

jagged night
#

hxh is back baby

jagged night
dreamy stump
#

thx

jagged night
#

iamma try and explore pygame

#

and make some easy af game

#

something like bursting bubbles etc

errant comet
somber heath
mental rock
#

looks like there's no one in the actual voice channels right now

frank walrus
#

@somber heath hey?

#

ye

#

can't talk yet rn

somber heath
#

!voice

wise cargoBOT
#

Voice verification

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

frank walrus
#

certainly not yet

#

hehe if only i wanted to talk often necessary (just need help on x11 python stuff at #user-interfaces )

#

but for now, it's good

#

oh

rapid flame
#
SELECT * FROM Apartments WHERE price > (SELECT AVG(price) FROM Apartments ) ORDER BY price ASC;
wind raptor
simple ferry
#

Hey

#

Ain't voice verified yet so can't talk

#

All good

#

Just busting my head over this thing I'm trying to do

#

Well, I am trying to create a Virtual Hard Drive (VHD) which is easy, yes.
Editing it, and basically making it work like a normal hard drive and being able to read, write, append, etc... to it, in theory is possible

#

that's the issue

#

in theory 🥲

#

And like... All I find is virtually nothing

#

Yeah, doing it in python

#

I would do it in C++ but I despise C++

#

even tho I know it

#

Well its not necessarily interact with it like a hard drive, like mount it. But I wonder if somehow, there is a way to virtualize a file system on it

#

Normally I'd do it in Assembly and just use some magic to run it in cython.

rapid flame
simple ferry
#

Call me Alex, It'll be easier

simple ferry
#

No mounting 🙂 , just virtualizing it

#

I can somewhat understand Rust

#

I never learned it

#

I used to do C++, but moved to Java, and Python mainly.

#

I also used to do Assembly

#

and personally Assembly is cool, but I despise it with every fiber in my being

wind raptor
simple ferry
#

Looking at it rn

#

I read about PyFilesystem

#

Question is, Is it possible to like hook PyFilesystem to use a .vhd or a .img file

#

That's not a project its more or less a script.

#

I once spent 52 hours, on energy drinks, having to debug 77,582 lines of code in Java, 2,443 lines in Python and 558 in Assembly

#

I wanted to quit at that moment

#

When it came back well

#

with minor warnings and bugs

#

I fell asleep in my chair

#

and slept for a full day

#

Well, I have to go to work.

#

I'll read up on it when I come back

#

If y'all be here, I'll hop again

#

Cyaaaa

wind raptor
#

!e

password = "hello"
password += "1"
print(password)
wise cargoBOT
#

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

hello1
errant comet
#

pw == hi

#

bob += moo

#

hiodey