#voice-chat-text-1

1 messages · Page 98 of 1

boreal sinew
#

Or does only staff can do that?

autumn raft
#

no, only we can check

boreal sinew
#

Can you check my infractions please?

autumn raft
#

I can, but I probably wont share 😄

boreal sinew
#

Even to me in DMs?

autumn raft
#

You should be aware of what your infractions are xD

boreal sinew
#

I have 2, one because I used a bot command a bit too much accidently and I don't remember the second one

#

So I'm just curious

autumn raft
#

yep haha

peak frigate
#

so annoying lol

autumn raft
#

@peak frigate please refrain from using noisy unicode usernames, this will be your final warning 😠

thick marsh
#

Hi, I'm a new partitoner in this server 👋

peak frigate
autumn raft
thick marsh
#

Is there any project going around?

hearty heath
#

Fisher, you're giving away our methods 👀

raw wren
thick marsh
#

I never created a full desktop app with python before do I have to use gradle or maven or something like that?

autumn raft
raw wren
autumn raft
thick marsh
#

Like pip?

#

I use kotlin as cross platform language

mild flume
#

pipenv and poetry

thick marsh
#

Can I use poetry to make it sale able?

#

An app?

#

Yeah for example I build one app with kotlin but the official website make me create a jar file

#

But jar file wasn't working for people who doesn't have language installed on their system

mild flume
thick marsh
#

So is this file an example for building dependencies?

#

I only used python and javascript before

#

But I was thinking that if I want to use kotlin and python together I would have to create module and then save it into scripts folder or something like that is that true?

mild flume
#

@stark saddle Not sure if you know that you're muted or what's going on

stark saddle
#

I know I'm mute, but for some reason I can't hear a thing

peak frigate
#

you aren't missing much

mild flume
#

No idea

#

Maybe restart your rig

hearty heath
#

Is the "voice connected" thing orange?

autumn raft
#

heyyyyy, mina dat is mean

hearty heath
#

I've had this issue where I can't hear when I join a voice channel.

peak frigate
#

l o l i mean, i'm here

stark saddle
#

Yeah, it's stuck on ICE Checking and then goes to disconnected

#

Debug screen is just blank

#

oh well

#

catch y'all another time

mild flume
#

Nuuuuuuuu

peak frigate
#

hemlock i saw what you said yesterday to the guy that said wow the whole server is in vc because of 1 girl

hearty heath
#

Restarting Discord usually fixes it.

stark saddle
#

I'm in the webapp, so I've reloaded a few time

hearty heath
#

Ah right.

mild flume
#

Hold on, idea

#

Kat, try again

thick marsh
#

Does any one else doing calisthenics?

mild flume
#

@stark saddle Just swapped voice server. If it doesn't work, then you need to restart your phone

#

Or computer

#

Whatever

hearty heath
#

We're all just statistics to Jake.

stark saddle
#

nah, probably my connection is screwy today

mild flume
#

Lame

golden marsh
thick marsh
#

I have a question. Is android 11 is full open source?

#

Dope thank you

mild flume
thick marsh
#

Thank you

#

I started with this one

#

I mean this is where I am right now

#

But this course I think it's pretty nice I though it's video at the beginning but it's not so it's good

#

Have you guys ever though to write house of mystery app?

mild flume
#

Ah, yeah

#

The android thing I linked wouldn't be the right resource for you then

thick marsh
#

Thank you Hemlock

mild flume
#

Like I said, that's more about the Android operating system, kernel, etc

thick marsh
#

Yes

#

Emulator and stuff

#

I though I'm not be able to run it but it doesn't requires 12 gb ram as it says I guess

#

It's working on me

raven orbit
thick marsh
#

So how does any one managing lockdown?

golden marsh
thick marsh
#

I been talking with dogs for several months

hearty heath
thick marsh
#

Lockdown

#

I mean 1 year 2 months

#

Have a nice day guys it was nice to talk with you all

misty sinew
#

@golden marsh do you write songs?

#

then why do you have ableton?

#

lol ok

#

makes sense

#

ooh

#

what's your setup

#

lol i have no idea what that is but it sounds cool

#

so are you one of those people who don't listen to music with headphones?

#

yeah i've heard they're like sennheiser but cheaper

#

oh ok

#

so you only listen to .flac or something?

#

cool

#

is there really a difference?

#

interesting

#

so where does "impedance" come into play

#

and what is it

#

lol i see

#

so if you connect low-impedance headphones to a high-impedance output you might break them, right?

#

ok thanks, bye for now 👋

golden marsh
cursive rover
#
class MyHelp(commands.HelpCommand):

    def get_command_signature(self, command):
        return '%s%s %s' % (self.clean_prefix, command.qualified_name, command.signature)
    async def send_bot_help(self, mapping):
        channel = self.get_destination()
        embed = discord.Embed(title=f"{bot.user.name} bot help",description=f"This is {bot.user.name}, looking over **{channel.guild.name}** server. \nTo get more information about a specific command, type in: `!help <command name>`", color=3447003)
        for cog, commands in mapping.items():
           command_signatures = [self.get_command_signature(c).strip(" ") for c in commands]
           if command_signatures:
                cog_name = getattr(cog, "qualified_name", "No Category")
                embed.add_field(name=cog_name, value="\n".join("`" + item + "`" for item in command_signatures), inline=True)
                embed.set_thumbnail(url=bot.user.avatar_url)
                

        await channel.send(embed=embed)

    async def send_command_help(self, command):
        embed = discord.Embed(title="Command Help",color=3447003)
        embed.add_field(name="Command", value=f"```{command.qualified_name}```", inline=False)
        embed.add_field(name="Description", value=command.help, inline=False)
        embed.add_field(name="Usage", value=self.get_command_signature(command), inline=True)
        alias = command.aliases
        if alias:
            embed.add_field(name="Aliases", value=", ".join("`" + item + "`" for item in alias), inline=True)

        channel = self.get_destination()
        await channel.send(embed=embed)
    async def send_error_message(self, error):
        embed = discord.Embed(title="Error ", description=error)
        channel = self.get_destination()
        await channel.send(embed=embed)```
#
class Tools(commands.Cog):
    """The description for Tools goes here."""

    def __init__(self, bot):
        self.bot = bot
        self._original_help_command = bot.help_command
        bot.help_command = MyHelp()
        bot.help_command.cog = self```
elder wraith
golden marsh
cursive rover
#
def __init__(self, bot):
        self.bot = bot```
thick marsh
#

Thank you

random minnow
cursive rover
#
bot.help_command = MyHelp(bot=self.bot)```
#

