#voice-chat-text-0

1 messages · Page 618 of 1

whole bear
#

yeah i dont think he has ctx defined anywhere

#

@whole bear you have to tell python what ctx is or create that object

azure kayak
#

try get_channel.send()

#

put message in "()"

#

its 12 32pm

#

get_channel.send(f'{member} Welcome on {server}, have fun :D')

#

i do web dev as well

#

i do js and py and java

rich stirrup
#

nie

#

nice

unreal crow
#

Noice

azure kayak
#

@whole bear have u tried it

#

ok

#

no

#

what?

#

no

#

ye

#

what is error

#

im sorry but i have to go and get dinner

#

ill try solve

#

tho

#

wait

#
async def on_member_join(ctx, member):
     get_channel = bot.get_channel(746407943246708778)
     await ctx.send.get_channel(f'{member} Welcome on 'f'{server} ,have fun :D')```
#

try

#

but gtg so bye

#

ill be back tho

whole bear
#

await channel.send(f'{member, mention}join he server') ^ TabError: inconsistent use of tabs and spaces in indentation

#

@bot.event
async def on_member_join(member):
channel = discord.utils.get(member.guild.channels, name="welcome")
await channel.send(f'{member, mention}join he server')

azure kayak
#

hi

#

im back

#

did u solve?

whole bear
#

no

azure kayak
#

o

#

can i get all code except token?

#

so i can test

#

hlo?

#

@whole bear ?

#

helllooo??

whole bear
#

#BOT CREATED BY NeKro
#Version 0.6.5

#######################################################################################################################################################################################################################################################################TOKEN="token"
#######################################################################################################################################################################################################################################################################

wise cargoBOT
#

Hey @whole bear!

Uh-oh! It looks like your message got zapped by our spam filter. We currently don't allow .txt attachments, so here are some tips to help you travel safely:

• If you attempted to send a message longer than 2000 characters, try shortening your message to fit within the character limit or use a pasting service (see below)

• If you tried to show someone your code, you can use codeblocks
(run !code-blocks in #bot-commands for more information) or use a pasting service like:

https://paste.pythondiscord.com

azure kayak
#

ok

whole bear
#

import discord
from discord.ext import commands, tasks
import random
import youtube_dl
import asyncio

bot = commands.Bot(command_prefix = "!", description = "FREE ACCES IS THE KEY!")
musics = {}
ytdl = youtube_dl.YoutubeDL()
bot.remove_command('help')
bot.remove_command('start')

@bot.event
async def on_ready():
print("Ready !")

#status

status = ["!help"]

@bot.event
async def on_ready():
print("Ready !")
changeStatus.start()

@bot.command()
async def start(ctx, secondes = 5):
changeStatus.change_interval(seconds = secondes)

@tasks.loop(seconds = 5)
async def changeStatus():
game = discord.Game(random.choice(status))
await bot.change_presence(status = discord.Status.dnd, activity = game)

#welcome
@bot.event
async def on_member_join(member):
channel = discord.utils.get(member.guild.channels, name="welcome")
await channel.send("welcome")
#bot-commands

wise cargoBOT
#

Hey @whole bear!

Uh-oh! It looks like your message got zapped by our spam filter. We currently don't allow .txt attachments, so here are some tips to help you travel safely:

• If you attempted to send a message longer than 2000 characters, try shortening your message to fit within the character limit or use a pasting service (see below)

• If you tried to show someone your code, you can use codeblocks
(run !code-blocks in #bot-commands for more information) or use a pasting service like:

https://paste.pythondiscord.com

whole bear
#

###################################################
########## HELP ##############################
###################################################

#!help
@bot.command()
async def help(ctx):
await ctx.send("**Wait,we work on it 😉 **")

#!invite
@bot.command()
async def invite(ctx):
embed = discord.Embed(title="https://urlz.fr/dHe5", url = "https://urlz.fr/dHe5", description = "You can invite me with on your server with this link :D")
embed.set_author(name="INVITATION")
embed.set_thumbnail(url="https://cdn.discordapp.com/app-icons/746407135633473596/8a440678a9c87462d7c2a587b907ff15.png?size=64")
await ctx.send(embed = embed)

###################################################
########## FUN ##############################
###################################################

#!credit

@bot.command()
async def credit(ctx):
await ctx.send("Creator : @[TPB]NeKro#7781**\n\nDeveloper :** @[TPB]NeKro#7781 \n\nDesigner : @[TPB]NeKro#7781")

#!serverInfo
@bot.command()
async def serverInfo(ctx):
server = ctx.guild
numberOfTextChannels = len(server.text_channels)
numberOfVoiceChannels = len(server.voice_channels)
numberOfPerson = server.member_count
serverName = server.name
message = f"The server {serverName} have {numberOfPerson} members ! \nThis server have {numberOfTextChannels} text channel and {numberOfVoiceChannels} voc channel."
await ctx.send(message)

azure kayak
#

and ur intent for program?

whole bear
#

#!say

@bot.command()
async def say (ctx, *texte):
await ctx.send(" ".join(texte))

#!chinese
@bot.command()
async def chinese(ctx, *text):
chineseChar = "丹书匚刀巳下呂廾工丿片乚爪冂口尸Q尺丂丁凵V山乂Y乙"
chineseText = []
for word in text:
for char in word:
if char.isalpha():
index = ord(char) - ord("a")
transformed = chineseChar[index]
chineseText.append(transformed)
else:
chineseText.append(char)
chineseText.append(" ")
await ctx.send("".join(chineseText))

#!russian
@bot.command()
async def russian(ctx, *text):
russianChar = "АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ"
russianText = []
for word in text:
for char in word:
if char.isalpha():
index = ord(char) - ord("a")
transformed = russianChar[index]
russianText.append(transformed)
else:
russianText.append(char)
russianText.append(" ")
await ctx.send("".join(russianText))

###################################################
########## MUSIC ##############################
###################################################

class Video:
def init(self, link):
video = ytdl.extract_info(link, download=False)
video_format = video["formats"][0]
self.url = video["webpage_url"]
self.stream_url = video_format["url"]

#!disc (disconnect)
@bot.command()
async def disc(ctx):
client = ctx.guild.voice_client
await client.disconnect()
musics[ctx.guild] = []

#!stop (pause)
@bot.command()
async def stop(ctx):
client=ctx.guild.voice_client
if not client.is_paused():
client.pause()
elif client.is_paused():
client.resume()

#

#!skip
@bot.command()
async def skip(ctx):
client = ctx.guild.voice_client
client.stop()

#play music on youtube
def play_song(client, queue, song):
source = discord.PCMVolumeTransformer(discord.FFmpegPCMAudio(song.stream_url
, before_options = "-reconnect 1 -reconnect_streamed 1 -reconnect_delay_max 5"))

def next(_):
    if len(queue) > 0:
        new_song = queue[0]
        del queue[0]
        play_song(client, queue, new_song)
    else:
        asyncio.run_coroutine_threadsafe(client.disconnect(), bot.loop)

client.play(source, after=next)

#!play
@bot.command()
async def play(ctx, url):
print("play")
client = ctx.guild.voice_client

if client and client.channel:
    video = Video(url)
    musics[ctx.guild].append(video)
else:
    channel = ctx.author.voice.channel
    video = Video(url)
    musics[ctx.guild] = []
    client = await channel.connect()
    await ctx.send(f"Now playing : {video.url}")
    play_song(client, musics[ctx.guild], video)

###################################################
########## ADMIN ##############################
###################################################

azure kayak
#

is it welcoming?

#

that has prob?

#

yes ik

rich stirrup
#

yea i think so

whole bear
#

bot.run(Token)

azure kayak
#

and ur problem is welcoming people?

rich stirrup
#

and also there was an indentation error if you scroll up

#

im not sure about that one

jaunty spoke
azure kayak
#

where is ur problem?

whole bear
azure kayak
#

@whole bear where is error

#

hlo?

whole bear
#

@azure kayak

azure kayak
#

ok

#

what is the problem so i can solve

#

is it on_member_join?

#

is it on_member_join?

#

on_member_join?

rich stirrup
#

@whole bear

azure kayak
#

ok

rich stirrup
#

read above

azure kayak
#

ill try and do that

whole bear
#

you find something @azure kayak ?

hushed elm
#

Brasov

ocean forge
#

hey @hushed elm

hushed elm
#

hi @ocean forge

ocean forge
#

yeah, you build a web by python ?

hushed elm
#

no, by javascript

ocean forge
#

what framework you use for website, flask?

#

ah yeh

hushed elm
#

but you can build a web server in flask, i did so a long time ago

#

now i use express.js and javascript

ocean forge
#

got it 😋

hushed elm
#

you wanna learn web development?

ocean forge
#

i use python, i want to learn to build a web by flask

hushed elm
#

very nice @ocean forge

#

@green peak look at express.js if you want to build a web server in javascript

green peak
azure kayak
#

@whole bear i solve ur welcome prob

whole bear
#

realy?how?

azure kayak
#

i think

#

try

#
async def on_member_join(member):
    channel = client.get_channel(741338987373002922)
    await channel.send('hi!!')
#

that

#

sends hi when user joins

#

to channel

#

umbers

#

change id to channel id

#

because it worked fine for me

#

leave server then join again

#

did it work?

#

......

#

hmmmmm

#

does it give error

#

ok

whole bear
#

Ignoring exception in on_member_join Traceback (most recent call last): File "D:\lib\site-packages\discord\client.py", line 312, in _run_event await coro(*args, **kwargs) File "c:/Users/fxgam/OneDrive/Bureau/code/Python/PATATOR BOT/bot - Copie.py", line 54, in on_member_join channel = client.get_channel(746407943246708778) NameError: name 'client' is not defined

azure kayak
#

change client to bot

#

if that it correct?

#
import discord

bot = commands.Bot(command_prefix='@')

@bot.event
async def on_ready():
    print('Start up successful')

@bot.event
async def on_member_join(member):
    channel = bot.get_channel(741338987373002922)
    await channel.send('hi!!')



#

my code

#

and after

whole bear
#

it works ^^

azure kayak
#

guess how old i am

#

13

#

lol

whole bear
#

me 15

azure kayak
#

really

#

thamks

#

thanks

hidden flower
#

are emulators against rule5 😳 ?

crimson light
whole bear
#

I need to double-check how to do this, one sec

crimson light
#

it's fine, @ me if come back perhaps maybe?

whole bear
#

It'll be maybe 2 minutes

crimson light
#

ok will wait

whole bear
#

and game

#

The funny thing is when you glitch it like this, the rain never stops

#

and now, rain

#

Though it's not raining at the Zora Waterfall thinkmon

crimson light
#

this is weird

whole bear
#

lol

#

Gimme a sec

#

Full legit playthrough, one sit down

crimson light
#

this'll be neat to watch

subtle orchid
#

A guy suggested me to learn all kind of terms related to data types,alogrithims and mathematical computer science etc its a lot of stuff do it worth it spending all my time for that

azure kayak
#

need help?

subtle orchid
#

yeah

azure kayak
#

get on voice chat

subtle orchid
#

its like 100 of videos all being 1 hour long and a lot of books for that

#

is it important to clear concepts

azure kayak
#

python error problem

subtle orchid
#

no like data bases aqlogrithim data and data bases

#

all kind of terminlogy and concepts

azure kayak
#

@sweet pulsar WTF

#

o

#

i didnt understant

#

ur language

#

ok

#

or i didnt hear correctly

proven drift
#

its ok

azure kayak
#

so whats ur problem?

whole bear
#

1/3 pendants

wet sedge
#

hi

ember hazel
#

@gentle flint no cat pics today???

gentle flint
#

I thought you had enough of them

#

I took one this morning

#

I'll post it

ember hazel
#

noo dont bother

gentle flint
#

too late

ember hazel
#

there we goo

crimson light
#

it's a cat

ember hazel
#

its a dogg

wet sedge
#

hello guys

crimson light
#

no doggo

gentle flint
ember hazel
#

@crimson light you like dogy dogy

crimson light
#

i like cats more

#

but dogs are neat too

ember hazel
#

oopsss

gentle flint
ember hazel
#

woah very kulll

gentle flint
#

smol boi

wet sedge
#

oh cute

crimson light
#

adorable fluffball

gentle flint
#

like squirrels

green needle
ember hazel
#

guys fucking watch thissssss

#

@gentle flint look what i found

gentle flint
#

I'm looking

ember hazel
#

good boyy

#

show that to yur cat as well

gentle flint
#

what

#

this got dark

ember hazel
#

yes sir

#

it did

#

only in US though oppps

proven drift
gentle flint
#

wack

stoic ore
whole bear
#

JAVA GANG 4 LIFE

stoic ore
#

open aı. is gpt-3

molten inlet
#

What module did you use for the game @whole bear ? Pygame?

balmy nymph
#

That's.. Just The Legend of Zelda: A Link between Worlds to the Past

errant helm
#

a link to the past

whole bear
#

Which ones do I pick?

#

One of these has a heart piece

wind cobalt
balmy nymph
#

@whole bear top right and bottom left

whole bear
#

nice

balmy nymph
#

What did ya got?

whole bear
#

Top right was the first one I did, and it was the heart

balmy nymph
#

Nice

long karma
#

lextoll is a troll

wind cobalt
#

i aint troll

long karma
#

HE IS RUDE

whole bear
#

<@&267629731250176001>

gentle flint
#

he's gonna make an alt account and return

#

what's the point

scarlet plume
#

!ban 448499826682888193 goodbye

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied ban to @long karma permanently.

molten plaza
#

f1re

whole bear
#

where do i repory

scarlet plume
#

hello Floppy

whole bear
#

report

molten plaza
#

Please change you nickname to comply with our nickname policy @whole bear

whole bear
#

okay sorry

gentle flint
#

what was thomas banned for?

#

no response

whole bear
#

i need to make a report

wind cobalt
molten plaza
#

!superstarify @whole bear 2d

wise cargoBOT
#
Congratulations!

Your previous nickname, RETARED BLACK BOY, was so bad that we have decided to change it. Your new nickname will be Madonna.

You will be unable to change your nickname until 2020-08-30 16:03.

If you're confused by this, please read our official nickname policy.

gentle flint
#

RyZe coding while drinking vodka

#

prnt("hlo wrld")

wind cobalt
#

prnyet("rush B")

wind cobalt
potent quest
#

🍋

potent quest
#
dotnet : The term 'dotnet' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the 
name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ dotnet new console --force
+ ~~~~~~
    + CategoryInfo          : ObjectNotFound: (dotnet:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
#

.dotnet\tools

wind cobalt
#
The template "Console Application" was created successfully.

Processing post-creation actions...
Running 'dotnet restore' on D:\Python\CSHARPTEST\CSHARPTEST.csproj...
  Restore completed in 136.24 ms for D:\Python\CSHARPTEST\CSHARPTEST.csproj.

Restore succeeded.

PS D:\Python\CSHARPTEST> dotnet restore
  Restore completed in 43.39 ms for D:\Python\CSHARPTEST\CSHARPTEST.csproj.
PS D:\Python\CSHARPTEST> dotnet run
Hello World!
PS D:\Python\CSHARPTEST>```
#

