#voice-chat-text-0

1 messages · Page 624 of 1

red swan
#

well, it worked for a little bit, but there's more random tests it didn't work with

#

aaa check that

pine iron
#

identifier cannot be a keyword first of all

#

string cannot be used

red swan
#

brb a minute

#

back

shell dome
#
string = input("Enter the string: ")
listOfStrings = []

for i in range(len(string)):
    try:
        newString = string.replace(string[i], string[i].upper())
        print(newString)
        listOfStrings.append(newString)
    except:
        pass

print(listOfStrings)
red swan
#

yeah it is

pine iron
#

can you please explain how this works?

gloomy panther
#

can you guys help me please

pine iron
#

the above code

shell dome
#

@red swan Does it work?

#

Is it what you need?

red swan
#

aa no same problem, check that

#

see the first image

shell dome
#
string = input("Enter the string: ")
listOfStrings = []

for i in range(len(string)):
    try:
        newString = string.replace(string[i], string[i].upper())
        listOfStrings.append(newString)
    except:
        pass

print(listOfStrings)
red swan
#

@shell dome

#

see:

#

look carefully

#

at: heLLo

#

yeah.

pine iron
#

how to capitalize only the first occurance in the string?

red swan
#

like hello => Hello ?

shell dome
#

@pine iron that was the problem

#

you need to add the , 1 in the function

#
string = input("Enter the string: ")
listOfStrings = []

for i in range(len(string)):
    print(i)
    try:
        newString = string.replace(string[i], string[i].upper(), 1)
        listOfStrings.append(newString)
    except:
        pass

print(listOfStrings)
#
newString = string.replace(string[i], string[i].upper(), 1)
#

this is the fixed part

#

i specified to ONLY replace 1 of the occurance

#

not all of them

pine iron
#

doesn't work completely

red swan
#

wth

shell dome
#

whats wrong?

red swan
pine iron
#

prints this : string = input("Enter the string: ")
listOfStrings = []

for i in range(len(string)):
try:
newString = string.replace(string[i], string[i].upper())
print(newString)
listOfStrings.append(newString)
except:
pass

print(listOfStrings)

red swan
#

hellO should return helLo

pine iron
#

['Hello', 'hEllo', 'heLlo', 'heLlo', 'hellO']

#

in the 2nd and 3rd index prints same output

#

heLlo and should be helLo

red swan
#

Lukas that worked but there's more tests it didn't work with

#

that worked lukas

#

yeah yeah

#

thx lukas / fragaile

#

the answer was skipping white spaces ,-,

#
def wave(people):
    listOfStrings = []
    
    for i in range(len(people)):
        if people[i] == " ":
            continue
        new_string = people[:i] + people[i].upper() + people[(i + 1):]
        listOfStrings.append(new_string)
    
    return listOfStrings
shell dome
#

nah

#

the issue is

#

ohhh

#

nvm it will work

red swan
#

,-,

#

thx f1re

#

which one?

#

pass do nothing. but continue skip remaining statements in the loop

shell dome
#

That is epic

red swan
#

like:

for i in 'hello':
  if(i == 'e'):
    print('pass executed')
    pass
  print(i)
shell dome
#

yeah i got it

red swan
#

👍

shell dome
#

🙂 nice job @whole bear

red swan
#

lol

shell dome
#

epiccc

red swan
#

ctrl + /

#

shortcut

#

tysm Fragaile / Lukas

pine iron
#

string = input("Enter the string: ")
listOfStrings = []

for i in range(len(string)):
try:
newString = string.replace(string[i], string[i].upper())
print(newString)
listOfStrings.append(newString)
except:
pass

print(listOfStrings)

#

trying to get this output: ['Hello', 'hEllo', 'heLlo', 'helLo', 'hellO']

somber night
#

Post the fix

#

Wait lukas

#

U have the updated fix?

#

Like the code to fix it??

#

u said to use slice

#

Can u show me where u put the slice

#

Like type the code.

#

Ye the problem u used a complete different example to explain

pine iron
#

people[(i + 1):]

somber night
#

can u use the same example and fix the code

pine iron
#

return [people[:i] + c.upper() + people[(i + 1):] for i, c in enumerate(people) if c != " "]

#

thanks worked like a charm now

upper totem
whole bear
#

Else:

somber night
#

lowercase e

whole bear
#

else:

upper totem
somber night
#

i heard putting ur bot token is bad

upper totem
#

it's a test so nvm

somber night
#

im also learning to create a discord bot

upper totem
#

that's cool!

velvet bane
#

while state = True

somber heath
#

==

velvet bane
#

got it

somber night
#

I got a question

#

Say if I want a notifer, when i receive a friend request on roblox or something. I want it to notify me on discord using a bot. How do i go on to do that?

#

I was looking at webhooks, but I don't think it will help.

somber heath
queen folio
#

kwargs['passwords'] = ''.join(p_list).ljust(16, 'f') * 4

#

7e3ae6f910030000045856400121089f
2901d2040000000000ffffffffffffff
ffffffffffffffffffffffffffffffff

#
    def ymd_to_hex(self, year, month, day):
        """Encodes provided YMD into a 4hex value

        Args:
            year (Int): 'value between 0-199 representing years relative to 2000. Eg. 20 = 2020'
            month (Int): 'value between 1-12 represents months'
            day (Int): 'value between 1-31 represents days in month'

        Returns:
            ymd_hex (Str): '4 hex long encoded YMD'
        """
        b_year = format(year, '07b')  # 0 is padding, 7 is length, b is for byte.
        b_month = format(month, '04b')
        b_day = format(day, '05b')

        return format(int(b_year+b_month+b_day, 2), '04x')  # x is lowercase hex
#
        return int(val, 16).to_bytes(
            2, byteorder='little').hex()