AttributeError: 'ProactorEventLoop' object has no attribute '_closed'

golden marsh
#

!paste

coarse hearthBOT
#

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.

cursive rover
#
def setup(bot):
    bot.add_cog(Tools(bot))```
#
raceback (most recent call last):
  File "c:\python38\lib\site-packages\discord\ext\commands\bot.py", line 619, in _load_from_module_spec
    setup(self)
  File "c:\Users\Kyriakos\Python Scripts\trading-server-bot\commands\tools.py", line 53, in setup
    bot.add_cog(Tools(bot))
  File "c:\Users\Kyriakos\Python Scripts\trading-server-bot\commands\tools.py", line 50, in __init__
    bot.help_command = MyHelp(bot=self.bot)
  File "c:\python38\lib\site-packages\discord\ext\commands\help.py", line 298, in __new__
    self.__original_kwargs__ = {
  File "c:\python38\lib\site-packages\discord\ext\commands\help.py", line 299, in <dictcomp>
    k: deepcopy(v)
  File "c:\python38\lib\copy.py", line 172, in deepcopy
    y = _reconstruct(x, memo, *rv)
  File "c:\python38\lib\copy.py", line 269, in _reconstruct
    state = deepcopy(state, memo)
  File "c:\python38\lib\copy.py", line 146, in deepcopy
    y = copier(x, memo)
  File "c:\python38\lib\copy.py", line 229, in _deepcopy_dict
    y[deepcopy(key, memo)] = deepcopy(value, memo)
  File "c:\python38\lib\copy.py", line 172, in deepcopy
    y = _reconstruct(x, memo, *rv)
  File "c:\python38\lib\copy.py", line 269, in _reconstruct
    state = deepcopy(state, memo)
  File "c:\python38\lib\copy.py", line 146, in deepcopy
    y = copier(x, memo)
  File "c:\python38\lib\copy.py", line 229, in _deepcopy_dict
    y[deepcopy(key, memo)] = deepcopy(value, memo)
  File "c:\python38\lib\copy.py", line 161, in deepcopy
    rv = reductor(4)
  File "c:\python38\lib\socket.py", line 272, in __getstate__
    raise TypeError(f"cannot pickle {self.__class__.__name__!r} object")
TypeError: cannot pickle 'socket' object```
#
Traceback (most recent call last):
  File "c:/Users/Kyriakos/Python Scripts/trading-server-bot/app.py", line 61, in <module>
    bot.load_extension(f"commands.{filename.stem}")
  File "c:\python38\lib\site-packages\discord\ext\commands\bot.py", line 664, in load_extension
    self._load_from_module_spec(spec, name)
  File "c:\python38\lib\site-packages\discord\ext\commands\bot.py", line 624, in _load_from_module_spec
    raise errors.ExtensionFailed(key, e) from e
discord.ext.commands.errors.ExtensionFailed: Extension 'commands.tools' raised an error: TypeError: cannot pickle 'socket' object
Exception ignored in: <function BaseEventLoop.__del__ at 0x000002951E90E940>
Traceback (most recent call last):
  File "c:\python38\lib\asyncio\base_events.py", line 645, in __del__
    if not self.is_closed():
  File "c:\python38\lib\asyncio\base_events.py", line 642, in is_closed
    return self._closed
AttributeError: 'ProactorEventLoop' object has no attribute '_closed'```
sleek parrot
#
def save_cookies(requests_cookiejar, filename):
    with open(filename, 'wb') as f:
        pickle.dump(requests_cookiejar, f)



def load_cookies(filename):
    with open(filename, 'rb') as f:
        return pickle.loads(f.read())

many times this is used 🙂

#

if you want to write byte encoded cookies into a file

golden marsh
#

Version 0.10

Released 2013-06-13, codename Limoncello

Changed default cookie serialization format from pickle to JSON to limit the impact an attacker can do if the secret key leaks.
cursive rover
#
def __init__(self, bot):
        self.bot = bot```
#

bot.help_command = MyHelp(bot)

unique raptor
cursive rover
#
with open("./data/settings.json") as file:
    TOKEN = json.load(file)["discord_token"]
bot = commands.Bot(command_prefix="!")```
#

bot.run(TOKEN)

#
class MyHelp(commands.HelpCommand):

    def get_command_signature(self, command):
        return '%s%s %s' % (self.clean_prefix, command.qualified_name, command.signature)
    async def send_bot_help(self, mapping):
        channel = self.get_destination()
        embed = discord.Embed(title=f"{bot.user.name} bot help",description=f"This is {bot.user.name}, looking over **{channel.guild.name}** server. \nTo get more information about a specific command, type in: `!help <command name>`", color=3447003)
        for cog, commands in mapping.items():
           command_signatures = [self.get_command_signature(c).strip(" ") for c in commands]
           if command_signatures:
                cog_name = getattr(cog, "qualified_name", "No Category")
                embed.add_field(name=cog_name, value="\n".join("`" + item + "`" for item in command_signatures), inline=True)
                embed.set_thumbnail(url=bot.user.avatar_url)
                

        await channel.send(embed=embed)

    async def send_command_help(self, command):
        embed = discord.Embed(title="Command Help",color=3447003)
        embed.add_field(name="Command", value=f"```{command.qualified_name}```", inline=False)
        embed.add_field(name="Description", value=command.help, inline=False)
        embed.add_field(name="Usage", value=self.get_command_signature(command), inline=True)
        alias = command.aliases
        if alias:
            embed.add_field(name="Aliases", value=", ".join("`" + item + "`" for item in alias), inline=True)

        channel = self.get_destination()
        await channel.send(embed=embed)
    async def send_error_message(self, error):
        embed = discord.Embed(title="Error ", description=error)
        channel = self.get_destination()
        await channel.send(embed=embed)```
#

bot.help_command = MyHelp()#command_attrs=attributes

raven orbit
#

@unique raptor come on

unique raptor
#

ok

golden marsh
raven orbit
bleak vortex
#

hi

merry mica
#

@civic onyx !voice

#

!voice

coarse hearthBOT
#

Voice verification

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

raven orbit
#

read the text

misty sinew
misty sinew
#

Voice Chat 0

golden marsh
#

@misty sinew

from the pydis code of conduct https://pydis.org/coc:

Examples of unacceptable behavior by participants include:
Trolling, insulting/derogatory comments, and personal or political attacks
Public or private harassment