namespace CSHARPTEST
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
        }
    }
}
#

@potent quest hi kitty kitty

#

Dev-C++

potent quest
#

no

wind cobalt
#

sad noises

whole bear
#

Easiest way to kill these things, lol

wind cobalt
potent quest
#

aight good night guys

wind cobalt
#

genite

whole bear
#

Which one?

#

@crimson light this

crimson light
#

idk one of them?

#

h?

whole bear
#

I HATE those things

#

Lemme set something else up

crimson light
#

i'm just watching that in the background trying to learn kotlin

whole bear
#

No problem 👍

quasi condor
#

@whole bear why no sound on your stream?

whole bear
#

Good question, figured I got that set up

#

I'll see what I can do, gimme a sec

#

@quasi condor Lemme know if this works

quasi condor
#

nope @whole bear

whole bear
#

bawss tiem

#

got 'em

crimson light
#

no sound is heard

#

it may be that you're sharing a screen instead of the application

whole bear
#

Kay, lemme try again

#

Yeah, good chance

#

Gimme a min

crimson light
quasi condor
#

still no sound - very sad

whole bear
#

Hmmm

#

Maybe this?

#

@quasi condor Y/N?

quasi condor
#

not even steraming

#

can you hear me btw, or do I need to type?

whole bear
#

