#voice-chat-text-0
1 messages · Page 624 of 1
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)
yeah it is
can you please explain how this works?
can you guys help me please
the above code
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)
how to capitalize only the first occurance in the string?
like hello => Hello ?
@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
doesn't work completely
wth
whats wrong?
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)
hellO should return helLo
['Hello', 'hEllo', 'heLlo', 'heLlo', 'hellO']
in the 2nd and 3rd index prints same output
heLlo and should be helLo
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
,-,
thx f1re
which one?
pass do nothing. but continue skip remaining statements in the loop
That is epic
like:
for i in 'hello':
if(i == 'e'):
print('pass executed')
pass
print(i)
yeah i got it
👍
🙂 nice job @whole bear
lol
epiccc
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']
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
people[(i + 1):]
can u use the same example and fix the code
return [people[:i] + c.upper() + people[(i + 1):] for i, c in enumerate(people) if c != " "]
thanks worked like a charm now
Else:
lowercase e
else:
i heard putting ur bot token is bad
im also learning to create a discord bot
while state = True
==
got it
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.
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'
}
class MyStuff:
command1 = 'HOOHAA!'
command2 = 'Heehoo, peanut!'
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']
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}"
where am i able to get help? tjep[ython help seems dormant
Some things that happened during lockdown.
Episode 2 - https://youtu.be/P1FUMdHU29c
Limited time! Go to https://NordVPN.com/internethistorian or use code INTERNETHISTORIAN to get 70% off a 3 year plan plus 1 additional month free.
Twitter: @nethistorian
P...
@somber heath
class LIFE:
ALIVE = 1
DEAD = 0
LIFE.ALIVE
LIFE.DEAD
for i,v in enumerate(['zero', 'one', 'two', 'three']):
print(i,v)```
i = 0, 1 ,2, 3
v = 'zero', 'one', 'two'
(0, 'zero)
(1, 'one')
0 'zero'
1 'one'
2 'two'
a,b = (1,2)
#thus
a == 1
b == 2```
for each in enumerate(['zero', 'one', 'two', 'three']):
print(each[0], each[1])```
@mellow flower ephibophile
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)```
All the cool kids these days are writing bots that use machine learning and web scraping that run on Kali Linux.
It's a Linux distribution which comes with security assessment and scanning tools preinstalled.
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
Some people use it as their main operating system. These people are wrong to do so.
please tell me how to make my code more readable
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: OperationalError: near "Hub": syntax error```
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
w131313__ innit__```
@fickle orbit https://docs.python.org/3/download.html
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
area of room / area of square
area of room = room width * room length
90cm2
you have to convert from meters to centimeters
300000
3333.3 reocurring
yeah
right?
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
BRILLIANT PROBLEM
trigonometry problems
trigonometry problems with solutions
trigonometry problems easy method
tr...
like meters
9
9
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.
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.
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?
Some of it is just...hit stuff with a hammer until it goes in.
lol
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
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: OperationalError: near "Hub": syntax error
please help me with this error
Why can I not join voice chat?
What's that
I can’t join vc
Can you please explain further?
I cannot join the voice
What is voice
Omg just forget it
u need to be verified I believe
I am phone verified
Omg you don’t have to be verified

Hey!
Nice drawing @balmy nymph
ves your voice is not coming
@candid venture
They are coming from everywhere








cya
cya
We already have lemon_xd : 
lemon even more xd
xD
Hey
lel
Hi from Russia
Gimme a sec, I don't have my headphones on
hello @whole bear
@whole bear I want admin roles
yo Scott are you worrying that you may have leaked something?
oh, cause I didn't see a thing
only servers and discord stuff
Good evening
What are you guys talking about?
Can you run that last command?
Yeah, I worked through that
@whole bear made no difference
@high hornet Could you not
KeePass / Bitwarden
I use KeePassXC
2048 
for the guy asking about steam
https://steamcommunity.com/discussions/forum/1/617336568069302754/
My grandma uses LastPass, no joke
I just made my own 😎
eating it
I'm remaking 
I got locked out of LastPass lol
smh my head pure
rip
F
To be fair it was a fresh account
scott, shaking your head your head?
I've been using BitWarden since
@gentle flint Yes
why lemon sad 😦
and here is your daily meme
lol
@balmy nymph smh
So if you just click on the button to create a guideline and don't drag, it crashes lol
I'm rolling out some privacy updates to how we handle moderation in voice. Please take a read https://pythondiscord.com/pages/privacy/#voice
We're a large, friendly community focused around the Python programming language. Our community is open to those who wish to learn the language, as well as those looking to help others.
@whole rover Lookin' good
scott do you use mechanical switches ?
@wise cargo will be
How long is 5000 packets?
@whole bear No
Ok
sounds like that cool
documentation on how to report will be rolled out at a later point
Unh?
does safari just not support it lol
safari lol?
about:config and setting network.IDN_show_punycode to true.
join voice
Yes
they use it in phishing and they taget specific browsers version
Pi-Hole / Unbound
DNS OVER HTTPS is good also i think
gdude and i are both in idea, so it shows g's status instead of mine
Btw, Scott, what is your mother's maiden name again?
lol
lolwhat
and better setup 2FA
why do i mute myself when i use ptt
hahahahhahahhah yeah, or they can stole your phone
They target people with dementia
yes
I think they justify it to themselves by assuming that everyone in a western country is rich
hahahahhahahahahhahaha
😂
forkknives 😄

nice emoji tho
we need a "these are our reactions to scott's speeches" message
they look fake sometimes ...
jim browning?
Yeah, I'm not keen on vigilantism
:incoming_envelope: :ok_hand: applied ban to @craggy otter until 2020-09-07 13:43 (23 hours and 59 minutes).
thats rude ngl
Can helpers not ban people?
weren't you talking about someone talking to you like that just a bit ago
@stuck furnace Mods+ can
Ah
python is programming language
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.
hahhahaah like twilio
https://www.youtube.com/watch?v=fHhNWAKw0bY
this is a good example for that
Watch what happens when journalist Kevin Roose challenges hackers to hack him.
CREDIT: FUSION MEDIA NETWORK 2015
My dad once got a call from IRS
lol IRS dont call
nice
😂
lol, why does golang have no slice contains method
golang be like: imagine being able to slice
@whole rover because that would involve golang being able to deal with handling a generic datatype that you handed it
I use it very rarely, this is luckily only 200 lines and won't get much longer
oh
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 😄
SPF/DKIM/etc
when the courses of python !!
Maybe it's an issue of user experience. Like it's not easy enough for normal people to do it themselves.
Erm..? 😄
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.
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?
Free SSL certificates issued in less than a minute, for one or multiple domains, supporting wildcards and ACME with tutorials.
Let's Encrypt / CertBot
Alright, but I'm more interested in verifying that it was sent by the person in the 'from' box.
hmmm
Even the recent twitter hack
@whole bear why would you make so the From header is from you but not from the company you are impersonating? 
Right
Let's Encrypt / CertBot
EFF
Electronic Frontier Foundation
Brother
Warning (Added 2015) Some of the documents that we previously received through FOIA suggested that all major manufacturers of color laser printers entered a secret agreement with governments to ensure that the output of those printers is forensically traceable. Although we sti...
hahahahahahhaha
exif data in peper xD
why only laser
some of them scan the body only xD
Large printers can contain hard drives. Lets see...
appears to be a sata interface
also an ide
both?
lolwhat
¯_(ツ)_/¯
In-depth security news and investigation
I set up a mail server from scratch. Use Thunderbird, mutt or any other mail client to log in securely, just requires a domain name and a VPS/server. I use this script to help me:
https://github.com/lukesmithxyz/emailwiz
Not only will it automatically set up a Postfix and Dov...
Signing up friends to random newsletters was a common prank at school 😄
oh then they will use it to send phishing emails using your server
I never did it 😅
i'm sure you didn't
why are we talking in italics
@stuck furnace ordering 100 pizzas for them is much more gratifying
preferably to be paid on delivery
while True:
yourfriend.pizzas += 1
wps - evil twin - handshake bruteforce
get a wifi pineapple
just delete the password from your brain memory
unable
will do
The best hackers wear a balaklava.
and they should have a light russian accent
oh you're sharing this story? i don't remember the bat file
(election hacking noises)
Hell yeah
scott telling stories is like the best thing ever
ya lol
hahahahhahahhaa
oh this story
man 1 dd
I have to go, cya guys
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
cya akarys
hahaahhahahahhaha
omg LMFAO
did he gave you a market to do that
wait he said huh ?
🅱️ruh
@whole bear Hi Bro
@amber epoch Come on that is general question which can answer that using common sense
yes
@swift valley 🅱️ruh
21 people in one vc O_O
What the hell
lol
wtf happened
thank god I'm rolling out voice reports
sounded like my sister meeting a mouse in the kitchen
are we allowed to use the voice report to save Scott's stories forever
🅱️ruh moment
lol
voice reports are like... volatile
huh
go to mods and once actioned are deleted
wb joe
@whole rover Being volatile is probably a good idea
goodbye joe
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
why would it be removed in 5 mins
because storing voice data indefinitely in RAM is also not a good idea
you are storing the voice data?
Is the voice reporting thing open source as of now?
alright
does python database store voice data?
no
Thats great
it's explained in the privacy policy
Interesting how you wrote it in go
we store the last 5,000 voice packets you send in RAM
i was just checking u
Risitas !
#RTX3090 #RTX3080 #RTX3070
SUBSCRIBE:
Subscribe to My Youtube Channel ►
https://www.youtube.com/user/aroy3639
Support me on Patreon ►
https://www.patreon.com/gamerinvoid
Follow Me:
*FOLLOW ME ON SOCIAL MEDIA! *
👍 MY TWITTER (@GamerInVoid) ► https://twitter.com...
Talk about what
👀
I wasn't listening
Rules and stuff
lol
@whole rover ty
@sly jolt Why you're not a active listener?
No
your name is so hard to pronounce
Thank you
i dont have a fucking cleu what half means XDDD
That's the point
i ddont code lmao
how u pronounce it?
Sithrius 
GOOD GAME
I AGREE
What game
citihirus or Zitithrus
OpenTTD
openttd
can I speak on this
factorio better
@sly jolt Don't ever talk again
lmao
the voice pitch were to 0 to 100
I don't remember the last time I played it
Honestly though I wish I could talk but it's the middle of the night and my verbal English sucks lol
At least you're able to communicate
wdym
I have a very wobbly accent
rip
Why joe face is so younger and his voice like 25
joe u are not 17
i am 17
smh my head we're the same age
your voice does not sound 17, its very thicccc
I feel old
You are old 
shid
lol
Report filed, thank you.
lol
okay nice
joe how long of python experience u got ?
uh
why'd you report scott
like
@whole rover your github profile doesn't say that you have experience with go
10 years
what and u are 17?
yes
golang is my secret tool
he started when he was like 8, it's crazy
@crimson light he's been a naughty boy
ye ik
I'm gonna learn golang
dew it
i wanna be better than joe at everything
xitihirus how about u how much experience?
give me a minute
Xithrius being a proper Sith 
alright
!voice 421534560795492372
Report filed, thank you.
I have picture proof
someone please save that recording
of when I started
xd
lmao
hahahahhahaha
fwiw, don't try break discord tos because we'll pursue it
wat
lol
what did you do
Had to join the rich presence club 
no no that was what we did xith
what did we do
we took down that million line chat log
bruh
LOL
I need to get that for vim again
oh, that one from a few months back?
if the privacy policy let us, i'd like !voicebm id
how large was the file(s)
@sly jolt, please enable your DMs to receive the bookmark
nah
Scott = thinking in a perspective of a white* hat hacker
wait you dont have open dms @sly jolt ?
No
I don't like people coming to me after infractions being like "wHaT dId I dO wRoNg?" after spamming emojis
wat
wait whats going on? is there a link, post or announcement I missed?
k
if so can I get a link
I have a bot is in secret server
lol
I need to start exploring other licenses lol
I've only used the MIT license
do whatever the fuck you want license
😓
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.
Legally, not sure if that's sound though
@whole rover u are 17, and u have 10 years of experience your dont need to go to collage, WOW
yeah it's not
Do whatever the fuck you want, scott
@sly jolt no u
lol, I do need to go to college
no u
NO
no
U
NO U
NO U
i am in
Haskell stack and cabal defaults to BSD so maybe I could use that
hihg school???
smh my head
lol, I do need to go to college
@whole rover not with your experince
i don't know, i'm from the UK
hihg skoll
i am the year before university
back in my day
I feel overqualified for first year of Uni
unfair
Emphasis on feel
can you not skip first year
hacker
we can skip first year here
I could try
yeah thats great
joe will need to go to collage just for the sake of saying i have a degree
saves time
I plan to attempt to become a TA for Python courses
Not sure if the institutions I'd go to would allow that
Joe How is college?
college is good
he is most likely in 12th grade
12th grade sounds about right
voice log removed?
12th grade = college in uk
joe it must be boring right? u already know everything
joe y is the uk so complicated
!voice
Please attach the user ID of the user you are trying to report
just be in 12th grade
11th grade and 12th grade = college in uk
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.

hhahahahahhahahhaah
LMAO
admin = thor what is mod = ?
@whole rover if u dont use agpl u will die in 30 seconds. gg
lul
lol
wat
if a company was to use my graphing bot I'd let them because then I'd have someone to actually review my code
why not just have every license ever
Public Domain 
@sly jolt "no"
frick
got 'emmm
eyyy
https://github.com/jb3/concoction okay voice team how should i license THIS
That's new
What is lisence used for?
legally allowing others to use your code
yeah I'd rather not have a license scream at me
Agreed
I think Tom Scott did a nice video on this.
he did
Tom @whole bear
WOW
@sly jolt Thanks, I hate it
@whole rover do another vscode demo
It's been busy the last few days.
Fine. I'll do it myself.
I wonder if my potato internet can handle streaming my screen
voice usage
someone named Isacc why got 100k people oon a VC
No copyright infringement intended. | Watch Money, my new Nebula Original series, when you join CuriosityStream for only $2.99/month: https://curiositystream.com/tomscott
WRITTEN BY: Tom Scott
SCRIPT ASSISTANT: Andrea Marks
CAMERA: Jamie Drew
CAMERA: Joe Stone
AUDIO MIX: Grah...
@swift valley if you let me stream I will representatively stream for you
good video
like
I will stream
and say it is you
I'm gonna try I guess lol
lol
copyright isn't my area of law, but still a very interesting video
when joe turns out to have no area of law
lol

o
@warm axle .
I am not a lawyer, but I am fairly familiar with US code on these topics
@sly jolt can u make the text a little bigger
I would be in pain
hey fun fact on internet law, cloudflare now scans for CSAM for you!!
@whole rover & stats law
I'm not sure how to
Crashed my client lol
wait
oh gosh
and it reports to NCMEC!
@sly jolt fellow human, what are you doing?
fuck that
@olive sentinel Hello, I am streaming me programming.
PhotoDNA
what ya making?
Graphing manipulated data through discord.py. Contribute to Xithrius/Xythrion development by creating an account on GitHub.
i want transparency on PhotoDNA
graphing bot for hackathon
strucutre
they let me include this
what is hackathon
I should get on with writing tests
yeah it's a super cool concept but they are hesistant at releasing it since CSAM sharers could bypass the fuzzy hashing
I ditched it for so long they were like "yeah, sure. you can use it."
I've seen some nice tests in the Code Jam
nobody loves tests
hush
write your code in OCaml and formally prove it instead uwu
The one right now is pretty chunky
!hush
these aren't the tests that you're thinking of
it's just random programs that don't work
@amber epoch can I do it in Haskell
hey Ves how much is your python experince
is it that weird functional stuff?
guess so
@olive sentinel which weird functional stuff
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.
I'll amalgam you an amalgam
tox is taking its sweet time
!int e ```py
c = guild.get_channel(751591688538947646)
print(len(c.members))
In [6]: c = guild.get_channel(751591688538947646)
...: print(len(c.members))
...:
26
wowie
okay I put a count on it
and a limit 🙃
if we hit 50 I'll up it to 99
What about all this "discord sings x song" videos?
Finally the tests run
We need more than 50 people
hahaha
22
7 ate 9
what's happening rn
random number generator!
lol
If I overheard correctly earlier about Guitar Hero I actually know a few open source rhythm game simulators
Java 1.8 -> java 9
They're pretty neat
i think
Gonna pretend that one of my tests didn't fail
@olive sentinel Hello
lol
being mean is not nice
that is true i think
You don't use Windows 98?
thats so hard to setup
Manjaro btw 
smh my head
several people are typing
I dont use windows
I use Windows 998
Well I use Windows 2000
cxfreeze
Higher number, so better
or you can use cython
yall time travelrs
several people are typing
@sly jolt not talking, smh
or you can use nuitka
use a knoppix livecd
Nuitka too ^
Stop right there criminal scum
no u
100% test coverage btw
do people like my sudo on windows
bad tests though lol
why know two passwords when you can know one
y say many word when few do trick
why not?
h m m m
@amber epoch why use passwords?
!otn a doused-the-firewall
:ok_hand: Added doused-the-firewall to the names list.
elliot my dude
I grabbed their ip, 3234234.23.1234.11
got 'em
I had to @whole rover
I server muted them
I got the IP too - 867-5309
hahahahaha
ngl that's a pretty funny otn
@whole bear is that your local ISP's telephone number?
ffffffffffffffffffff
well
I got their IP: 256-243-432-54
voice report works great
@dire folio, welcome.
Uma das cenas mais ridiculas de sempre das series de TV!
- ah e tal estamos a ser hackados
- não te preocupes que se teclarmos os dois no mesmo keyboard conseguimos ganhar.
FFS!!!! QUE GRANDAS PRÓS....NOT!!!!!!!!!
Isn't that the one where the PC gets unplugged?
i'M gEtTiNg HACKED
yeah
what is this
a piano duet
also since when did a console ever print at the top, scrolling downwards
how did python bot get into the VC?
it never did
it did
oh
look
@pure path Upgrades
ye i did
nasty editing sneak
@pure path I just wanted to know what you all were doing
oh how i like seeing bots speaking
i am learingin while loops with dict and list @wise cargo
Computer Online Forensic Evidence Extractor (COFEE) is a tool kit, developed by Microsoft, to help computer forensic investigators extract evidence from a Windows computer. Installed on a USB flash drive or other external disk drive, it acts as an automated forensic tool durin...
@wise cargo if I ping you will it pass it on to the person controlling you?
Computer Online Forensic Evidence Extractor (COFEE) is a tool kit, developed by Microsoft, to help computer forensic investigators extract evidence from a Windows computer. Installed on a USB flash drive or other external disk drive, it acts as an automated forensic tool durin...
@gentle flint if you mean the python-discord-super-ai-chat-system, then yes
nah, I meant the mod laughing his ass off
Learn to quickly identify and mitigate cyber threats with our open source "EZ Tools" an easy to use set of digital forensics tools provided by SANS and Eric Zimmerman. Our command line tools include an amcache.hve parser, jump list parser and registry viewer.
?
python-isnt-skynet-thats-silly
@gentle flint that would be me
joe u should ping everyone in this discord to join the VC
NO
@pure path He's not lemon
GOD NO
@alpine crater so is the answer yes?
python-isnt-skynet-thats-silly
new otname?
I fear death
I mean, it would be in character for him to ping everyone
!echo [channel] <text>
Can also use: print
Repeat the given message in either a specified channel or the current channel.
it is mod+ of course 🤣
https://www.sans.org/cyber-security-courses/windows-forensic-analysis/ the course I took
FOR500 builds in-depth and comprehensive digital forensics knowledge of Microsoft Windows operating systems by analyzing and authenticating forensic data as well as track detailed user activity and organize findings.
oh u took cybersecurity course?'
@scarlet plume join the party
I have 2
!otn a python-isnt-skynet-thats-silly
:ok_hand: Added python-isnt-skynet-thats-silly to the names list.
wdym 2
Scott: It Depends™
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
lol