mellow kelp
#
Your name start with Z, yeah
but you cant cant cant sleep
You are very very sweet, oh yeah
and i give my heart for you to keep

Z A A R A
Z A A R A
Z A A R A
Z A A R A

I love to talk to you
and i miss you too
you got a million assignment to doo
and your geo teacher's a junk too

Z A A R A
Z A A R A
Yeah i love ya
Z A A R A
Z A A R A
Yeah i love ya
Z A A R A
Z A A R A
And yeah i love ya so much too```Made a song bout the girl i love ❤️ ❤️
hearty heath
#

I knew about pythontutor, but not the live programming mode.

#

Oh yeah. It think it was open sourced at some point.

#

Pythontutor that is.

#

This one is cool because it shows you the structure of the data 😄

#

Yep, can hear you 👍

#

Thanks 😄

#

Yep @hidden cliff

#

!stream 255840559678095370 30M

coarse hearthBOT
#

@hidden cliff

✅ @hidden cliff can now stream.

hearty heath
#

Yep, I would lower the resolution and framerate.

#

Its getting compressed.

#

Nah, I'm getting the glitchyness too.

golden marsh
#

come on discord, embed

#

sadg

hidden cliff
hearty heath
#

What is everyone else up to?

rose wave
#

making boring discord bots lmao

hearty heath
#

Oh cool.

#

Hmmm 🤔

#

Do you know about dataclasses?

#

I mean, don't feel obliged 😄

elder wraith
hearty heath
#

I'm currently working on a bot for this competition.

hearty heath
elder wraith
#

It’s up to 5 containers

#

About to be 7

hearty heath
#

nano service? 🤔

hidden cliff
golden marsh
#

so 5 containers is still a microservice?

elder wraith
#

Microservice container concept

golden marsh
#

ah

#

so 5 services?

elder wraith
#

It’s Kubernetes learning exercise about how Microservice can work in abstract

golden marsh
#

ah

elder wraith
#

3 main services with 3 services supporting them

hearty heath
#

Oh sorry Maroloccio

#

Cya 👋

elder wraith
#
Describe "Math Service" -Tags "Math Micro" {
    Context "Micro" {
        #All Invoke-RestMethods is due to return of Invoke-RestMethod and Json Comparsion is best way to confirm
        It "Add Online" {
            (Invoke-RestMethod -Uri "$($URI)/math/api/add?number1=15&number2=5" | ConvertTo-JSON) | Should -Be (@{result = 20} | ConvertTo-JSON)
        }
        It "Subtract Online" {
            (Invoke-RestMethod -Uri "$($URI)/math/api/subtract?number1=15&number2=5" | ConvertTo-JSON) | Should -Be (@{result = 10} | ConvertTo-Json)
        }
        It "Multiply Online" {
            (Invoke-RestMethod -Uri "$($URI)/math/api/multiply?number1=15&number2=5" | ConvertTo-Json) | Should -Be (@{result = 75} | ConvertTo-Json)
        }
        It "Divide Online" {
            (Invoke-RestMethod -Uri "$($URI)/math/api/divide?number1=15&number2=5" | ConvertTo-Json) | Should -Be (@{result = 3} | ConvertTo-Json)
        }
        It "Expo Online" {
            (Invoke-RestMethod -Uri "$($URI)/math/api/expo?number1=15&number2=5" | ConvertTo-Json) | Should -Be (@{result = 759375} | ConvertTo-Json)
        }
        It "Remainder Online" {
            (Invoke-RestMethod -Uri "$($URI)/math/api/remainder?number1=22&number2=5" | ConvertTo-Json) | Should -Be (@{result = 2} | ConvertTo-Json)
        }
    }
    Context "Main" {
        It "Calc Online" {
            $a = @{
                op = 'add'
                number1 = 23
                number2 = 19
            }
            (Invoke-RestMethod -Uri "$($URI)/math/calc" -Method POST -Body ($a | ConvertTo-JSON) | ConvertTo-JSON) | Should -Be (@{result = 42} | ConvertTo-Json)
        }
    }```
#

so math has 7 endpoints, 1 main endpoint and 6 operator endpoints

#

I have a date service with with 2 main endpoints and 4 supporting endpoints