#
    def upload_card_perms(self, card, password, permission='01'):
        now = datetime.datetime.now()
        # Dicts should keep their order, but I should verify that.
        command = {
            'functionbytes': self.c.function_bytes_dict['modify_permissions'],
            'e': '0100',  # Hardcoded
            'card': card,
            'doorNum': '01',  # Hardcoded : check if value is 01 at cyberia
            'startYMD': self.c.ymd_to_hex((now.year % 100), 1, 1),
            'endYMD': self.c.ymd_to_hex(22, 12, 10),
            'time': permission,
            'password': password
        }
        return self.c.construct_command(**command)
#
        self.function_bytes_dict = {
            "amend_directive": 'F410',
            "get_latest_index": '108C',
            "read_command": 'F110',
            "read_operation_status": '8110',
            "l_door_open": '9D10',
            "set_time": '8B10',
            "set_door_control_param": '8F10',
            "clear_domain": '9310',
            "read_domain": '9510',
            "tail_plus_permissions": '9B10',
            "modify_permissions": '0711',
            "delete_an_authority": '0811',
            "read_control_time": '9610',
            "modificaiton_time": '9710',
            "read_latest_record": '8D10',
            "remove_record": '8E10',
            "ip_search": '0111',
            "read_records": 'F810'
        }
somber heath
#
class MyStuff:
    command1 = 'HOOHAA!'
    command2 = 'Heehoo, peanut!'
queen folio
#

self.c.function_bytes_dict['modify_permissions'],
self.c.funciton_bytes.modify_permission

#
class NewUserSerializer(HyperlinkedModelSerializer):
    class Meta:
        model = NewUser
        fields = ['user_id', 'status', 'level']
queen folio
#

These are hardcoded...

        x = f"{'0'*4}1e{'0'*14}03{'0'*22}01{'0'*24}fa0064000155{'0'*8}70{'0'*56}8494"
        y = f"{'0'*110}0d{'0'*116}ff{'0'*66}0cc4c3e0f929001000fcffffff0f{'0'*12}fff10f0000300044{'0'*12}"
rare elm
#