Gimme a sec

crimson light
#

still don't hear audio

quasi condor
#

I'm guessing it's just some funkiness where sound isn't possible

whole bear
#

Kind of weird

#

Actually.. Idea

#

How's this?

quasi condor
#

just a buzzing from you mic

crimson light
#

well your mic is dying

#

WAIT
ARE YOU ON WINDOWS

whole bear
#

Sure ain't

crimson light
#

oh

#

then i'm out of ideas

pure ginkgo
#

@dapper meteor Türkümüsün

#

@dapper meteor Selam

#

nasılsın

whole bear
#

This work?

crimson light
#

yes it does

#

:iapprove:

pure ginkgo
#

resre@dapper meteor Aşa gelsene

dapper meteor
#

haha

whole bear
#

gaaaaaaaaaahhhhhhhhhhhhh

#

Different game time

crimson light
#

game

#

ooh zelda

pure ginkgo
#

@dapper meteor Türküm knk bu

whole bear
#

No sound?

crimson light
#

correct

dapper meteor
#

tevbe

whole bear
#

Kay, lemme see what's going on

crimson light
#

i can't hear a thing

#

i think we might be hearing your mic instead of the game? idk

dapper meteor
#

@pure ginkgo iranli

whole bear
#

There we go

crimson light
#

i hear music, no video though

#

there we go

dapper meteor
#

yapamyin

#

tevbe

#

@supple marsh they wan tyou to speak turkish

#

dont listen to them

fringe bramble
#

whats going on .-.

#

who here has a question?

#

xenon

#

do u have a question?

dapper meteor
#

@supple marsh go to games or general

#

not here

supple marsh
#

@dapper meteor ok

pure ginkgo
#

Türk varmı

#

@dapper meteor eaweaw

whole bear
#

Hey folks, can we stick with English?

dapper meteor
#

they dont know

#

but ok

whole bear
#

@crimson light Gonna head off for the time being

crimson light
#

ok

summer imp
#

guys

#

how can i put the pdf in my folder on github? i try this: <embed src="https://my.github.io/my.pdf" type="application/pdf" /> but dont works

#

mention me

hushed elm
#

godot

faint oriole
#

im just talking about math

#

or having a math prof talk

visual crow
#

i see... youuuu are talking

faint oriole
#

nope that not my voice

#

im playing a stream

#

i like math

#

check out po shen loh

#

i call him a freaking math god

visual crow
#

oh... i thought you said that youuu were talking

faint oriole
#

nope

visual crow
#

lol

faint oriole
#

voice reval

#

there u go

#

thats my voice

visual crow
#

np dude im cool, just playing

faint oriole
#

ok

#

here his stream

keen scaffold
#

anyone play brawlhalla

somber heath
velvet bane
whole bear
#

thanks for the help