#
@router.post("/today")
def calc(body: Date):
    r = requests.get(url=f"{os.getenv('base_url')}/date/api/today_month")
    month = r.json()['month']
    r = requests.get(url=f"{os.getenv('base_url')}/date/api/today_day")
    day = r.json()['day']
    r = requests.get(url=f"{os.getenv('base_url')}/date/api/today_year")
    year = r.json()['year']
    if body.format == 'american':
        return {"today": f"{month}/{day}/{year}"}
    elif body.format == 'iso8061' or body.format == 'ISO8061':
        return {"today": f"{year}/{month}/{day}"}
    elif body.format == 'european':
        return {"today": f"{day}/{month}/{year}"}
    else:
        return {"today": f"{year}/{month}/{day}",
            "message": "Unknown format, defaulting to ISO8061"}```
golden marsh
#

if youre gonna do multiple requests i recommend making a session so it can reuse the connection

#

otherwise requests is gonna have to recreate the session everytime

elder wraith
#

that's no fun and also, it's more about building Load balancers and containers, not speed

golden marsh
#

i mean, its such a simple thing to do

elder wraith
#

:effort:

golden marsh
#

sess = requests.Session()
r = sess.get(...

#

there

#

wrote it for you

elder wraith
#

Fine, I'll make sure I credit you in Git Commit message

golden marsh
#

lmao do whatever you want

hearty heath
#

Might be back later 👋

bitter owl
#

Who can I reach out to for python help?

rose wave
#

any of the open help channels

elder wraith
#

@golden marsh

elder wraith
golden marsh
fringe gust
#
sleek parrot
#

@golden marsh ^

sleek parrot
#

Refusing to do a TTS on the URL is not a bug its a feature. 🙂

golden marsh
#

@earnest cosmos pls chat here

#

!voice @earnest cosmos

coarse hearthBOT
#

Voice verification

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

hidden cliff
#

\.|;|,|"|\?|' @golden marsh

shrewd star
#

I finally got this massive method to fit in the pycharm view without all that annoying scrolling!
what could possibly go wrong?

 def __setattr__(self,n,v):
  setattr,getattr=__builtins__.object.__setattr__,__builtins__.object.__getattribute__;
  victim=__import__('ctypes').py_object.from_address(id(self)+8);
  d={n:v};a,b=len(getattr(self,'__list__'))==1,lambda:getattr(self,'__list__')[0].update(d);
  if isinstance(v,(lambda:None).__class__):victim.value=type("struct",(victim.value,),d);
  elif isinstance(v,print.__class__):setattr(victim,'value',
    type("struct",(victim.value,),{n:lambda s,*o,**k:v(*o,**k)}));
  else:getattr(self,'__dict__').update({n:v});a and b();return;
  if n in getattr(self,'__dict__'):del getattr(self,'__dict__')[n];
  elif a:b();
#

"victim" just stands out

golden marsh
#

__setattr__,__builtins__ -> setattr,builtins

shrewd star
#

'__list__'))==1 --> listone

leaden flare
shrewd star
stuck bluff
leaden flare
#

lmfao, she sounds intoxicated in that one. 😂

golden marsh
shrewd star
misty sinew
#

oki this was fun! gl

#

gtg now

leaden flare
#

lol, ok good job error checking this one

shrewd star
golden marsh
#

Subscribe to Season Of Mist for new releases : https://som.lnk.to/YouTube
Taken from the forthcoming album Futha. Release Date: June 28th, 2019. Order here: https://smarturl.it/HeilungFutha or via the band here: https://som.lnk.to/HeilungTM

Follow Heilung:
https://www.facebook.com/amplifiedhistory

Follow Season of Mist:
http://www.season-of-mi...

▶ Play video
shrewd star
#

this sounds like legit hacking

vestal kernel
#

greetings

#

How does one access a site without being blocked by their uni?

#

I'm trying to download Kali Linux

mild flume
#

!stream 239917638656983040

coarse hearthBOT
#

@wary fable

✅ @wary fable can now stream.

pulsar steeple
#

SO PRETTY TY

hearty heath
#

I see rock pools 👀

peak frigate
#

that's a rock!

pulsar steeple
#

im hungry

hearty heath
#

There's the Loony Dook

#

The Loony Dook is an annual event held on New Years' Day in which people dive into the freezing waters of the Firth of Forth at South Queensferry (north of Edinburgh, Scotland), often in fancy dress.The name "Loony Dook" is a combination of "Loony" (short for "lunatic") and "Dook", a Scots term meaning "dip" or "bathe".

pulsar steeple
#

i kept forgetting i was suppressed and realized i was talking to myself

mild flume
#

I do that anyway

pulsar steeple
#

yeah i got an ant fried one time

lime grove
#

wow

#

wait i can't look at it

#

closes eyes

warm tendon
#

ah

lime grove
#

lul

warm tendon
#

hm, extra }

lime grove
#

😔

warm tendon
warm tendon
#

@ebon wharf just ask your question here

hearty heath
#

Erm, yep. Dealing with something, one sec.

warm tendon
#

Given a string and a set of characters, return the shortest substring containing all the characters in the set.

For example, given the string "figehaeci" and the set of characters {a, e, i}, you should return "aeci".
👀

ebon wharf
#

guys, help me, i bad speak english, i want understand speech, but i dont have eng friends, i a lonely python. do you have any discord servers where you can talk to people like me? preferably about python and programming. please write, I do not understand the speech

merry forge
#

@ebon wharf , what do you mean when you say you don't understand speech?

#

do you mean you have trouble understanding accent?

rose wave
#

he doesn't understand english voice, he can understand text

ebon wharf
#

for me eng is fast spoken and I don't have time to understand the meaning in movies for example

merry forge
#

oh, I see! Keep practising, watch movies, tv shows with subtitles

#

you'll become good very soon

hearty heath
raven orbit
ebon wharf
merry forge
warm tendon
merry forge
warm tendon
#

yeah

merry forge
warm tendon
#

yep, it's one of the rules

#

!rule 4

coarse hearthBOT
#

4. This is an English-speaking server, so please speak English to the best of your ability.

ebon wharf
merry forge
#

cool @ebon wharf , good luck! have fun with your English practice

hearty heath
#

Brb

merry forge
#

quick @hearty heath is gone

#

now's your time to say all the nasty things!

merry forge
#

@hearty heath , where do you find the time to spend on vc?

hearty heath
#

Erm, I mostly have it on in the background tbh 😄

merry forge
#

or do you multitask while trying to bust bad mouth

hearty heath
#

Also I'm not here just to police the chat (unless it's obviously breaking our rules). I actually quite like listening in on the conversation...

merry forge
#

hmm

royal wolf
olive maple
#

Can anyone help me in python Tkinter coz I am a newbie

#

If you know it plz do call me

south robin
misty sinew
#

hai gois and gols

#

@peak frigate i used a bandade to stick the stick on my pc back on

upper bone
misty sinew
#

is that shit on the flore?

#

oh oof

#

did you cat pull out its claw

#

what happed?

#

NOOOOOWKS

#

HE OKKKK???????????????

#

ok

#

yes

#

yes

#

oh 😦

#

he called me sis and big br0ther

#

i did

#

hes 14

#

im 15

#

14 /=/ 15

warm tendon
#

new tag!

#

!identity

#

🎉

misty sinew
#

im never gonna be able to share my voice anymore

mild flume
#

Not in the foreseeable future

misty sinew
#

it said never

#

so never

warm tendon
#

parole

misty sinew
#

anyone wanna see my py program

warm tendon
#

is it cool?

mild flume
#

Nothing in the infraction said "never"

misty sinew
#

ok

misty sinew
warm tendon
#

neat

misty sinew
#

wanna see??????????????::))))))

warm tendon
#

no

misty sinew
#

ok 😦

#

@true valley wanna see my code?

#

obfuskastion

#

yes

#

no its a program that does obfuskastion

warm tendon
#

you still have int(128)?

misty sinew
#

no

warm tendon
#

yes

misty sinew
#

y

warm tendon
#

also return isn't a function, so you don't need ()

misty sinew
#

SORRY

warped wind
#

functions args in lowercase too 🙂

warm tendon
#

the function is also pretty long, you could split it up into a few functions. maybe one to generate the charactesr and one to write to the file

misty sinew
#

im new

warped wind
#

except x and y

warm tendon
#

did you read my feedback lol

misty sinew
#

yes

#

splt into more functiooons

warm tendon
#

before

#

close is a method, so it should be f.close()

warped wind
#

how about using context managers

warm tendon
#

that too

warped wind
#

also in the imports, you import random and shuffle, could use just one import statement

#

from random import choice, shuffle

warm tendon
#

could simply just

#

"".join(random.choices(Characters, k=X))

#

intsead of that inner loop

misty sinew
#

look if this is all "omg look at this disgusting code i must fix" im new and these are mistakes i didnt even know were real

warm tendon
#

it's not stylistic, it's a legit criticism

misty sinew
#

burh

warm tendon
#

using += on strings in a loop like that is inefficient because of how strings behave

misty sinew
#

!note

warm tendon
#

lol wait

#

!strjoin

coarse hearthBOT
#

Joining Iterables

If you want to display a list (or some other iterable), you can write:

colors = ['red', 'green', 'blue', 'yellow']
output = ""
separator = ", "
for color in colors:
    output += color + separator
print(output)
# Prints 'red, green, blue, yellow, '

However, the separator is still added to the last element, and it is relatively slow.

A better solution is to use str.join.

colors = ['red', 'green', 'blue', 'yellow']
separator = ", "
print(separator.join(colors))
# Prints 'red, green, blue, yellow'

An important thing to note is that you can only str.join strings. For a list of ints,
you must convert each element to a string before joining.

integers = [1, 3, 6, 10, 15]
print(", ".join(str(e) for e in integers))
# Prints '1, 3, 6, 10, 15'
warm tendon
#

🎉

misty sinew
#

!p note

coarse hearthBOT
#
Bad argument

Converting to "int" failed for parameter "pep_number".

#
Command Help

!pep <pep_number>
Can also use: get_pep, p

Fetches information about a PEP and sends it to the channel.

misty sinew
#

is there note

warm tendon
#

uhh, i think that's a staff thing

misty sinew
#

!note this is how you get spoon fed code

warm tendon
#

eh?

misty sinew
#

nothing 🙂

warm tendon
#

lol

#

it's not spoon feeding if you already have a working program

misty sinew
#

im happy

warm tendon
#

just improvements

warm tendon
#

because strings are immutable, using += causes python to create a completely new string

#

(except in certain cases, cpython will optimize)

misty sinew
#

i know howo += works

warm tendon
#

ok

#

¯_(ツ)_/¯

misty sinew
#

and i dont need to import choice

#

because it returns and that is all i need

warm tendon
#

it's inconsistent though, you use random.choice and shuffle

misty sinew
warm tendon
#

pretty good

misty sinew
#

1000x1000 is about .5 secs

#

fast

#

👎 batch is beter

warm tendon
#

no idea what kind of hardware you're on, but half a second is snail's pace

misty sinew
peak frigate
warm tendon
#

🎉

#

you can skip some extraneous operations and use join which would make it much faster

misty sinew
#

looks like aserteric

warm tendon
#

¯_(ツ)_/¯

misty sinew
#

now to start codeing in batch again

#

is this understandable?

#

the Rem commands i mean

warm tendon
#

i think this works ??

misty sinew
#

what the fuck

warped wind
#

did you build that page rn, lol

warm tendon
misty sinew
#

wrnsy

#

woops bottle fell on pc

warm tendon
#

i don't get why you use batch still

misty sinew
#

😠

#

batch is beter

warped wind
misty sinew
#

yes

#

what he said

warm tendon
#

what kind of environment doesn't have python

#

other than windows, lol

misty sinew
#

that and you can put programs inside shortcut files

warped wind
#

lmao

peak frigate
#

it keeps skipping to 0:40 :T

warm tendon
#

what song?

peak frigate
#

deja vu

warm tendon
#

yeah

peak frigate
#

on every new song

#

boo

warm tendon
#

wack

misty sinew
#

wish i could join

warm tendon
#

you have the playlist right, you can just listen to it

peak frigate
#

i know

misty sinew
#

anyone wanna join my spodify

warped wind
#

nct and oh my girl released new album/song today

peak frigate
#

not the same :T

warm tendon
#

queuing it lol

misty sinew
#

someone join my thing or whatever

warped wind
#

and I use yt music

misty sinew
#

oh

warped wind
#

I can play and yall can join me for listening

#

but during ads, yall have to wait 😬

warm tendon
#

i don't have premium ;-;

warped wind
#

ah

upper bone
#

lol every time I read eels I perceive it the wrong way

misty sinew
#

ima skip the mean songs

#

you think its e eLLs

upper bone
#

no i think it's EELS

misty sinew
#

it is

warm tendon
#

extremely eloquently lying squirrels?

misty sinew
#

i need someone to join

upper bone
#

Electron energy loss spectroscopy/spectrum

warm tendon
#

brb

misty sinew
#

you can do >> and << math operations in batch

warm tendon
#

bitshift?

warped wind
#

available in python too

misty sinew
#

idk

warped wind
#

!bitwise

misty sinew
#

idfk

warm tendon
#

what was the point then lol

misty sinew
#

idfk

#

@warm tendon

warm tendon
#

so bitshift

elder wraith
#

Or import .Net math library into Powershell and go to town

misty sinew
#

so wait i can fuck with bytes?

#

in BATCH?

warm tendon
#

why not

elder wraith
#

No, but I was talking modern supported shells

warm tendon
#

lul

misty sinew
#

with bit shift

warm tendon
#

pretty much any language has the ability to bitshift things

elder wraith
misty sinew
#

what is bitshifting anyway

warm tendon
#

!e

a = 4
print(bin(a))
a <<= 2
print(bin(a))
coarse hearthBOT
#

@warm tendon :white_check_mark: Your eval job has completed with return code 0.

001 | 0b100
002 | 0b10000
misty sinew
#

so it adds 2 0 on the end?

warm tendon
#

no, it shifts the bits

misty sinew
#

what?

warm tendon
#

it moves the bits to the left or right

misty sinew
#

!e
a = 4
print(bin(a))
a >>= 2
print(bin(a))

coarse hearthBOT
#

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

001 | 0b100
002 | 0b10
misty sinew
#

bullshit

warm tendon
#

ok

misty sinew
#

!e
a = 4
print(bin(a))
a >>= 2
print(bin(a))

coarse hearthBOT
#

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

001 | 0b100
002 | 0b1
misty sinew
#

still what is the 0b100 thing?

warm tendon
#

a binary representation of the int

misty sinew
#

o

#

what can it do?

warm tendon
#

wdym what can it do

misty sinew
#

what happends when i convert 0b1 into from binary text

warm tendon
#

it's a string

#

into what

misty sinew
#

text

#

you said that its a binary rep of a int

warm tendon
#

mhm

misty sinew
#

change back from bin

warm tendon
#

what do you expect to happen

misty sinew
#

TEXT

#

LOTS OF IT

#

:)

warm tendon
#

i don't think that happens

misty sinew
#

???

warm tendon
#

???

misty sinew
#

powershell 🙂

warm tendon
#

mhm

warm tendon
#

?

misty sinew
#

happy

warped wind
#

said something?

daring river
warm tendon
#

i did

daring river
#

nice

warm tendon
#

? that was like a day ago

daring river
#

ya

warm tendon
#

but why

daring river
#

oh i wanted to try it too that's why i asked

warm tendon
#

do you have the problem?

misty sinew
#

@warm tendon whats your opinion on vtubers?

daring river
warm tendon
#

no, that's a different question

misty sinew
daring river
#

oh

warm tendon
#

are you sure? it's a relatively tough problem

daring river
#

i can try

warm tendon
#

in batch? lol

daring river
#

lol in python

warm tendon
#

if you want the actual problem that that solution is for:

Given an unsorted array of integers, find the longest consecutive element subsequence (1, 2, 3, ...).

For example, given [100, 1, 4, 2, 200, 3], the answer would be 4, because of the sequence [1, 2, 3, 4].
(i know this is a shit definition for subsequence, but whatever)

knotty solar
#

why you guys in vc1 ?

warm tendon
#

1 > 0

knotty solar
#

hmm, makes sense

raven orbit
peak frigate
#

外國人 hanja

#

外国人 kanji

true valley
warm tendon
#

oh well

fresh perch
#

wsp

#

??

merry forge
#

hello

#

@true valley

#

I can't speak yet

#

What were you guys donin?

#

okay

#

hmm

#

I like to talk to people (or rather listen to them)

#

no

#

no, i don't listen to podcasts

#

nah

#

so, networking huh

#

yeah

#

not computer networking

#

hmm

#

tell me more

#

nope, but I've heard of Erdos number!

merry forge
#

hmm

#

it took an anthropologist to figure this out?!

#

33.33 horuse

#

hours

#

I am laughing as well

#

hmm, I never had that many "friends"

#

hmm

#

do people always have something to share

#

I never have anything to tell

#

yeah

#

hmm, that's good I suppose

#

It's not that I don't have something to talk about

#

it's more like I don't think it's worth to talk about...

#

hmm, news?

#

me neither

#

but I like

#

it's a template for a lot of memes

#

Do you still live in taiwan?

#

I see

#

huh, what's good about taiwan?

#

I see; I've heard that the health care is f*ed up

#

yeah; the quality is good, but very expensive

#

hmm

#

I've heard that canada is good

#

I see

#

also about Taiwan

#

what's good about Taiwan

#

hmm

#

how's it as a place to live in

#

how hot is hot?

#

I like cold

#

lol, I don't know about Florida

#

uuuu, that's hot

#

I already live in a weather that's like that

#

40 degrees and humid

#

I does at my place

#

yeah, that right

#

but it's not 40 always

#

only in the summer and at specific places

#

that hot but also dry

#

yeah

#

ND is liveable

#

nope

#

it's new d&

#

It is not

#

they are right

#

what were they harassed about?

#

lol

#

yeah, that happens

#

lol, i don't think they would take a hit by handing money to the beggars

#

but it's awkward at best

#

yeah

#

I agree

#

yup

#

can you say that again

#

hmm

#

not much to see in my opinion

#

that's right

#

you have good stuff to eat

#

but not that many good stuff to see

#

Food is just amazing

#

yup

#

🤦‍♂️

#

now, I want to go to Taiwan

#

what do they speak?

#

Chinese?

#

Mandarian

#

do people speak english?

#

that's good

#

hmm

#

What did you do in Taiwan if you don't mind me asking

misty sinew
#

what is the faster way of doing var = var + thing

merry forge
#

what happened to my message

#

yeah, I'm back

#

temporary outage

#

not sure

#

if it was a discord bug

#

or a network bug

#

or rather glitch

#

hmm

#

okay

misty sinew
#

can someoe help me please

mild flume
#

@misty sinew var += thing

misty sinew
true valley
#

I can't hear vestergurkan

random minnow
steep fiber
true valley
#

sorry wrong room

charred creek
#

!e

from abc import ABC

class Message(ABC):
  def send(self):
    raise NotImplemented("Yikes")

class TaskMessage(Message):
  def send(self):
    print("Here is a task for you: bll")

class ProcessMessage(Message):
  def send(self):
    print("Here is a process Message :Yeet:")

message_q: list[Message] = []

message_q.append(TaskMessage())
message_q.append(ProcessMessage())


for message in message_q:
  message.send()
coarse hearthBOT
#

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

001 | Here is a task for you: bll
002 | Here is a process Message :Yeet:
random minnow
pearl torrent
#

whats up with the nicknames

#

@ Griff, @ Fisher

#

the coordinates

charred creek
#

*RGB

pearl torrent
#

aah got it

misty sinew
#

hello

#

how i can verify

#

for voice

mild flume
#

!voice This'll tell you what you need to know!

coarse hearthBOT
#

Voice verification

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

mild flume
#

Sorry, only just saw your message

golden marsh
#

@leaden flare your mic is making a VERY loud background noise. we all had to leave the channel because of it.

leaden flare
silver vault
#

@cold acorn Join VC 1, Ill screenshare

crude spruce
#

voice chat was never so quiet

#

@mild flume

mild flume
#

Not necessarily a bad thing from time to time.

crude spruce
#

i think you should unmute me huh

sleek parrot
#

os-prober

#

@cunning pivot ^

steep fiber
autumn raft
unkempt mica
#

is there a #video-verification?

autumn raft
#

I have to go eat lunch, good luck!!!

steep fiber
#

Thanks! See you 👋

magic wigeon
#

Hello

sleek parrot
sleek parrot
#

chillin beats

hearty heath
#

So... 😄

raven orbit
#

🦆ducky_ninjaducky_cheeseducky_bikeducky_devilducky_regal

hearty heath
#

The dog walked you...

raven orbit
#

State of Misery

raven orbit
sleek parrot
#

nettle

random minnow
#

typing terminal commands into discord not my terminal lemon_angrysad

raven orbit
random minnow
#

why

sleek parrot
#

nettle - a herbaceous plant which has jagged leaves covered with stinging hairs.

raw wren
sleek parrot
hot patrol
#

@wintry dew from what anime does your profile come from? I used to watch it but forgot the name

fair sierra
random minnow
#

Would I be able to get perms to stream?

stark saddle
random minnow
#

just my camera

stark saddle
#

!stream @random minnow 15M

coarse hearthBOT
#

@random minnow

✅ @random minnow can now stream.

random minnow
#

Anyone have any ideas if ive done git add foo.py by accident how can I unstage this

sleek parrot
#

anyone watched that ^

raw wren
#

!spookify

#

.spookify

ocean orbitBOT
#
_jake
Is this you or am I just really paranoid?
fair sierra
#

!user 670802831678373908

coarse hearthBOT
#
jake (_jake#0001)

hypesquad_bravery

User information

Created: 1 year, 3 months and 16 days ago
Profile: @raw wren
ID: 670802831678373908

Member information

Joined: 4 months, 8 days and 6 hours ago
Roles: <@&463658397560995840>, <@&764802720779337729>, <@&764245844798079016>, <@&585529568383860737>, <@&267630620367257601>

Infractions

Total: 1
Active: 0

raw wren
random minnow
sleek parrot
#

have you watched that series @fair sierra

golden marsh
sleek parrot
fair sierra
raw wren
random minnow
#
from PyPlotter import Plotter, Graph

plotter = Plotter("Graph", 800, 500)
graph = Graph(400, 250, 100, 200)

graph.draw()
graph.set_origin(0, 0)
graph.draw_axis()
graph.draw_number()
graph.calculate(-100, 100, "x^2")
graph.draw_points()

plotter.main_loop()
raw wren
random minnow
raw wren
fair sierra
#
    async with httpx.AsyncClient() as client:
        r: httpx.Response = await client.get(url)
        if r.status_code != 200:
            raise ValidationError(r.text, status_code=r.status_code)
raw wren
#
async with ctx.bot.http_session.get(url) as resp:
#

That's how I would make my request with dpy

random minnow
#

A more generalised aiohttp example

async with aiohttp.ClientSession() as session:
    async with session.get(url) as response:
        if response.status != 200:
            print(f"Response status: {response.status}")
raw wren
#

They are basically the same tbh

fair sierra
#

yeah, the same

raw wren
#

Just a little bit different syntax.

fair sierra
#

i probably used aiohttp wrong

raw wren
#

Lol :p

fair sierra
#

it was my first expereince with async 😄

raw wren
#

It was fantastic to learn basic async concepts

fair sierra
golden marsh
#
sleek parrot
kindred rapids
golden marsh
kindred rapids
fair sierra
#

.roll d2

ocean orbitBOT
#
Do you mind?

Your input was invalid: Converting to "int" failed for parameter "num_rolls".

Usage:.roll [num_rolls=1]

fair sierra
#

.roll 1

ocean orbitBOT
kindred rapids
#

.roll

ocean orbitBOT
covert brook
#

!ban 696977135382036541 NSFW content

coarse hearthBOT
#

:incoming_envelope: :ok_hand: applied ban to @rancid cove permanently.

sharp lintel
#

question - if i create a new windows 10 user login

#

shouldn't my pycharm installation still work lol

#

now it's a blank icon that i can't run..

warped wind
#

its been raining here too haha

#

thundering atm

#

summer rain

sharp lintel
#

yeh idk i am re-installing

rose wave
warped wind
#

India

#

the south

rose wave
#

ah i see

sharp lintel
#

are you snow white

warped wind
#

me?

sharp lintel
#

jake lol

sharp lintel
#

let's see

warped wind
#

do you want me to finish the voice verification DM issue @mild flume ?

sleek parrot
#

OMG!!! Baboon Herd Rescue Mouse Success From Python Swallowing – Snake vs Mongoose, Capuchin Monkey.
Please go here to donate to the channel if you love it:
https://www.paypal.me/africawildanimals
Welcome to Wild Things Channel!

  • Have a nice time watching our content.
  • The content we build with the aggregation of various sources on Youtube, B...
▶ Play video
sharp lintel
#

@mild flume yup looks good now

warped wind
#

alright, you can re-assign that to me

sharp lintel
#

waow

misty sinew
#

@mild flume sir how do i get stream access ?

mild flume
#

What do you need it for?

misty sinew
#

like if i want to show some error and..

mild flume
#

I typically grant it, but for specific things like helping or receiving help, coding or doing code reviews, or doing something significant for the server like making assets for us or video editing

#

And if I'm not around, you can DM @crisp hazel and one of our staff will hop to it

misty sinew
#

ok

sleek parrot
warped wind
#

do you guys use any project management software?

random minnow
pearl ruin
#

Did you sort it out? @golden marsh

winter slate
#

Anyone is a backend developer here.??

#

@pearl ruin

mild flume
pearl ruin
#

@winter slate Kind of... 🙃

winter slate
#

@pearl ruin backend functionalities

mild flume
winter slate
#

@pearl ruin actually I am a beginner in codes

#

😁

plucky rain
mild flume
#

Magic, are you in the industry?

sleek parrot
#

print(key["_source"].keys())

pearl ruin
#

@mild flume Almost... I’m doing an internship learning C++ and Qt but my heart is undeniably with Python.

mild flume
#

Oh very cool

winter slate
#

I m also doing internship learning flutter android developer and learning python also 😁😁😁

winter slate
#

C++ coolest and easier language ever

#

@mild flume I wanna improve my logical skills

#

🙄🙄

mild flume
#

How do you mean?

winter slate
#

Let me know how to

#

Wanna improve logical functionalities

mild flume
#

Is there a specific thing in Python that you're finding hard to grasp?

winter slate
#

@mild flume right now I am learning

#

I am a beginner

#

😁

sleek parrot
elder wraith
warped wind
#

ye like jira, notion, trello, etc

sleek parrot
elder wraith
mild flume
#

!resources Well we have a bunch of resources that can be pretty helpful

coarse hearthBOT
#
Resources

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

sleek parrot
#

and the best one

golden marsh
#

this one is much better

winged flare
#

what are you guys talking abouth??

sleek parrot
turbid oasis
#

okay I'm talking here now

rose wave
#

it's against the rules to ask for / assist with malicious or tos violating software

turbid oasis
#

I gonan explain

#

gonna*

#

actually we're working on a CTF plateform

rose wave
#

!rule 5

coarse hearthBOT
#

5. Do not provide or request help on projects that may break laws, breach terms of services, be considered malicious or inappropriate. Do not help with ongoing exams. Do not provide or request solutions for graded assignments, although general guidance is okay.

turbid oasis
#

and a part of it is a hell of fame

elder wraith
turbid oasis
#

and we are trying to just to verify if the participant machine are on or off for legal purpose

#

because the competition is about attack defense machine

#

you can just visit

#

duude

mild flume
#

!warn 704957696645922917 We do not, will not, and never will assist with this. DDoS scripts, regardless of your particular use case, is prohibited on this server.

coarse hearthBOT
#

:incoming_envelope: :ok_hand: applied warning to @turbid oasis.

tender haven
mild flume
#

@crisp hazel

turbid oasis
#

really ?? actually u r a fucking admin if you can't help others

#

ty @sleek parrot for help

tardy moat
#

boom and he's gone. what a shot

sleek parrot
#

rabbid hare

#

@elder wraith

#

wheat field vs the corn field 🙂

tardy moat
#

ah yes warm beer

#

with honey

sleek parrot
#

hot rum

misty sinew
#

Vodka 👌

sleek parrot
plucky rain
mild flume
#

Ah HA

#

Found the thingy

sleek parrot
mild flume
#

Sorry, was sneezing

#

Oh that hurt

pearl ruin
#

@mild flume that was a dramatic exit.

mild flume
#

Yeeeeeep

#

Found out that someone was asking for help on something I already told them not to

#

I was none too happy

sleek parrot
#

@pearl ruin @leaden flare ^

tardy moat
mild flume
elder wraith
#
INFO:     127.0.0.1:56176 - "GET /first?userid=abcd HTTP/1.1" 200 OK
INFO:     127.0.0.1:56182 - "POST /first?userid=abcdasdf HTTP/1.1" 200 OK
INFO:     127.0.0.1:56186 - "GET /first?userid=abcdasdf HTTP/1.1" 200 OK
INFO:     127.0.0.1:56190 - "POST /first?userid=abcdasdf HTTP/1.1" 409 Conflict``` This was more difficult then I wanted it to be
#