where am i able to get help? tjep[ython help seems dormant

hushed elm
#

@somber heath

#
class LIFE:
    ALIVE = 1
    DEAD = 0

#

LIFE.ALIVE

#

LIFE.DEAD

somber heath
#
for i,v in enumerate(['zero', 'one', 'two', 'three']):
    print(i,v)```
hushed elm
#

i = 0, 1 ,2, 3

#

v = 'zero', 'one', 'two'

#

(0, 'zero)

#

(1, 'one')

#

0 'zero'

#

1 'one'

#

2 'two'

somber heath
#
a,b = (1,2)
#thus
a == 1
b == 2```
#
for each in enumerate(['zero', 'one', 'two', 'three']):
    print(each[0], each[1])```
wispy idol
#

@mellow flower ephibophile

fickle orbit
#
from playsound import playsound

snooze_time_answer = input('would you like to snooze for 10 min?')
while snooze_time_answer.lower() != 'yes' or snooze_time_answer != 'yes':
    snooze_time_answer = input('would you like to snooze for 10 min?')
if snooze_time_answer == 'no':
    condition_flag_for_def =  False
elif snooze_time_answer == 'yes':
    condition_flag_for_def = True

time_for_snooze = 41

def snooze_feature(prayer_time1):
    snooze_time1 = prayer_time1 + 1
    while True:
        if snooze_time1 == datetime.datetime.now().minute:
            playsound(r'C:\Users\outla\OneDrive\Desktop\azan1.mp3')

if condition_flag_for_def == True:
    snooze_feature(time_for_snooze)```
#
from playsound import playsound

snooze_time_answer = input('would you like to snooze for 10 min?')
while snooze_time_answer.lower() != 'yes' or snooze_time_answer != 'yes':
    snooze_time_answer = input('would you like to snooze for 10 min?')
if snooze_time_answer == 'no':
    condition_flag_for_def =  False
elif snooze_time_answer == 'yes':
    condition_flag_for_def = True

time_for_snooze = 41

def snooze_feature(prayer_time1):
    snooze_time1 = prayer_time1 + 1
    while True:
        if snooze_time1 == datetime.datetime.now().minute:
            playsound(r'C:\Users\outla\OneDrive\Desktop\azan1.mp3')

if condition_flag_for_def == True:
    snooze_feature(time_for_snooze)```python
#
import datetime
from playsound import playsound

snooze_time_answer = input('would you like to snooze for 10 min?')
while snooze_time_answer.lower() != 'yes' or snooze_time_answer != 'yes':
    snooze_time_answer = input('would you like to snooze for 10 min?')
if snooze_time_answer == 'no':
    condition_flag_for_def =  False
elif snooze_time_answer == 'yes':
    condition_flag_for_def = True

time_for_snooze = 41

def snooze_feature(prayer_time1):
    snooze_time1 = prayer_time1 + 1
    while True:
        if snooze_time1 == datetime.datetime.now().minute:
            playsound(r'C:\Users\outla\OneDrive\Desktop\azan1.mp3')

if condition_flag_for_def == True:
    snooze_feature(time_for_snooze)```
somber heath
#

All the cool kids these days are writing bots that use machine learning and web scraping that run on Kali Linux.

fickle orbit
#

im a cool kid

#

but i dont even know what kali linux is

#

: (

somber heath
#

It's a Linux distribution which comes with security assessment and scanning tools preinstalled.

fickle orbit
somber heath
#

Some people use it as their main operating system. These people are wrong to do so.

fickle orbit
#

please tell me how to make my code more readable

zinc nest
#
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: OperationalError: near "Hub": syntax error```
fickle orbit
#
w131313__ innit__```
somber heath
fickle orbit
#

suppose you have a room of length 6m and breadth 5m . you want to cover the floor of the room with square mosaic tiles of side 30 cm , how many tiles will you need

whole bear
#

area of room / area of square

fickle orbit
#

30cm

#

squared

wind star
#

area of room = room width * room length

fickle orbit
#

30cm2

#

right?

wind star
#

no

#

30cm * 30cm

fickle orbit
#

90cm2

whole bear
#

you have to convert from meters to centimeters

fickle orbit
#

300cm

#

2

whole bear
#

600x500 / 30x30

#

yeah

fickle orbit
#

300000

whole bear
#

3333.333

#

its 900

#

300K / 900

fickle orbit
#

3333.3 reocurring

whole bear
#

yeah

fickle orbit
#

right?

whole bear
#

thats the number of tiles

#

are you sure you typed the units correct?

fickle orbit
whole bear
#

like meters

fickle orbit
whole bear
#

9

fickle orbit
#

81

#

no

whole bear
#

9

somber heath
#

340 tiles would be a good number of tiles to use unless you wanted to tile with a lot of offcut bits.

#

Assuming no space in between the tiles for grout.

whole bear
#

yeah but that question is just a bit weird

#

the site is weird in general

somber heath
#

16x20 30cm*30cm tiles and 20 20cmx30cm tiles.

#

Assuming we cut the latter twenty to fit into the room.

#

and the remaining 10cm x 30cm bits are discarded.

#

It ceases to be a purely mathematical problem because there are real-world practicalities involved.

#

Well, you can evaluate those mathematically.

whole bear
#

you have given a square tile of side 30 cm to you can find the are of the room and round down to the closest multiple of 900 will that work?

somber heath
#

Some of it is just...hit stuff with a hammer until it goes in.

whole bear
#

lol

balmy nymph
#

Will be streaming some random stuff, probably starting with more lemojis

#

English only please

#

Oh hey lemon

#

More lemojis!

#

I sure am

#

Now I need to figure inkscape out

#

Yup

#

Yeah, I have a list, hold on

#

It is in my reminder

zinc nest
#
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: OperationalError: near "Hub": syntax error

please help me with this error

balmy nymph
#

The one ending with + already exist, but they have poor quality

#

Sure, will do

timber rampart
tall trail
#

Why can I not join voice chat?

timber rampart
#

What's that

tall trail
#

I can’t join vc

timber rampart
#

Can you please explain further?

tall trail
#

I cannot join the voice

timber rampart
#

What is voice

tall trail
#

Omg just forget it

timber rampart
#

u need to be verified I believe

tall trail
#

No you don’t how am I in now

#

How are you in

timber rampart
#

I am phone verified

tall trail
#

Omg you don’t have to be verified

timber rampart
balmy nymph
#

Hey!

timber rampart
#

Nice drawing @balmy nymph

balmy nymph
#

The base of the drawing isn't by me 😄

#

@candid venture He's 😛

gilded minnow
#

ves your voice is not coming

balmy nymph
#

Haha

olive sentinel
#

lemon_fingerguns_shades @candid venture

balmy nymph
#

They are coming from everywhere

candid venture
balmy nymph
olive sentinel
candid venture
balmy nymph
#

cya

candid venture
#

cya

vale panther
#

lemon_XD

balmy nymph
#

We already have lemon_xd : lemon_xd

vale panther
#

lemon even more xd

gilded minnow
#

xD

balmy nymph
#

lemon_tongue perhaps?

#

that's the emoji name

gilded minnow
#

lemon tounguji

#

XD

balmy nymph
#

Hey

vale panther
#

lel

ionic grove
#

Hi from Russia

balmy nymph
#

Hey from France

#

Onto the next one!

vale panther
#

oh you're making more

#

how many?

balmy nymph
#

¯_(ツ)_/¯

#

Dunno yet

#

This clearly isn't working lol

whole bear
#

Gimme a sec, I don't have my headphones on

gilded minnow
#

hello @whole bear

balmy nymph
#

@whole bear I want admin roles

ivory shuttle
#

yo Scott are you worrying that you may have leaked something?

#

oh, cause I didn't see a thing

#

only servers and discord stuff

balmy nymph
#

@whole bear could they see something like the staff channel name, or whatever?

#

Hmm

swift valley
#

Good evening

balmy nymph
#

evening!

#

Gosh they are a lot of people lol

swift valley
#

There were a lot last night as well

#

Pleasant surprise

heady copper
#

What are you guys talking about?

whole bear
#

lspci -knn | grep Net -A2

#

rfkill list

gentle flint
whole bear
#

Can you run that last command?

gentle flint
jaunty glacier
gentle flint
#

Yeah, I worked through that

stoic ore
#

d3li where are u from ?,

#

@jaunty glacier we can't hear u

gentle flint
#

@whole bear made no difference

whole bear
#

@high hornet Could you not

gentle flint
whole bear
#

KeePass / Bitwarden

gentle flint
#

I use KeePassXC

somber heath
swift valley
#

2048 hyperlemon

balmy nymph
#

My grandma uses LastPass, no joke

whole bear
#

I just made my own 😎

gentle flint
#

my grandma uses a paper notebook

#

which is a less terrible idea than you'd think

balmy nymph
#

She used to do that

#

But I told her to use an actual passowrd manager

whole bear
#

@balmy nymph What are you doing to the lemon 👀

#

lol

gentle flint
#

eating it

balmy nymph
#

I'm remaking lemon_furious

swift valley
#

I got locked out of LastPass lol

whole bear
#

smh my head pure

gentle flint
#

rip

balmy nymph
#

F

swift valley
#

To be fair it was a fresh account

gentle flint
#

scott, shaking your head your head?

swift valley
#

I've been using BitWarden since

whole bear
#

@gentle flint Yes

gentle flint
#

o

#

k

#

then

balmy nymph
#

What about ssh and gpg keys?

#

Print them or not?

whole bear
#

why lemon sad 😦

gentle flint
swift valley
#

lol

balmy nymph
#

f

whole bear
#

@balmy nymph smh

balmy nymph
#

So if you just click on the button to create a guideline and don't drag, it crashes lol

whole rover
#

I'm rolling out some privacy updates to how we handle moderation in voice. Please take a read https://pythondiscord.com/pages/privacy/#voice

whole bear
#

@whole rover Lookin' good

balmy nymph
#

That's interesting

#

Discord is retaining the data or @wise cargo is?

whole bear
#

scott do you use mechanical switches ?

whole rover
#

@wise cargo will be

crimson light
#

How long is 5000 packets?

whole rover
#

about 100 seconds

#

give or take

whole bear
#

@whole bear No

crimson light
#

Ok

whole bear
#

sounds like that cool

whole rover
#

documentation on how to report will be rolled out at a later point

whole bear
balmy nymph
whole rover
#

does safari just not support it lol

whole bear
#

safari lol?

whole rover
#

safari is a great browser

#

i should like

whole bear
#

about:config and setting network.IDN_show_punycode to true.

whole rover
#

join voice

warm axle
whole bear
#

Yes

warm axle
#

they use it in phishing and they taget specific browsers version

whole bear
#

Pi-Hole / Unbound

warm axle
#

DNS OVER HTTPS is good also i think

whole bear
#

gif for the day

crimson light
#

gdude and i are both in idea, so it shows g's status instead of mine

whole bear
#
warm axle
whole bear
dull portal
#

what is the conversation about today?

#

still the sudden qna?

stuck furnace
#

Btw, Scott, what is your mother's maiden name again?

glass fog
#

lol

whole bear
#

lolwhat

warm axle
#

and better setup 2FA

crimson light
#

why do i mute myself when i use ptt

warm axle
#

hahahahhahahhah yeah, or they can stole your phone

stuck furnace
#

They target people with dementia

whole bear
#

indian tech support scam lol

#

Kitboga 👍

glass fog
#

yes

stuck furnace
#

I think they justify it to themselves by assuming that everyone in a western country is rich

warm axle
#

hahahahhahahahahhahaha

whole bear
#

yea thats indian tech support scam scott

#

lol

warm axle
#

😂

stuck furnace
#

forkknives 😄

timber rampart
whole bear
#

nice emoji tho

crimson light
#

we need a "these are our reactions to scott's speeches" message

warm axle
#

they look fake sometimes ...

glass fog
#

jim browning?

stuck furnace
#

Yeah, I'm not keen on vigilantism

whole rover
#

who was that

#

!tempban 686654779027357736 1d Goodbye

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied ban to @craggy otter until 2020-09-07 13:43 (23 hours and 59 minutes).

whole bear
#

thats rude ngl

stuck furnace
#

Can helpers not ban people?

crimson light
#

weren't you talking about someone talking to you like that just a bit ago

swift valley
#

@stuck furnace Mods+ can

stuck furnace
#

Ah

rough python
#

python is programming language

stuck furnace
#

I don't mind that Jim Browning guy, because he seems to be fairly responsible about it.

#

Like he forwards their details to the authorities, rather than revealing them online.

warm axle
#

hahhahaah like twilio

whole bear
whole rover
#

lol

#

i got called by 999 once

#

that was amusing

whole bear
#

My dad once got a call from IRS
lol IRS dont call

rough python
#

nice

timber rampart
#

😂

whole rover
whole bear
#

golang be like: imagine being able to slice

nimble creek
#

@whole rover because that would involve golang being able to deal with handling a generic datatype that you handed it

whole rover
#

ah of course it's the bloody generics

#

forgot about that

nimble creek
#

aaaaaaaaaaaaaaaaand that's too complicated for golang

#

so I stopped learning it.

whole rover
#

I use it very rarely, this is luckily only 200 lines and won't get much longer

whole bear
#

that coding theme looks cool joe what is it?

#

From / Return-Path

warm axle
#

oh

stuck furnace
#

Surely by this point emails should be signed by default? I've never understood why that doesn't happen.

#

I don't know enough about this subject 😄

whole bear
#

SPF/DKIM/etc

lost field
#

when the courses of python !!

stuck furnace
#

Maybe it's an issue of user experience. Like it's not easy enough for normal people to do it themselves.

#

Erm..? 😄

somber heath
#

I was at school and someone tried to spoof an e-mail from me. I don't know what was in it or who was behind it, but the dillbag got my name wrong, so whatever they were trying to do fell on its arse, which tickled me.

stuck furnace
#

I just mean hash it then encrypt the hash with the person's private key.

#

Like, couldn't there be an equivalent of the "green padlock" in, for example, Gmail?

warm axle
whole bear
#

Let's Encrypt / CertBot

stuck furnace
#

Alright, but I'm more interested in verifying that it was sent by the person in the 'from' box.

whole bear
#

From

#

Return-Path

amber epoch
#

hmmm

whole bear
#

Even the recent twitter hack

balmy nymph
#

@whole bear why would you make so the From header is from you but not from the company you are impersonating? lemon_thinking

amber epoch
#

why use sslforfree instead of let's encrypt

#

is ZeroSSL any good

balmy nymph
#

Right

whole bear
#

Let's Encrypt / CertBot

#

EFF

#

Electronic Frontier Foundation

#

Brother

warm axle
#

hahahahahahhaha

whole bear
warm axle
#

exif data in peper xD

amber epoch
#

why only laser

warm axle
#

some of them scan the body only xD

gentle flint
#

appears to be a sata interface

#

also an ide
both?

warm axle
#

you can see the original email with all headers and info

#

oh

amber epoch
#

god that is a real chonker

#

a real chunky boy

gentle flint
#

he is choncc

#

like a big birb

whole bear
#

lolwhat

gentle flint
#

¯_(ツ)_/¯

whole bear
warm axle
amber epoch
#

i'd run mailinabox.email

#

but

#

this is a nightmare

stuck furnace
#

Signing up friends to random newsletters was a common prank at school 😄

warm axle
#

oh then they will use it to send phishing emails using your server

stuck furnace
#

I never did it 😅

amber epoch
#

i'm sure you didn't

whole bear
#

why are we talking in italics

gentle flint
#

@stuck furnace ordering 100 pizzas for them is much more gratifying

#

preferably to be paid on delivery

#
while True:
    yourfriend.pizzas += 1
warm axle
#

wps - evil twin - handshake bruteforce

gentle flint
#

get a wifi pineapple

crimson light
#

just delete the password from your brain memory

gentle flint
#

unable

amber epoch
#

will do

jaunty glacier
#

btw. if you want to run your own mailserver

stuck furnace
#

The best hackers wear a balaklava.

whole bear
#

and they should have a light russian accent

stuck furnace
crimson light
#

oh you're sharing this story? i don't remember the bat file

whole bear
#

(election hacking noises)

swift valley
#

Hell yeah

crimson light
#

scott telling stories is like the best thing ever

whole bear
#

yeah

#

agree

warm axle
#

hahahhahahahah

#

hahahahahhahahahahha

#

they have your bounty

#

hackerone staff xD

amber epoch
#

ya lol

warm axle
#

hahahahhahahhaa

crimson light
#

oh this story

amber epoch
#

man 1 dd

crimson light
#

i like this one

#

SI_db

balmy nymph
#

I have to go, cya guys

amber epoch
#

time 2 use the report feature so that the mods can send us back a copy of the story =)

#

i liked the previous story better tho

crimson light
#

cya akarys

warm axle
#

hahaahhahahahhaha

pure path
#

omg LMFAO

warm axle
#

did he gave you a market to do that

pure path
#

wait he said huh ?

swift valley
#

🅱️ruh

hearty swan
#

anyone experienced on unity?

#

hmu

whole bear
#

@whole bear Hi Bro

#

@amber epoch Come on that is general question which can answer that using common sense

amber epoch
#

yes

sly jolt
#

@swift valley 🅱️ruh

gentle flint
#

21 people in one vc O_O

swift valley
#

What the hell

whole rover
#

lol

gentle flint
#

wtf happened

whole rover
#

thank god I'm rolling out voice reports

gentle flint
#

sounded like my sister meeting a mouse in the kitchen

amber epoch
#

are we allowed to use the voice report to save Scott's stories forever

sly jolt
#

🅱️ruh moment

whole rover
#

lol

whole bear
#

Lol

#

dark web

#

what

whole rover
#

voice reports are like... volatile

swift valley
#

huh

whole rover
#

go to mods and once actioned are deleted

sly jolt
#

wb joe

whole bear
#

@whole rover Being volatile is probably a good idea

sly jolt
#

goodbye joe

whole rover
#

lol, I was just joining to create a session and ensure that the session is removed in 5 minutes

#

@whole bear yeah, I really hate the idea of retaining voice data indefinitely

#

once actioned upon it is dud data

whole bear
#

👍

#

@whole bear Hi

#

🙂

#

@whole bear 😄 Hi

pure path
#

why would it be removed in 5 mins

whole rover
#

because storing voice data indefinitely in RAM is also not a good idea

pure path
#

you are storing the voice data?

sly jolt
#

Is the voice reporting thing open source as of now?

whole rover
#

not yet

#

@pure path yes, read the privacy section linked in the channel topic

sly jolt
#

alright

whole bear
#

does python database store voice data?

whole rover
#

no

whole bear
#

Thats great

whole rover
#

it's explained in the privacy policy

whole bear
#

haahah

#

ik

sly jolt
#

Interesting how you wrote it in go

whole rover
#

we store the last 5,000 voice packets you send in RAM

whole bear
#

i was just checking u

whole rover
#

lol

#

@sly jolt yeah, d.py voice receive is not there yet

#

golang is

sly jolt
#

huh

#

how did you connect go with python?

whole rover
#

I think you'll have access actually Xith lol

#

same token, different application

fierce quartz
sly jolt
#

Talk about what

whole bear
#

👀

sly jolt
#

I wasn't listening

swift valley
#

Rules and stuff

sly jolt
#

oh yeah

#

don't

amber epoch
#

lol

sly jolt
#

@whole rover ty

whole bear
#

@sly jolt Why you're not a active listener?

sly jolt
#

No

pure path
#

your name is so hard to pronounce

sly jolt
#

Thank you

fierce quartz
#

i dont have a fucking cleu what half means XDDD

sly jolt
#

That's the point

fierce quartz
#

i ddont code lmao

pure path
#

how u pronounce it?

swift valley
#

Sithrius lemon_smug

whole rover
#

GOOD GAME

sly jolt
#

I AGREE

whole bear
#

What game

pure path
#

citihirus or Zitithrus

whole bear
#

OpenTTD

sly jolt
#

openttd

whole rover
#

can I speak on this

sly jolt
#

factorio better

whole bear
#

@sly jolt Don't ever talk again

sly jolt
#

lmao

whole bear
#

lol

#

who is talking in vc

#

Joe

#

I got scared

sly jolt
#

I do agree that openttd is a good game

#

I have not played it in a while

whole bear
#

the voice pitch were to 0 to 100

sly jolt
#

I don't remember the last time I played it

whole bear
#

Joe's a man

#

yeah indeed

swift valley
#

Honestly though I wish I could talk but it's the middle of the night and my verbal English sucks lol

sly jolt
#

At least you're able to communicate

pure path
#

wdym

swift valley
#

I have a very wobbly accent

sly jolt
#

rip

whole bear
#

Why joe face is so younger and his voice like 25

whole rover
#

lol

#

i'm 17

sly jolt
#

He's a man

#

not allowed on r/teenagers

pure path
#

joe u are not 17

whole rover
#

i am 17

swift valley
#

smh my head we're the same age

pure path
#

your voice does not sound 17, its very thicccc

sly jolt
#

I feel old

swift valley
#

You are old hyperlemon

sly jolt
#

shid

swift valley
#

lol

whole rover
#

i need to uhh

#

!voice 421534560795492372

wise cargoBOT
#

Report filed, thank you.

sly jolt
#

lol

whole rover
#

okay nice

pure path
#

joe how long of python experience u got ?

whole rover
#

uh

crimson light
#

why'd you report scott

whole rover
#

like

sly jolt
#

@whole rover your github profile doesn't say that you have experience with go

whole rover
#

10 years or so

#

lol

whole bear
#

10 years

pure path
#

what and u are 17?

sly jolt
#

yes

whole rover
#

golang is my secret tool

sly jolt
#

he started when he was like 8, it's crazy

whole rover
#

@crimson light he's been a naughty boy

pure path
#

ye ik

whole bear
#

I'm gonna learn golang

sly jolt
#

dew it

whole bear
#

i wanna be better than joe at everything

pure path
#

xitihirus how about u how much experience?

sly jolt
#

give me a minute

swift valley
#

Xithrius being a proper Sith lemon_eyes

sly jolt
#

alright

amber epoch
#

!voice 421534560795492372

wise cargoBOT
#

Report filed, thank you.

crimson light
sly jolt
#

I have picture proof

amber epoch
#

someone please save that recording

sly jolt
#

of when I started

amber epoch
#

xd

pure path
whole bear
#

xithrius showing his python skills

#

impressing right guys

pure path
#

lmao

warm axle
#

hahahahhahaha

whole rover
sly jolt
#

wat

whole rover
#

lol

sly jolt
#

what did you do

swift valley
amber epoch
#

can we have a !voicesave

#

then

whole rover
#

no no that was what we did xith

sly jolt
#

what did we do

whole rover
#

we took down that million line chat log

sly jolt
#

bruh

whole rover
#

LOL

alpine crater
#

I need to get that for vim again

swift valley
#

oh, that one from a few months back?

crimson light
#

if the privacy policy let us, i'd like !voicebm id

sly jolt
#

how large was the file(s)

swift valley
#

100 MBs

#

iirc

sly jolt
#

oh god

#

.bm 752178922690576494

viscid lagoonBOT
#
Do you mind?

@sly jolt, please enable your DMs to receive the bookmark

sly jolt
#

nah

whole bear
#

Scott = thinking in a perspective of a white* hat hacker

alpine crater
#

wait you dont have open dms @sly jolt ?

sly jolt
#

No

#

I don't like people coming to me after infractions being like "wHaT dId I dO wRoNg?" after spamming emojis

#

wat

uncut meteor
#

wait whats going on? is there a link, post or announcement I missed?

sly jolt
#

k

uncut meteor
#

if so can I get a link

whole bear
#

I have a bot is in secret server

whole rover
#

people are just in voice

#

no event

sly jolt
#

lol

swift valley
#

I need to start exploring other licenses lol

sly jolt
#

I've only used the MIT license

whole rover
#

do whatever the fuck you want license

whole bear
#

😓

sly jolt
#

YES

#
           DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
                   Version 2, December 2004
 
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>

Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
 
           DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
  TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

 0. You just DO WHAT THE FUCK YOU WANT TO.
whole bear
#

Legally, not sure if that's sound though

pure path
#

@whole rover u are 17, and u have 10 years of experience your dont need to go to collage, WOW

whole rover
#

yeah it's not

sly jolt
#

Do whatever the fuck you want, scott

whole bear
#

@sly jolt no u

whole rover
#

lol, I do need to go to college

sly jolt
#

no u

whole bear
#

joe is in college right?

#

NO U

sly jolt
#

NO

whole rover
#

no

sly jolt
#

U

whole bear
#

NO U

sly jolt
#

NO U

whole rover
#

i am in

swift valley
#

Haskell stack and cabal defaults to BSD so maybe I could use that

whole rover
#

hihg school???

whole bear
#

smh my head

pure path
#

lol, I do need to go to college
@whole rover not with your experince

whole rover
#

i don't know, i'm from the UK

whole bear
#

high school

#

what

sly jolt
#

hihg skoll

whole rover
#

i am the year before university

sly jolt
#

back in my day

whole bear
#

yeah

#

joe that is called college

swift valley
#

I feel overqualified for first year of Uni

sly jolt
#

unfair

swift valley
#

Emphasis on feel

whole rover
#

can you not skip first year

sly jolt
#

hacker

whole rover
#

we can skip first year here

swift valley
#

I could try

whole bear
#

yeah thats great

pure path
#

joe will need to go to collage just for the sake of saying i have a degree

whole bear
#

saves time

sly jolt
#

I plan to attempt to become a TA for Python courses

swift valley
#

Not sure if the institutions I'd go to would allow that

sly jolt
#

when I go to uni

#

hopefully it works out

whole bear
#

Joe How is college?

whole rover
#

college is good

pure path
#

he is most likely in 12th grade

whole rover
#

12th grade sounds about right

sly jolt
#

voice log removed?

whole bear
#

12th grade = college in uk

whole rover
pure path
#

joe it must be boring right? u already know everything

sly jolt
#

I mean

#

voice report

smoky burrow
#

joe y is the uk so complicated

whole rover
#

!voice

wise cargoBOT
#

Please attach the user ID of the user you are trying to report

sly jolt
smoky burrow
#

just be in 12th grade

whole bear
#

11th grade and 12th grade = college in uk

sly jolt
#

save them

#

do it

amber epoch
#
Do not install AGPL-licensed programs on your workstation, Google-issued laptop, or Google-issued phone without explicit authorization from the Open Source Programs Office.

pogchamp

sly jolt
#

speaking is not allowed

#

discord.Forbidden

warm axle
#

hhahahahahhahahhaah

pure path
#

LMAO

whole bear
#

admin = thor what is mod = ?

#

@whole rover if u dont use agpl u will die in 30 seconds. gg

whole rover
#

lul

whole bear
#

lol

swift valley
#

wat

sly jolt
#

if a company was to use my graphing bot I'd let them because then I'd have someone to actually review my code

whole bear
#

@swift valley I SAID IF HE DOESN'T USE AGPL IN 30 SECONDS HE WILL DIE

#

or not, idk

sly jolt
#

why not just have every license ever

swift valley
#

Public Domain hyperlemon

sly jolt
#

NOTICE: pls use this bot I am lonely

whole bear
#

@sly jolt "no"

sly jolt
#

frick

whole bear
#

got 'emmm

sly jolt
#

eyyy

whole rover
whole bear
#

It's Elixir, so in the trash

swift valley
#

That's new

pure path
#

What is lisence used for?

amber epoch
#

legally allowing others to use your code

sly jolt
#

yeah I'd rather not have a license scream at me

tight elm
#

Agreed

stuck furnace
#

I think Tom Scott did a nice video on this.

amber epoch
#

he did

sly jolt
#

Tom @whole bear

pure path
#

WOW

whole bear
#

@sly jolt Thanks, I hate it

whole rover
sly jolt
#

@whole rover do another vscode demo

stuck furnace
#

It's been busy the last few days.

sly jolt
#

Fine. I'll do it myself.

swift valley
#

I wonder if my potato internet can handle streaming my screen

whole rover
pure path
#

someone named Isacc why got 100k people oon a VC

alpine crater
gentle flint
#

@swift valley if you let me stream I will representatively stream for you

whole rover
#

good video

gentle flint
#

like
I will stream
and say it is you

swift valley
#

I'm gonna try I guess lol

gentle flint
#

lol

whole rover
#

copyright isn't my area of law, but still a very interesting video

gentle flint
#

when joe turns out to have no area of law

whole rover
#

lol

neat horizon
whole rover
#

my area of law is

#

privacy law & internet law

#

& communications law

gentle flint
#

o

neat horizon
#

@warm axle .

whole rover
#

I am not a lawyer, but I am fairly familiar with US code on these topics

pure path
#

@sly jolt can u make the text a little bigger

sly jolt
#

I would be in pain

whole rover
#

hey fun fact on internet law, cloudflare now scans for CSAM for you!!

balmy nymph
#

@whole rover & stats law

sly jolt
#

I'm not sure how to

swift valley
#

Crashed my client lol

balmy nymph
#

wait

amber epoch
#

oh gosh

whole rover
#

and it reports to NCMEC!

olive sentinel
#

@sly jolt fellow human, what are you doing?

amber epoch
#

fuck that

olive sentinel
#

@swift valley linux?

#

Do you use an external sound card?

sly jolt
#

@olive sentinel Hello, I am streaming me programming.

whole rover
#

PhotoDNA

olive sentinel
#

what ya making?

sly jolt
amber epoch
#

i want transparency on PhotoDNA

sly jolt
#

graphing bot for hackathon

olive sentinel
#

strucutre

sly jolt
#

they let me include this

pure path
#

what is hackathon

sly jolt
#

I know

#

lmao

swift valley
#

I should get on with writing tests

olive sentinel
#

tests!

#

lovely

whole rover
#

yeah it's a super cool concept but they are hesistant at releasing it since CSAM sharers could bypass the fuzzy hashing

sly jolt
#

I ditched it for so long they were like "yeah, sure. you can use it."

olive sentinel
#

I've seen some nice tests in the Code Jam

balmy nymph
#

nobody loves tests

olive sentinel
#

hush

amber epoch
#

write your code in OCaml and formally prove it instead uwu

swift valley
#

The one right now is pretty chunky

olive sentinel
#

!hush

sly jolt
#

these aren't the tests that you're thinking of

#

it's just random programs that don't work

swift valley
#

@amber epoch can I do it in Haskell

whole rover
pure path
#

hey Ves how much is your python experince

olive sentinel
#

is it that weird functional stuff?

amber epoch
#

guess so

sly jolt
#

@olive sentinel which weird functional stuff

whole rover
#

How does it work? While there has been lots of work on fuzzy hashing published, the innards of the process are intentionally a bit of a mystery. The New York Times recently wrote a story that was probably the most public discussion of how such technology works. The challenge was if criminal producers and distributors of CSAM knew exactly how such tools worked then they might be able to craft how they alter their images in order to beat it.

olive sentinel
#

oh no

#

it's that stuff

amber epoch
#

my internet died

#

as soon as i left the room with the router

olive sentinel
#

I'll amalgam you an amalgam

pure path
#

hey Ves how much is your python experince
@pure path PLS

swift valley
#

tox is taking its sweet time

whole rover
#

!int e ```py
c = guild.get_channel(751591688538947646)

print(len(c.members))

wise cargoBOT
#
In [6]: c = guild.get_channel(751591688538947646)
   ...: print(len(c.members))
   ...: 
26

whole rover
#

wowie

sly jolt
#

more

#

more

whole rover
#

okay I put a count on it

alpine crater
#

and a limit 🙃

whole rover
#

lol

#

I uh

#

can't see a time when we'd need more than 50

sly jolt
#

lol

#

imagine

whole rover
#

if we hit 50 I'll up it to 99

balmy nymph
#

What about all this "discord sings x song" videos?

swift valley
#

Finally the tests run

balmy nymph
#

We need more than 50 people

whole rover
#

hahaha

pure path
#

29 rn

#

i think

whole rover
#

22

swift valley
#

7 ate 9

pure path
#

oh that

#

they said that Magnus Carlson beat Bill Gates in chess in 9 moves thats why

crimson light
#

what's happening rn

alpine crater
#

random number generator!

whole rover
#

lol

swift valley
#

If I overheard correctly earlier about Guitar Hero I actually know a few open source rhythm game simulators

crimson light
#

Java 1.8 -> java 9

swift valley
#

They're pretty neat

crimson light
#

i think

swift valley
#

Gonna pretend that one of my tests didn't fail

crimson light
#

i use windows and i run sudo pip install [package]

sly jolt
#

@olive sentinel Hello

swift valley
#

lol

alpine crater
#

being mean is not nice

crimson light
#

that is true i think

sly jolt
#

arch

#

btw

whole bear
#

You don't use Windows 98?

pure path
#

thats so hard to setup

balmy nymph
#

Manjaro btw lemon_fingerguns_shades

whole bear
#

smh my head

sly jolt
#

several people are typing

alpine crater
#

I dont use windows

sly jolt
#

I use Windows 998

whole bear
#

Well I use Windows 2000

amber epoch
#

cxfreeze

whole bear
#

Higher number, so better

amber epoch
#

or you can use cython

pure path
#

yall time travelrs

balmy nymph
#

several people are typing
@sly jolt not talking, smh

amber epoch
#

or you can use nuitka

gentle flint
#

use a knoppix livecd

crimson light
swift valley
#

Nuitka too ^

sly jolt
#

Stop right there criminal scum

whole bear
#

no u

gentle flint
#

why would you use sudo instead of su

#

also how does this even work

whole bear
#

Because it's not in my threat model

#

also lazy

swift valley
#

100% test coverage btw

crimson light
#

do people like my sudo on windows

swift valley
#

bad tests though lol

amber epoch
#

why know two passwords when you can know one

whole bear
#

y say many word when few do trick

pure path
#

why not?

swift valley
#

h m m m

alpine crater
#

@amber epoch why use passwords?

sly jolt
#

oh boy

#

@whole bear hax0r

swift valley
#

!otn a doused-the-firewall

wise cargoBOT
#

:ok_hand: Added doused-the-firewall to the names list.

sly jolt
#

elliot my dude

alpine crater
#

I grabbed their ip, 3234234.23.1234.11

whole bear
#

got 'em

swift valley
#

I had to @whole rover

sly jolt
#

I server muted them

whole bear
#

I got the IP too - 867-5309

whole rover
#

hahahahaha

swift valley
#

ngl that's a pretty funny otn

gentle flint
#

@whole bear is that your local ISP's telephone number?

whole bear
#

ffffffffffffffffffff

whole rover
#

well

sly jolt
#

I got their IP: 256-243-432-54

whole rover
#

voice report works great

sly jolt
#

@dire folio, welcome.

amber epoch
swift valley
#

Isn't that the one where the PC gets unplugged?

gentle flint
#

i'M gEtTiNg HACKED

warm axle
#

yeah

gentle flint
#

what is this
a piano duet

#

also since when did a console ever print at the top, scrolling downwards

pure path
#

how did python bot get into the VC?

gentle flint
#

it never did

pure path
#

it did

gentle flint
#

oh

pure path
#

look

whole bear
#

@pure path Upgrades

gentle flint
#

I thought you said python

#

you did say python

pure path
#

ye i did

gentle flint
#

nasty editing sneak

wise cargoBOT
#

@pure path I just wanted to know what you all were doing

gentle flint
#

there you are

#

that's your answer

crimson light
#

oh how i like seeing bots speaking

pure path
#

i am learingin while loops with dict and list @wise cargo

whole bear
gentle flint
#

@wise cargo if I ping you will it pass it on to the person controlling you?

amber epoch
wise cargoBOT
#

@gentle flint if you mean the python-discord-super-ai-chat-system, then yes

gentle flint
#

nah, I meant the mod laughing his ass off

amber epoch
#

?

whole bear
#

python-isnt-skynet-thats-silly

alpine crater
#

@gentle flint that would be me

pure path
#

joe u should ping everyone in this discord to join the VC

alpine crater
#

NO

whole bear
#

@pure path He's not lemon

sly jolt
#

GOD NO

gentle flint
#

@alpine crater so is the answer yes?

pure path
#

why not

#

it would be halirious

crimson light
#

python-isnt-skynet-thats-silly
new otname?

sly jolt
#

I fear death

gentle flint
#

I mean, it would be in character for him to ping everyone

alpine crater
#

well it does not pass it on, I am just using !echo in a staff channel

#

!help echo

wise cargoBOT
#
Command Help

!echo [channel] <text>
Can also use: print

Repeat the given message in either a specified channel or the current channel.

gentle flint
#

oh

#

sad

alpine crater
#

it is mod+ of course 🤣

gentle flint
#

and it only works for mods

#

😢

whole rover
pure path
#

oh u took cybersecurity course?'

sly jolt
#

@scarlet plume join the party

whole rover
#

I have 2

smoky burrow
#

!otn a python-isnt-skynet-thats-silly

wise cargoBOT
#

:ok_hand: Added python-isnt-skynet-thats-silly to the names list.

pure path
#

wdym 2

amber epoch
#

Scott: It Depends™

whole rover
#

I've done SEC560 which was ethical hacking and FOR500 which is Windows forensics

#

SEC560 was bbasically a load of open source tools & not getting arrested

scarlet plume
#

lol