queen folio
queen folio
#

OpenResty

stuck furnace
#

unstoppable force vs immovable object

#

vim mode!

queen folio
stuck furnace
#

You should try brainfuck, it's actually a pretty interesting language.

#

Whitespace is another fun one.

#

Brainfuck is actually useful, for computer scientists to prove that another language is Turing-complete.

#

Because bf is turing-complete, if you can implement a bf interpreter in another language, then that other language is also turing-complete.

queen folio
fluid leaf
rich kiln
rich kiln
rich kiln
keen scaffold
#

i am no

#

also i cant play fortnite i lag to much

#

immortal im guessing your 17

#

@whole bear i have a question can you unmute me for a second

#

@versed hare how is your game going

rich kiln
versed hare
rich kiln
#

pencolor("green")

#
pencolor("green")
speed(0)
size=1
penup()
right(60)
setposition(0,0)
for i in range(360):
    for j in range(3):
        pendown()
        circle(50,360,3)
    right(-5)
done()
#
t = turtle.Turtle()
t.pencolor("green")
t.speed(0)
size=1
t.penup()
t.right(60)
t.setposition(0,0)
for i in range(360):
    for j in range(3):
        t.pendown()
        t.circle(50,360,3)
    t.right(-5)
t.done()
stuck furnace
#

Ah, I had a similar experience: programmed a bit when I was young, gave up, learned again as an adult.

#

You want to change the size of the turtle?

rich kiln
#
t = turtle.Turtle()
t.pencolor("green")
t.speed(0)
t.pensize(20)
t.penup()
t.right(60)
t.setposition(0,0)
for i in range(360):
    for j in range(3):
        t.pendown()
        t.circle(50,360,3)
    t.right(-5)
t.done()
versed hare
stuck furnace
#

You want to cycle through different colours?

#

hmm

#

You could do something like this:

#