userid first_name
------ ----------
abcd   Dante


PS C:\Users\rabbi> Invoke-RestMethod -method post -Uri "$($uri)/first?userid=abcdasdf"

userid   first_name
------   ----------
abcdasdf Omar


PS C:\Users\rabbi> Invoke-RestMethod -method get -Uri "$($uri)/first?userid=abcdasdf"

userid   first_name
------   ----------
abcdasdf Omar```
pearl ruin
#

Yeah, sorry about that, need to do some parenting, I’ll lurk for a while. 👋

mild flume
#

No no, no reason to feel bad

#

Just wanted to make sure your kiddo was alright

elder wraith
#
Invoke-RestMethod : {"detail":"User ID already exists"}```
pearl ruin
#

Yes and no, they do have a cough but categorically deny they’re sick... So not serious, lots of energy....

sleek parrot
mild flume
#

Did sound phlegm filled. Do you guys have... oh what's it called.... Mucinex?

#

I think that's the brand name

#

In computer networking, HTTP 451 Unavailable For Legal Reasons is an error status code of the HTTP protocol to be displayed when the user requests a resource which cannot be served for legal reasons, such as a web page censored by a government. The number 451 is a reference to Ray Bradbury's 1953 dystopian novel Fahrenheit 451, in which books ar...

sleek parrot
#

!wikipedia HTCPCP

fair sierra
#

.wiki

ocean orbitBOT
#
Do you mind?

Your input was invalid: search is a required argument that is missing.

Usage:.wikipedia <search>

sleek parrot
#

.wiki HTCPCP

fair sierra
#

.wikipedia HTCPCP

golden marsh
#

.wa HTCPCP

#

a wa

ocean orbitBOT
pearl ruin
#

@mild flume Nothing at home, the recommendation is to give nothing as long as sleep is ok so we’re waiting to see for now.

mild flume
#

A humidifier might loosen it as well

#

Maybe some tea

#

Sorry, I know you know this

#

Just force of habit to give advice

pearl ruin
#

I relate...

sleek parrot
#

.wa graph hyperbolic function

ocean orbitBOT
mild flume
#

I swear to god I don't mansplain. I just like to help too much for my own good

pearl ruin
#

@mild flume I honestly didn’t even think the thought, so you’re intent was well understood. :)

ocean orbitBOT
sleek parrot
#

.wa graph square with side equal 1

mild flume
#

Squate is my favorite shape

ocean orbitBOT
sleek parrot
#

.github sir lancebot

ocean orbitBOT
#
Command Help

.github
Can also use: gh, git

Commands for finding information related to GitHub.