(I'm not that familiar with turtle library sorry)

#
from itertools import cycle
colors = 'red orange yellow green blue purple'.split()
for i, color in zip(range(360), cycle(colors)):
    t.pencolor(color)
    ...
#

The dots are just to say 'fill in your own code'.

rich kiln
stuck furnace
#

Oh, you could do color = colors[i % len(colors)]

rich kiln
stuck furnace
#

Sorry, didn't catch that?

stuck furnace
#

here's a fun thing to try to implement with turtle: https://en.wikipedia.org/wiki/Dragon_curve

A dragon curve is any member of a family of self-similar fractal curves, which can be approximated by recursive methods such as Lindenmayer systems. The dragon curve is probably most commonly thought of as the shape that is generated from repeatedly folding a strip of paper in...

versed hare
#

color=['indianred, lightcoral, salmon, darksalmon, lightsalmon, crimson, red, firebrick, darkred']

rich kiln
#

colors=['indianred', 'lightcoral', 'salmon', 'darksalmon', 'lightsalmon', 'crimson', 'red', 'firebrick', 'darkred']

versed hare
rich kiln
stuck furnace
#

Hey

#

The bots that run on this server are written in Python I think.

versed hare
#

ill see you guys in a few hours gn

stuck furnace
#

You might actually find statically-typed languages easier to use in the long-run

#

Python's dynamic typing leads to run-time bugs that would typically be caught by the compiler in other languages (like Java)

flat wave
#

An army of ants army are going to fetch food at the opposite end of a thin twig

Nest-> a1a2a3 -> (Food*)

Each ant goes pick up a piece of food and comes back the same way. En route, she headbutts with each of the ants coming in the opposte way.

a1 a2 a3

a1 a2a3*

a1a3* a2

a3 a1a2*

In the above case with 3 ants there are totally three headbutts represented by the *

What is the total number of headbutts for an army of ants of size n assuming each ant does a single trip from Nest to Food and home?

Input Format

3

Constraints

n > 0

Output Format

3

Sample Input 0

5

Sample Output 0

10

#

someone please :(

peak yew
#

wow

rich kiln
wanton ruin
#

@warm nacelle what mic u have

#

is 5 min up?\

hushed elm
#

godot

stuck furnace
#

Try this @somber heath

#
from turtle import Turtle
from colorsys import hls_to_rgb
from itertools import cycle

shelly = Turtle()
shelly.screen.colormode(1.0)
shelly.screen.bgcolor('black')
shelly.screen.tracer(0, 0)

rainbow = [
    hls_to_rgb(hue/1000, 0.5, 1.0)
    for hue in range(1000)
]

F, R, L = 'forward(5)', 'right(90)', 'left(90)'

path = [F]

for i in range(12):
    path = path + [R] + [
        {F: F, R: L, L: R}[command]
        for command in reversed(path)
    ]

shelly.speed(0)

for command, color in zip(path, cycle(rainbow)):
    shelly.color(color)
    eval(f"shelly.{command}")

shelly.screen.update()
input()
stuck furnace
#

Yeah, but you can go too far in that direction @somber heath

#

Hold up, here's an interesting video on this topic...

#

I did, there's now a big argument going on between Ofqual and the Royal Statistical Society

#

They weren't able to sit exams this year

#

So they had to use whatever information they had to estimate the grades that the students would have achieved

#

It's massively unfair to the brightest students at the worst schools

#

@somber heath

#

I honestly hated school. I just hate having to jump through arbitrary hoops.

#

All hobbies eventually become a chore when they become your job.

#

You can fall into the trap of doing the easy jobs first, then eventually you're left with only the hard jobs and you grind to a halt.

#

raise @hushed elm

#

Make use of python's help function

#

To quickly look up documentation

hushed elm
#

oh, ty

stuck furnace
#

Or, if you use IPython, you can do, e.g. str.join? to get the documentation

hushed elm
#

oooh ok

stuck furnace
#

I think the best approach is to use both

#

Read a chapter of a book, then watch a video on the same topic

#

If you get the information in multiple different forms, you're more likely to remember it

#

The difficulty there is you need lots of data @raven mural

#

You should join some kind of group project, that way you're more likely to keep going because you're held accountable @raven mural

#

Also, working with other people is one of the most important skills to learn in software development

#

The next big thing is probabilistic programming languages

#

The thing is, a lot of social media apps are explicitly designed to be addictive @warm nacelle

#

They use the same techniques as casinos

#

Those are rookie numbers @ember hazel

#

Is someone on a train?

#

Also, university education typically isn't meant to be vocational, that's not the point of university education.

#

He means it takes a year to prepare.

#

@raven mural you just apply

#

They will usually do a phone screen

#

Where they ask you basic subject questions, to screen out people aren't suitable

#

For a long time Google literally only hired graduates from Ivy League universities @jovial meadow

#

But they changed that policy

ember hazel
#

yeah apply

jovial meadow
ember hazel
#

@raven mural

jovial meadow
ember hazel
#

gtg

stuck furnace
#

@daring depot you mean it's not one-dimensional?

#

But that might be confusing with Alec

#

It means you're invested in the company's future

#

Spanish Flu was terrible because it mostly affected young adults

#

Epidemiologist @daring depot

#

👍

jovial meadow
#

even if I don't work at FANG, the stuff I spoke can be verified by just doing the interviews or looking at what Cracking the coding interview says. Its not important that I work in FANG at all, its what I've explained in the process that is important. @whole bear

stuck furnace
#

I'm actually thinking of training to be an epidemiologist

#

But office work only

#

No field work 😅

#

It's a pretty cool field though, and is related to data-science and statistics.

raven mural
#

you work at diamondback?

subtle orchid
#

its a fan

#

see you guys later

stuck furnace
#

C is nice because it's designed to map easily to assembly @daring depot

daring depot
#

True ^

stuck furnace
#

Because when it was made programs were mostly compiled by hand

#

It's cool to take concepts from Python and apply them back to C code.

severe elm
#

@vague urchin are you a programmer?

daring depot
#

imagine him being like

#

nahh i dont program

#

but its part of my gospel to convert all the servers

severe elm
#

i cant see any posts from you on this server

#

xD

daring depot
#

that mhm tho

daring depot
#

@warm nacelle cya man, hope to talk with u again someday u are fun

misty grove
#

hey help me

#

in

#

NOWWW:(

severe elm
#

quine

#

@bronze night

#

@viral sierra

#

bio engineering for example

#

George Hotz was trying to re produce and schow how the corona virus works

stuck furnace
#

Why are you getting into an argument?

#

I think I muted them like 5 seconds after they joined the chat.

#

However many hours ago that was.

#

No jpeg

#

I think they were playing sounds or something annoying, can't remember.

#

Ohh, ok

#

Guys, this is kind-of off-topic for this server.

#

Can we steer the conversation towards programming?

severe elm
#

they are at it for 3h now

stuck furnace
#

Talking about politics is bound to get people riled up.

severe elm
#

oh yuo are at politics now

#

not about obama being from kenya??

stuck furnace
#

Is anyone here a mod?

#

@fickle orbit Maybe try the code/help chat room

#

This is exactly like the arguments I used to have with my brother.

#

You can't win.

fickle orbit
#

condition_flag = False

while condition_flag == False:
input('What is 1+1? ')
if input == '2':
print('hi')

stuck furnace
#

@warm nacelle

fickle orbit
#

while (1==1):
if (FajrHL == datetime.datetime.now().hour and FajrML == datetime.datetime.now().minute ):
print('hi')
while conditionflag1 == False:
FajML = input("Would you like to snooze for 10 min? ")
if FajML == 'yes' or ' Yes' or 'YES' :
conditionflag1 = True
else:
print('Error: Please type yes or no.')

        if (FajML == 'yes' or 'Yes'):
            snooze = datetime.datetime.now().minute + 1
            if snooze == datetime.datetime.now():
                print('SNOOZE IS OVER')
                break
severe elm
#

while True:

#

.....

viral sierra
#

FajML.lower() =='yes'

stuck furnace
#

@candid venture you could try some of the challenges at codingame.com

#

They have a competition coming up soon I think

#

They're usually pretty fun

#

@candid venture what kind of things interest you?

#

Maybe you could do something related to a hobby.

bronze night
#

while (True):
if FajrHL == datetime.datetime.now().hour and FajrML == datetime.datetime.now().minute:
print('hi')
while conditionflag1:
FajML = input("Would you like to snooze for 10 min? ")
if FajML.lower() == 'yes':
conditionflag1 = True
else:
print('Error: Please type yes or no.')

            if (FajML.lower() == 'yes'):
                snooze = datetime.datetime.now().minute + 1
                if snooze == datetime.datetime.now():
                    print('SNOOZE IS OVER')
                    break
severe elm
#

for default every statement is True

#

while conditionflag1: means also "while conditionflag1 == True:"" but jsut the short way of writing it

candid venture
#

@severe elm why do u have a mia khalifa pfp

median pendant
#
    async def clear_data(self,msg):
        """
        Clear the local dict data
            name - remove file name from dict
            remove file and filename from directory
            remove filename from global audio file names
        """
        name=self.player[msg.guild.id]['name']
        os.remove(name)
        self.player['audio_files'].remove(name)

when i do a song i have this problem :

File "C:\Users\Ordinateur\Desktop\Muzik bot\music.py", line 238, in clear_data os.remove(name) FileNotFoundError: [WinError 2] Le fichier spécifié est introuvable: 'ivez8dAaved5TPuXzhzP9'

severe elm
#

@severe elm why do u have a mia khalifa pfp
@candid venture i am mia

median pendant
median pendant
#

someone can help me ?

severe elm
#

go into "how-to-get-help" channel

median pendant
#

GWsabianPepoHmm ho sorry

#

i think it's discord

#

.py channel

#

sorry

severe elm
#

or join the voice channel and ask someone, i think this channel here is for ppl who are actually in the voice channel and also talking

#

just join code/help or the general vc

wise cargoBOT
#
random.choices(population, weights=None, *, cum_weights=None, k=1)```
Return a *k* sized list of elements chosen from the *population* with replacement. If the *population* is empty, raises [`IndexError`](exceptions.html#IndexError "IndexError").

If a *weights* sequence is specified, selections are made according to the relative weights. Alternatively, if a *cum\_weights* sequence is given, the selections are made according to the cumulative weights (perhaps computed using [`itertools.accumulate()`](itertools.html#itertools.accumulate "itertools.accumulate")). For example, the relative weights `[10, 5, 30, 5]` are equivalent to the cumulative weights `[10, 15, 45, 50]`. Internally, the relative weights are converted to cumulative weights before making selections, so supplying the cumulative weights saves work.... [read more](https://docs.python.org/3/library/random.html#random.choices)
stuck furnace
#

You can use random.choices with weights @bronze night

severe elm
#

is he saying probability?

stuck furnace
#

Here is the source for random.choices:

#
    def choices(self, population, weights=None, *, cum_weights=None, k=1):
        """Return a k sized list of population elements chosen with replacement.
        If the relative weights or cumulative weights are not specified,
        the selections are made with equal probability.
        """
        random = self.random
        n = len(population)
        if cum_weights is None:
            if weights is None:
                floor = _floor
                n += 0.0    # convert to float for a small speed improvement
                return [population[floor(random() * n)] for i in _repeat(None, k)]
            cum_weights = list(_accumulate(weights))
        elif weights is not None:
            raise TypeError('Cannot specify both weights and cumulative weights')
        if len(cum_weights) != n:
            raise ValueError('The number of weights does not match the population')
        total = cum_weights[-1] + 0.0   # convert to float
        if total <= 0.0:
            raise ValueError('Total of weights must be greater than zero')
        bisect = _bisect
        hi = n - 1
        return [population[bisect(cum_weights, random() * total, 0, hi)]
                for i in _repeat(None, k)]
#

They appear to do a binary search on the CDF.

#

I believe this may be the standard way to do this. @bronze night

candid venture
#
from PIL import Image

image = Image.open("1980268.jpg")


foodlist = ["hello"]
while (1 == 1):
    foodlist.append("world")
    print(str(foodlist))
#
PS C:\Users\ejliu\Desktop> .\app.py
Traceback (most recent call last):
  File "C:\Users\ejliu\Desktop\app.py", line 5, in <module>
  File "C:\Python38\lib\site-packages\PIL\Image.py", line 2878, in open
OSError: [Errno 24] Too many open files: '1980268.jpg'
PS C:\Users\ejliu\Desktop>
stuck furnace
#

I don't think it is completely read into memory?

#
This is a lazy operation; this function identifies the file, but
the file remains open and the actual image data is not read from
the file until you try to process the data...
candid venture
#

PS C:\Users\ejliu\Desktop> .\app.py
Traceback (most recent call last):
File "C:\Users\ejliu\Desktop\app.py", line 5, in <module>
File "C:\Python38\lib\site-packages\PIL\Image.py", line 2878, in open
OSError: [Errno 24] Too many open files: '1980268.jpg'
PS C:\Users\ejliu\Desktop>

subtle orchid
#

Cooking=True
Fitness=False

if Cooking and Fitness=True:
print('You are eligible for Job')
elif Cooking=False and Fitness=True:
print('You dont know Cooking but you are Fit, Hence ineligible for Job')
elif Cooking=True and Fitness=False:
print('You know Cooking but you are not Fit, Hence ineligible for Job')
else:
print('Get out of here you are rejected')

stuck furnace
#

Bye @warm nacelle

severe elm
#

does someone can tell me what mathematical background i need to start with data science

#

/ what background is recommended

#

linear algebra

#

statistics

severe elm
#

alright thx gfever

little scarab
#
def counter(arrline):
    count = 0
    start = 0
    sum_of_raw = {}
    for i in range(len(arrline)):
        if (count == 1):
            start = 1
        elif (count == 2):
            start = 2
        elif (count == 3):
            start = 3
        for j in range(start,start+2):
            if (arrline[j] in sum_of_raw.keys()):
                sum_of_raw[count] += arrline[j]
            else :
                sum_of_raw[count] = arrline[j]
        count+=1
    return(sum_of_raw)
        ```
#

File "Solution.py", line 22, in counter
sum_of_raw[count] += arrline[j]
KeyError: 2

cinder jasper
#

i think

#

the key in not in the dict

little scarab
#

123456

#

123

#

234

#

345

#

456

cinder jasper
#

use for loop
and take input at string
for i in range(0,len(arline),3)

#

this will work??

#

wt is it??

#

leetcode?

#

thanks for that

jovial meadow
stuck furnace
#

A lot of comments here are out-of-context

#

Because you can't hear what people were saying at the time

#

Are we shit-talking now? 😆

#

Alright

#

Wow that other guy earlier was a character.

#

Sorry, I love gossip.

#

Like a deadweight loss?

#

I'll have you know, I have a C in intro economics.

#

Here's what I think: the measure of the performance of an economy should be social good, but a well-regulated market economy does a pretty good job of producing social good.

#

Anyone got any server recommendations? @wicked viper @whole bear @fringe bramble @somber heath

#

Oh btw, what is your mother's maiden name?

#

Not really

#

Wintergatan is cool

#

They have a server

#

Where they organise the project

slate oracle
stuck furnace
#

This guy is building a marble music machine

#

He's building another one

#

But it's a big project, and it's become like a community thing

#

With people providing different parts

#

Watching his videos is actually a pretty good way to learn about project management

#

I'd recommend it for software engineers

slate oracle
#

i like marxism conventions in australia

#

its all just australian cussing

#

racism = bad

stuck furnace
#

Melbourne is a cool city

fringe bramble
#

what is this 🤣

slate oracle
#

what isnt this

fringe bramble
#

was afk for a bit and i come back to this 🤣

stuck furnace
#

They're about to bring in legislation that forces YouTube to give preferential treatment to large news organisations

fringe bramble
#

damn

slate oracle
#

entertainment

stuck furnace
#

Actually,

#

Just this week the Home Office vilified human rights lawyers

#

One sec

slate oracle
#

xD

#

us on there 😦

#

one of the richest country in the world have some of the most common human rights violations

#

dissapointing

stuck furnace
#

Yeah, but the point is that lawyers are just doing their jobs

#

being passionate advocates for their clients

#

I think though, it tends to be more complicated than that

#

People may have family ties to the UK

#

Migration also tends to be a positive thing for the target country

#

On average

#

I honestly don't know, but that sounds exagerated?

#

Ok?

#

Barriers to migration account for something like a halving of global GDP (at least)

#

Something I learned on my intro economics course

#

Alright, you're ranting a bit now.

fringe bramble
#

damn i was half listening

stuck furnace
#

Can we change the topic.

fringe bramble
#

but yeahhh rip iranian refugees xD

somber heath
fringe bramble
#

cactus? what was ur point, who was talking about immigration 👀

#

i was half listening so yeh im intrigued

#

that is quite a fire risk xD

#

🤣

stuck furnace
#

You could hang the toast on the antlers

fringe bramble
#

OMG XD

stuck furnace
#

Or bagels

fringe bramble
#

thats actually smart

stuck furnace
#

I'm self conscious 😅

fringe bramble
#

thats smart^

#

was talking about opal looking for someone better suited :P

stuck furnace
#

I have a thing about talking on the phone and other people being able to hear half the conversation. Is that weird?

fringe bramble
#

Opal, you sound like a better leader than most ¯_(ツ)_/¯

stuck furnace
#

Well, I share a house

#

Alright

#

Nope haha

wicked viper
#

just like

#

remove your roomates ability to hear

#

easy

stuck furnace
#

Btw, I wasn't trying to argue with you earlier, just provide some contrasting points

fringe bramble
#

Chop chop

stuck furnace
#

You need to break up the flow sometimes otherwise people can spiral into a rant

#

I'm pretty middle-of-the-road, politically speaking

fringe bramble
#

thank god we are considered "useful" immigrants 👀, racisim is scary >->

#

tru, but saying hi im mohammad isnt a good start, but yeah u can easily fix it if ur actually a decent person

#

cuz its easier to judge people that way ig

#

¯_(ツ)_/¯

stuck furnace
#

I remember listening to a nice lecture on this (about the origins of prejudice):

slate oracle
#

(╯°□°)╯︵ ┻━┻

#

NO n WORD

fringe bramble
#

if obama was here i wouldve studied in the US :p

#

fucking trump i cant study in the US cuz of him 🤣

slate oracle
#

trump is like the mosquito in the animal word

fringe bramble
#

hmm we are still relatively new

#

nope dubai

#

47 years?

slate oracle
#

south sudan fudged up

#

watched a vice on it

fringe bramble
#

rip

slate oracle
#

regrets

fringe bramble
#

as an iranian , and arab, boy am i in a decent spot 🤣

#

politics and crap is hard ;-;

slate oracle
#

exactly

#

i live in the US and everythings so confusing

fringe bramble
#

ikr, science is easier ngl

slate oracle
#

lol

fringe bramble
#

humans are weird xD

slate oracle
#

comp sci easier than politics

fringe bramble
#

it issss tho

slate oracle
#

mhm

#

Just want to put it out there not everyone who is white and lives in the suburbs NOT EVERYONES RACIST
edit: dont judge my grammar punk

#

not as bad as the memes tho

fringe bramble
#

yes we all are a bit biased

stuck furnace
#

Listen to that lecture

fringe bramble
#

yeh u 100% right opal

stuck furnace
#

But bear in mind: explanation is not exculpation

slate oracle
#

exculpation

#

lemme google that

stuck furnace
#

People develop prejudices over the stupidest things.

#

There was this experiment where they classified people according to which abstract painter they preferred (the classification was actually random)

slate oracle
#

really?

stuck furnace
#

and people started to develop a negative opinion of people who liked a different painter to them.

slate oracle
#

when was this?

stuck furnace
#

Or, at the very least, assign certain qualities to them.

bleak mica
#

pack mentality causes this btw

stuck furnace
#

We think in terms of examplars.

#

I can demonstrate:

#

Here are some random lines:

#

Is it easier to estimate the average length, or the sum of the lengths?

fringe bramble
#

aaaa im afk for a bit and all of this happens

stuck furnace
#

Yep

#

Yeah, I couldn't find an image that wasn't cut off at the edges (ignore the ones that are cut off)

fringe bramble
#

nono i think its better to ask

is it easier to estimate the average of each black line, or the length of each black line? i think thats ur point

stuck furnace
#

Yeah, exactly.

bleak mica
#

average = sum/amount of items tho

stuck furnace
#

Because you can stereotype the lines with a typical example

fringe bramble
#

lmao import 🤣

bleak mica
#

am I wrong?

fringe bramble
#

oh wait i thought u were sending a math thing without context oops xD

bleak mica
#

e = cm^2

fringe bramble
#

cm ;-;

stuck furnace
#

Alright alright, I was trying to do a psychology demonstration 😅

fringe bramble
#

e = mc^2 ;-;

stuck furnace
#

It's from Danial Khaneman's book

bleak mica
#

but you can't be sure without measuring all of them

#

then sum is easier

fringe bramble
#

omg lxnn i doubt sum of em get it >->

bleak mica
#

standard deviation?

fringe bramble
#

omg im dying 🤣

#

opal ur mic?

somber heath
#

You're talking to programmers. People who, by virtue of their vocation, pick apart problems all day long.

fringe bramble
#

@stuck furnace your comparing this to racism yeh? and how its easier to just like avg people out as similar?

#

idk if that made any sense? 🤣

stuck furnace
#

Yeah, that was the point I was trying to make

fringe bramble
#

we went so off his idea, this is sad xD

stuck furnace
#

How it's easier to be prejudiced (but not correct)

fringe bramble
#

👍

stuck furnace
#

Alright, but the point is that we fundamentally find it easier to think in terms of exemplars.

wicked viper
#

i would like to point out that im no programmer

#

whats a hello world

stuck furnace
#

I'm not explaining this well. It's from Thinking Fast and Slow

#

Cya @wicked viper

#

Wasn't someone earlier asking about how to take a random sample from a probability distribution?

#

I realised what the answer is.

fringe bramble
#

AAAA that book costs money xD

#

time to find a free version :P

stuck furnace
#

It's a nice book. Totally changed how I think about thinking

fringe bramble
#

currently got 2 books arriving today

#

will read this after im done with le 2

stuck furnace
#

Alright, cya @fringe bramble

#

👍

jovial meadow
fringe bramble
candid venture
fringe bramble
candid venture
dense scaffold
#

help me please

#

i need help o0n my school project

#

i will be eternally greatfull

#

to anyone that can help me

whole bear
#

ok

drowsy haven
#

wtf

#

see that price?

#

its more costly than my Graphic card

whole bear
#

._.

hushed elm
severe elm
whole bear
hushed elm
#

lol

whole bear
severe elm
#

"Anlella Sagra"

stuck furnace
#

nah

#

you're piling on the pressure

#

I'll turn off push-to-talk

hushed elm
#

fractal

stuck furnace
#

erm

#

can you hear me?

severe elm
#

coding train

stuck furnace
#

try this:

#
from turtle import Turtle
from colorsys import hls_to_rgb
from itertools import cycle

shelly = Turtle()
shelly.screen.colormode(1.0)
shelly.screen.bgcolor('black')
shelly.screen.tracer(0, 0)

rainbow = [
    hls_to_rgb(hue/1000, 0.5, 1.0)
    for hue in range(1000)
]

F, R, L = 'forward(5)', 'right(90)', 'left(90)'

path = [F]

for i in range(14):
    path = path + [R] + [
        {F: F, R: L, L: R}[command]
        for command in reversed(path)
    ]

shelly.speed(0)

for command, color in zip(path, cycle(rainbow)):
    shelly.color(color)
    eval(f"shelly.{command}")

shelly.screen.update()
input()
#

Vim

hushed elm
#

nmice

#

so sad

stuck furnace
#

Macbook Air connected to monitor

whole bear
hushed elm
#

HUUUUUGE

#

big boy

severe elm
#

we found the BBC

hushed elm
#

you've got a big PPI?

whole bear
#

hi mia

severe elm
#

imagine mia saying this

#

you've got a big PPI?
@hushed elm ...

hushed elm
#

yeah ty

severe elm
#

Porn by Programmers

whole bear
#

welcom to p by p

severe elm
#

"Are you a hard working programmer? Take your breaks and dont forget to fab, your Mia"

stuck furnace
severe elm
#

bro

#

thats nsfw

whole bear
#

that is homepage product

severe elm
#

@stuck furnace this is a SFW server man

#

i will have to report you next time

#

@rapid crown

#

fluent python

stuck furnace
#

Based on SICP, but in Python

severe elm
#

libgen

stuck furnace
#

ssh?

royal gull
stuck furnace
hushed elm
#

letsencrypt

stuck furnace
#

@whole bear turn your volume up

severe elm
#

???

#

h-harder father???

#

i saw your post

keen scaffold
#

yes

stuck furnace
#

is this a 'technical co-founder' situation?

keen scaffold
#

father it isnt my birthday yet

hushed elm
#

i don't get it bro

keen scaffold
#

but i do

severe elm
keen scaffold
#

who is he

hushed elm
#

he's a meme

stuck furnace
#

what even is Vice?

keen scaffold
#

ik

#

but who is he

#

what even is Vice?
@stuck furnace most likely a porn company

stuck furnace
#

Why aren't there more Wallace and Gromit memes?

keen scaffold
#

because your on the wrong side of the internet

stuck furnace
#

small PPI

severe elm
#

smoll pp macro

whole bear
#

what even is Vice?
@stuck furnace youtube channel

stuck furnace
#

I mean, how do they decide what stories to cover?

keen scaffold
#

by watching porn

whole bear
#

probs ask a 2 year old

stoic ore
#

2:39:05

stuck furnace
#

brb

hushed elm
#

screen realstate

stuck furnace
#

that's 24"

hushed elm
#

noice

whole bear
#

yeeeeeeeeet

elder pumice
#

hello !

hushed elm
#

hi

#

!!!!

#

@stuck furnace did you see the blender fractal stuff i posted a while ago?

stuck furnace
#

let me check

#

???

stuck furnace
#

ohh, I did

hushed elm
#

you can build fractals in blender using sorcar(the first picture)

#

and a tesselation plugin to build l-systems(the second pic)

stuck furnace
#

looks kindof organic

#

in a creepy way

hushed elm
#

yeah it does lol

#

do you have experience with blender or something similar?

stuck furnace
#

nah

hushed elm
#

oh oke. i use it to build 3D stuff, like fractals similar to those ones

stuck furnace
#

nice

#

have you seen this guy...

#

one sec

hushed elm
#

ok

stuck furnace
#

he's definitely inspiring me to want to get into game development

hushed elm
#

oooh i've seen him around youtube, he builds cool things yeah

#

it's so cute and chill

stuck furnace
#

ohh yeah, I was watching the development of that game on twitter

hushed elm
#

very nice, right?

stuck furnace
#

yeah, it's nice

hushed elm
#

he was using some kind of wave-collapse algorithm to generate those buildings

stuck furnace
#

I liked this video:

#

he's so casual about it, but it's pretty impressive

hushed elm
#

nice

elder pumice
#

what does an api do ?

hushed elm
#

it's fucking sick

stuck furnace
#

click... noice

hushed elm
#

godot

stuck furnace
#

Is anyone else getting non-stop adverts for that new Nolan film?

hushed elm
#

i don't, they're tracking you

#

uh oh

stuck furnace
#

like waiting for godot

#

I heard that

#

I'm normally pretty out-going, if I'm getting out of the house

#

5'10"/5'9" is average height

hushed elm
#

177.8 cm

stuck furnace
#

UK units are messed up

hushed elm
#

do you mean centimeters?

stuck furnace
#

Sometimes we use metric, sometimes imperial

hushed elm
#

oh shit

stuck furnace
#

We measure fuel efficiency in miles per gallon, but we measure fuel in litres

hushed elm
#

lol really? that's a bit messed up

stuck furnace
#

I went to subway at 5am

#

when I was at uni

#

You guys were a life-line

hushed elm
#

loool

whole bear
#

@sleek tiger

sleek tiger
#

@whole bear what?

whole bear
#

wowo do not take that tone with me boy

sleek tiger
#

wdym?

whole bear
#

@whole bear what?
@sleek tiger

sleek tiger
#

i was asking a question

whole bear
#

prbs

stuck furnace
#

Yeah, ask away @green pollen

subtle orchid
#

India Sucks

whole bear
#

you Suck

subtle orchid
#

Ok

stuck furnace
#

what even?

#

Can someone help this guy out?

subtle orchid
#

I thought That I was the only one with poor accent

stuck furnace
#

hey

#

I'm trying to help someone in one of the help channels

#

but I've had a few beers

#

and now I have no idea what I'm doing

stoic ore
#

AWS

hushed elm
#

amazon web services

severe elm
#

@whole bear comeback

#

mia is waiting for you

stuck furnace
#

a bit tipsy

hushed elm
#

vodka

stuck furnace
#

It is Saturday night

subtle orchid
#

What u Guys were asking?

severe elm
#

i'mm already desperatly waiting

subtle orchid
#

Kali linux mostly used for hacking stuff

#

That’s what i have heard of

opaque wraith
stuck furnace
#

Like kirsh?

#

A kirschwasser (, UK also ; German: [ˈkɪʁʃvasɐ], German for "cherry water") or kirsch is a clear, colorless brandy traditionally made from double distillation of morello cherries, a dark-colored cultivar of the sour cherry. However, it is now also made from other kinds of cher...

subtle orchid
#

If u guys are meant to discriminate i can leave the chat

#

We Speak English in the accent we speak our native language

#

I am not ashamed of my accent

errant helm
#

Play nice, people.

severe elm
#

@subtle orchid idk what happend, but i know for sure that your voice was bad. It sounded like you were trying to talk while being underwater

subtle orchid
#

It was my mic

severe elm
#

you should fix your mic settings man

subtle orchid
#

As figured out earlier no it’s my mic