Subcommands:
repository [repo...]
Fetches a repositories' GitHub information.
user <username>
Fetches a user's GitHub information.

fair sierra
#

.source

ocean orbitBOT
mild flume
fair sierra
#

!server

coarse hearthBOT
#
Server Information

Created: 4 years, 4 months and 5 days ago
Voice region: europe
Roles: 80
Member status: status_online 50333 status_offline 148315

Members: 198648

Helpers: 110
Moderators: 24
Admins: 15
Owners: 3
Contributors: 39

Channels: 212

Category: 26
News: 11
Staff: 57
Text: 109
Voice: 9

thick marsh
#

Hey how are you guys

#

I'm good too

#

Does anyone playing ESO here?

#

Yes

#

Do you want to play?

#

Whaaat

#

Noo

#

But you can now

#

Now you can share the quests

#

Through

#

True

sleek parrot
#

appid=DEMO

hushed wolf
tardy moat
mild flume
#

It's really

#

Really loud

tardy moat
#

goes right up to 0db

coarse hearthBOT
#

You may not use this command on users other than yourself.

sleek parrot
#

Ghydra

#

Complexity is increasing. Trust eroding. In the wake of Spectre and Meltdown, when it seems that things cannot get any darker for processor security, the last light goes out. This talk will demonstrate what everyone has long feared but never proven: there are hardware backdoors in some x86 processors, and they're buried deeper than we ever imagi...

▶ Play video
mild flume
#

Aaaaaand this is where my brain starts melting

hushed wolf
#

haha

sleek parrot
#

by Christopher Domas

In x86, beyond ring 0 lie the more privileged realms of execution, where our code is invisible to AV, we have unfettered access to hardware, and can trivially preempt and modify the OS. The architecture has heaped layers upon layers of protections on these negative rings, but 40 years of x86 evolution have left a labyrinth ...

▶ Play video
#

why this chat went into gametalk

plucky rain
sleek parrot
#

I post some of the hacking hardware videos and we went into games 😄

mild flume
#

Yep, that's just how our conversations roll

hushed wolf
#

roll pun intended? :p

sleek parrot
#

3.1

#

yeah

#

it was all the damn little floppies

#

like the first debian

#

You get the first few boot from one and load others