#voice-chat-text-0

1 messages ยท Page 385 of 1

willow light
#

please do not spam to get voice perms

wispy hull
scenic trail
#

no dad

gentle flint
timid marten
#

I believe I just baked my best batch of desserts today-

#

Oh my god..

sleek salmon
#

lmao

#

fuck is that

dull sluice
sleek salmon
#

some dude with a kkk pfp came here

#

and posted black person naked

dull sluice
#

ah

dull sluice
#

i speak too quiet too so i had to switch voice activity to 0 this way my friends hear me but in servers where i dont talk im just noise

#

my friend suggested me codeium its so wierd that it can even guess endpoints it i bet has never seen

rugged root
#

I am a sickly boy

dense ibex
#

@amber raptor

amber raptor
rugged root
#

@odd dove What's your question?

odd dove
upper basin
#

Just noticed rabbit has been nibbling on that X-mas hat for a year now.

short forge
#

hola

steady sail
#

Xsig validation/ verification
Xtime validation/ verification
Response encryption, AES-256

oblique hollow
#

how do i get screenshare permissions?

tall ridge
dull sluice
warped raft
#

Hello @somber heath
Just hopped in to say
Merry Christmas

somber heath
#

@unreal carbon ๐Ÿ‘‹

unreal carbon
#

o

#

okay

#

can we do private call since i am not 3 days on the server yet

#

alright

#

hello opal

#

i am louis

#

how are you

#

i'm fine

somber heath
#

!code

wise cargoBOT
#
Formatting code on Discord

Here's how to format Python code on Discord:

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

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

For long code samples, you can use our pastebin.

unreal carbon
#

it would be easier if i showed it in live stream

#

since i want to do a series of codes

#

that

#

yeah

#

that line

#

basically i want to do this thingy to generate qr codes for spotify links for a game

#

but i dont know anything about scripts

#

sorry but i found someone who is willing to go to a voice channel with me, this is nothing personal to you but its just easier for me so i will talk with him

#

but i wish you a nice evening and thanks that you tried to help

steady sail
# oblique hollow how do i get screenshare permissions?

i used to work for a huge MC server with over 12k players, i got hired on to make them plugins, i was really good at skript i made, them a MMO RPG plugin, in skript that, had a leveling system, Bosses and mob types health and custom mobs, with special attacks

noticed from one of you're repos.

#

i wouldn't say skript is good for bigger servers, for a production standpoint, but it is useful easy to learn, and pretty cool

oblique hollow
#

yeah

#

i made that like when i started skript

#

it was very simple using skbee

#

if you want to talk further on it, id love to chat with you in a voice.

#

i also take commissions sometimes

rough steppe
#

dose anyone know how to make a keylogger?

somber heath
#

@smoky delta ๐Ÿ‘‹

smoky delta
#

i would show you somet but no perms lol

#

my first text editor/coding ide

#

and with syntaxing etc

smoky delta
#

its a big step up

#

code highlighting was a total FUCK

#

i hated every minute of it

#
class SyntaxHighlighter(ctk.CTkTextbox):
    def __init__(self, master=None, **kwargs):
        super().__init__(master, **kwargs)
        self.syntax = self
        # Define keywords for your language (modify as needed)
        self.keywords = ["function", "return", "if", "else", "while", "for", "do", "break", "continue"]

        # Bind to the KeyRelease event to trigger syntax highlighting
        self.bind("<KeyRelease>", self.on_text_change)

        print("SyntaxHighlighter initialized.")

    def on_text_change(self, event):
        """Triggered when a key is released, updates syntax highlighting"""
        text = self.get(1.0, tk.END)[:-1]  # Get text (remove trailing newline)
        self.apply_syntax_highlighting(text)

    def apply_syntax_highlighting(self, text):
        """Applies syntax highlighting to the entire text"""

        # First, remove all previous tags (highlighting) without clearing the content
        self.tag_remove("keyword", 1.0, tk.END)
        self.tag_remove("string", 1.0, tk.END)
        self.tag_remove("comment", 1.0, tk.END)

        # Apply syntax highlighting for keywords, strings, and comments
        self._highlight_keywords(text)
        self._highlight_strings(text)
        self._highlight_comments(text)

    def _highlight_keywords(self, text):
        """Highlights keywords in the text"""
        for keyword in self.keywords:
            pattern = r'\b' + re.escape(keyword) + r'\b'
            matches = re.finditer(pattern, text)
            for match in matches:
                start_pos = self.index(f"1.0 + {match.start()} chars")
                end_pos = self.index(f"1.0 + {match.end()} chars")
                # Apply tag without deleting the content
                self.tag_add("keyword", start_pos, end_pos)

     ```
#

is a bastard because not using tkinter

#

using customtkinter

#

i looked into using idlelib, but it doesnt like customtkinter

#

so fuck that shite

#

@somber heath

#

ive hated every second of this

#

yeah learned TK is shite

#

ive even done things like

{

on an empty line makes

{
|
}

and clicking a line numbers selects line and alt clicking selects multiple and shit

#

trying to do multiple cursors like multiline selection

#

i like loveLua

#
self.element:setLeftRight( true, true, anchor, anchor )
self.element:setTopBottom( true, true, anchor, anchor )
self:addElement( self.element )```
#

element done

#

animation is self.element:beginAnimation( "keyframe", time, "Linear" )

smoky delta
somber heath
#

@fading badge ๐Ÿ‘‹

fading badge
#

Hello

thorny trench
#

Heloo

fading badge
#

I'm bored

somber heath
#

@whole bear ๐Ÿ‘‹

thorny trench
#

๐Ÿฅฒ

tall ridge
#

Merry Christmas ๐ŸŽ„!

lime fractal
#

who know how i can make mc server and have my friend only able to join it

#

host on my pc

somber heath
#

@urban yoke ๐Ÿ‘‹

late spoke
#

brb

somber heath
#

@gloomy frost ๐Ÿ‘‹

#

@south narwhal ๐Ÿ‘‹

south narwhal
#

heyy!!!

#

why are we not saying anything ๐Ÿ™‚ ๐Ÿค”

south narwhal
#

I c...cant hear ya!

somber heath
#

Well, we are talking.

south narwhal
#

:/

somber heath
#

!zen

wise cargoBOT
#
The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than right now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!

rugged root
#

@torn yarrow @modern socket Hello to you both

torn yarrow
#

Hi

modern socket
#

Hi

#

I need help its related to manjaro

#

@vernal bridge Could you help me out please?

#

Yes

vernal bridge
#

Yeah, whats your problem?

modern socket
#

As you can see that windows decor is not applied to firefox

#

Got it

#

But how do I change those settings?

#

Ig you require to have perm to share screen

#

@next spindle

vernal bridge
modern socket
#

Linuxgamer21 need perms

#

Now what?

#

Thanks man!!

#

It worked

#

I mean I hate defualt decor

#

I like things minimal and simple

#

I'm completely new to manjaro

#

@vernal bridge What do you use?

#

Damn!

#

Your my dad

#

I'm manjaro your son

#

: -)

#

yes i did

#

ubuntu

#

I also tried redhat

#

yes

#

I mean I learned linux administration in redhat

#

But I like manjaro more than ubuntu

#

Ubuntu is buggy

#

Your journey is fascinating

#

How do You learn so many distro?

#

You are cool

rugged root
modern socket
#

It looks more like windows

#

Yeah I like windows too.

#

But they made updates very much stressful and full of bloatware

#

Its more frustating when linux distro does the same like ubuntu

#

@whole bear Hello ๐Ÿซ‚

whole bear
#

sup

modern socket
#

Your name is kinda sus

whole bear
#

๐Ÿ˜’

#

I LOVE DIVORCE

modern socket
#

Why?

#

You must be rich

whole bear
whole bear
modern socket
#

@vernal bridge bye

#

thankyou

whole bear
#

bye bye

rugged root
#

@vernal bridge I'll miss you

tulip dove
#

Hello

modern socket
#

Hello

tulip dove
#

What's up

modern socket
#

good hbu?

tulip dove
#

Guys ill be back

modern socket
#

@tulip dove Okay np

rugged root
#

@grave moat Yo

grave moat
#

Yo. Whats up

rugged root
#

Not much, 'bout you?

grave moat
#

Doing college things.

#

Is anyone going to show coding today?

rugged root
#

I would but I can't really today. Have to run some errands for work

upper basin
rugged root
#

Nope, we just had yesterday off

upper basin
#

Don't tell me you just get two days off for Christmas.

#

That sucks. so. hard.

amber raptor
#

I won't

#

you only get one

upper basin
#

Wow.

grave moat
#

Can I do MATLAB things on python?

upper basin
#

How's that even a new year holiday then at that point.

#

Might as well take a sick day.

gentle flint
#

redid the wiring today in the service panel
before and after:

amber raptor
grave moat
#

@gentle flint do u have circuit breaker?

#

Not the MCB. fuse

gentle flint
upper basin
#
Cannot find implementation or library stub for module named
rugged root
#

It should also give you a link to the relevant link to the error

#

In the error

upper basin
#

Read that like 5 times.

modern socket
#

Gotta go its was great time with you guys

upper basin
#
name: Tests

on:
    workflow_dispatch:
    push:
    pull_request:

jobs:
    test:
        runs-on: ${{ matrix.os }}
        strategy:
            matrix:
                os: [ubuntu-latest, windows-latest, macos-latest]
                python-version: ["3.10", "3.11", "3.12"]

        steps:
        - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

        - name: Set up Python
          uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
          with:
            python-version: ${{ matrix.python-version }}

        - name: Install dependencies
          run: |
            python -m pip install --upgrade pip
            pip install .[dev]

        - name: Run tests with pytest
          run: pytest tests/ --cov=qickit --cov-report=xml

        - name: Run mypy
          run: mypy qickit

        - name: Run ruff
          run: ruff check qickit

        - name: Upload coverage reports to Codecov
          uses: codecov/codecov-action@1e68e06f1dbfde0e4cefc87efeba9e4643565303 # v5.1.2
          with:
            files: ./coverage.xml
rugged root
#

One of my favorite songs of all time

upper basin
#

Roses are red, Violets are blue, everyone needs voice verification, and that includes you!

#

Just spam this in their dm @rugged root

#

"Morpho 3-1, requesting precision strike on my location. Danger close approved."
"Charlie 6-0, Morpho 3-1. 1 mike to target, strike inbound. Danger close."

gentle flint
#

!resources

wise cargoBOT
#
Resources

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

wise loom
#

@lilac geyser f-strings are for string formatting

upper basin
#

!e

a = 2
print(f"The number is {a}!")
wise cargoBOT
upper basin
#

@lilac geyser

#

You use it like this.

#

It's quite elegant.

#

I have the primal urge to mark a target with IR to request air strike.

modern socket
#

He sounds like radio guy

still herald
#

Hello

upper basin
#

@jaunty turret

modern socket
digital lynx
#

whbats up

#

whats up

lilac geyser
#

your typing in here @digital lynx

digital lynx
#

wym

short owl
#

is RUST everything you thought it would be ? @rugged root

#

is that chained execution ?

#

python --> executes C

#

When you have foggy weather you need a laser pointer to play with @lilac geyser

#

energy vampires

#

if you have a interaction with some one - then feel emotionally depleted , self doubt ... ect , usually they do it on purpose .. many are intentionally destructive

sour willow
#

wsg hem

#

cant join the vc but figured id say hi

short owl
#

cyber truck is boxy , over price

rugged root
#

@surreal dome Yo

#

@marble yacht Yo to you as well

marble yacht
#

I'm good but cannot speak !

surreal dome
#

ok holden

#

who even are you

marble yacht
#

This is me right now how can I get unmuted ?

surreal dome
#

maybe message some more

rugged root
surreal dome
#

it says it on there

marble yacht
#

Thank you

surreal dome
#

you heard me

#

amiright

#

working 8 hours isnt an easy thing

marble yacht
#

Try nightshifts buddles

surreal dome
#

buddles?

#

this baka is being so not sugoi

#

...

#

where did everyone go

marble yacht
#

Sorry I had to do something what does sugoi mean ?

surreal dome
#

do you not watch anime?

marble yacht
#

No I read manga....

surreal dome
#

im surprised you can turn the pages

marble yacht
#

Mods ?

rugged root
#

@severe oasis Yo

severe oasis
#

hi

#

names raid

surreal dome
#

whats an alt

#

HAHA

#

good one crow

marble yacht
#

He's not a crow actually

surreal dome
#

ok holden???

marble yacht
#

Ok.

severe oasis
#

wut we gunnu talk bout

surreal dome
#

its not one person

severe oasis
#

?

#

whos one person

surreal dome
#

me and raid are one person

severe oasis
marble yacht
surreal dome
#

ok see right holden dont start some lies

#

or ill have to get mr. hemlock to warn you

marble yacht
#

Are you all right tangy ?

surreal dome
#

no im all left

severe oasis
surreal dome
#

๐Ÿคฃ ๐Ÿคฃ ๐Ÿคฃ

marble yacht
marble yacht
surreal dome
#

yeah yapping

#

woops wrong account

marble yacht
#

excuse em moi ?

severe oasis
#

your foolin nobody

marble yacht
#

Yeah tangy your not funny

surreal dome
#

you;re*

marble yacht
#

Mods ??????????????????????

severe oasis
rugged root
#

Alright, this stops now or I'm stopping it. Both @marble yacht and @surreal dome. Cut it out with the banter

severe oasis
#

how old are u

surreal dome
#

he started it

severe oasis
#

๐Ÿคฃ

marble yacht
#

Bye tangy

surreal dome
#

you silly bakas arent on my power level anyway

rugged root
#

!mute 755178849247035532 1d I already asked you to stop the bickering. Please take this time to reflect on your behavior.

severe oasis
#

deff a 12 or under

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied timeout to @surreal dome until <t:1735337347:f> (1 day).

marble yacht
#

Thank you

severe oasis
#

grfkemlvmfrgv'lf#;rgv#

#

sorry

#

my keyboard wasnt working

#

so what are we taalking about

gentle flint
#

Track 10 from the album 'Schvitz' by Vulfpeck

Antwaun Stanley โ€” vocals
Theo Katzman โ€” vocals
Jack Stratton โ€” drums, composer, mixing, editing
Woody Goss โ€” wurli
Cory Wong โ€” guitar
Joe Dart โ€” bass
Joey Dosik โ€” vocals
Jacob Jeffries โ€” vocals, composer
Raul Fernandez โ€” cinematography spaceship scene
Nick Nagurka โ€” engineer
Mike Shea โ€” camera

โ–ถ Play video
somber heath
#

@silent lodge ๐Ÿ‘‹

#

@steady laurel ๐Ÿ‘‹

steady laurel
#

๐ŸŒ

somber heath
#

@blazing flax ๐Ÿ‘‹

gentle flint
#

Knob-and-tube wiring (sometimes abbreviated K&T) is an early standardized method of electrical wiring in buildings, in common use in North America from about 1880 to the 1930s. It consisted of single-insulated copper conductors run within wall or ceiling cavities, passing through joist and stud drill-holes via protective porcelain insulating tub...

somber heath
#

@hollow bough ๐Ÿ‘‹

rugged root
gentle flint
somber heath
#

@keen mango ๐Ÿ‘‹

gentle flint
somber heath
#

@brazen python ๐Ÿ‘‹

gentle flint
somber heath
#

@severe oasis ๐Ÿ‘‹

severe oasis
#

hi

gentle flint
rugged root
gentle flint
severe oasis
#

hi guys any tips for a beginner in python with adhd?

#

๐Ÿ‘

gentle flint
rugged root
gentle flint
severe oasis
#

i cant just get the motivation to start and i really want to

gentle flint
severe oasis
#

thanks

#

is it possible to turn that into a pdf

rugged root
#

At the very bottom of that page it has a pdf

severe oasis
#

it actually works

#

thanks

severe oasis
#

i just sneezed and broke my rib ๐Ÿ˜ญ

gentle flint
#

doubt

severe oasis
#

press x to doubt

gentle flint
lilac geyser
#

import datetime
import logging
import random
import time
import threading
import sqlite3
import numpy as np
from cryptography.fernet import Fernet
import psutil
from sklearn.neural_network import MLPClassifier
import torch
import torch.nn as nn
import torch.optim as optim
from transformers import GPT2LMHeadModel, GPT2Tokenizer
import tensorflow as tf
from scapy.all import sr, IP, ICMP, TCP

primal shadow
#

!paste

wise cargoBOT
#
Pasting large amounts of code

If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/

After pasting your code, save it by clicking the Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.

primal shadow
#

hAIcker'

high pumice
lilac geyser
wind raptor
#

@smoky delta Your typing noises and clicks are really loud coming through the mic. Can you please turn on crisp or push to talk?

smoky delta
somber heath
#

!paste

wise cargoBOT
#
Pasting large amounts of code

If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/

After pasting your code, save it by clicking the Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.

ember wren
#

bros in the peaky blinders

#

@smoky delta is ur name cyrus

#

u sound exactly like my friend

pastel comet
#

@pastel atlas @lilac geyser hello!

#

Can you help with my code

#

PyCharm has a free community edition

pastel atlas
#

sure

#

our bad we were looking elsewhere

forest zodiac
lilac geyser
#

!paste

wise cargoBOT
#
Pasting large amounts of code

If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/

After pasting your code, save it by clicking the Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.

bronze pivot
#

what are yoy making?

#

hello batman

#

whats up?

#

@late spoke what are you making

late spoke
#

following a tutorial

bronze pivot
#

oh sickm

#

what is FREECAD

#

oh i see

late spoke
#

software for 3D modelling

bronze pivot
#

yea, I see

#

looks complicated but cool

bronze pivot
#

are you leaving AB?

somber heath
#

@whole bear ๐Ÿ‘‹

#

@sour quail ๐Ÿ‘‹

sour quail
#

Hi

somber heath
#

@rapid jungle ๐Ÿ‘‹

rapid jungle
somber heath
wise cargoBOT
#
Voice verification

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

rapid jungle
torn yarrow
#

blud missed dot net bubble

#

๐Ÿ˜ญ

somber heath
#

@whole bear ๐Ÿ‘‹

whole bear
#

Hi

#

Sup?

#

Just use phone for call

somber heath
#

Wind OS.

whole bear
#

I downloaded cs2 like few weeks ago

somber heath
#

Wind-Os breakfast cereal.

#

Extra crunchy.

whole bear
#

Bye

somber heath
#

@whole bear ๐Ÿ‘‹

whole bear
#

hello

#

If I get 1 dollar each from every man I would be billionaire

#

@versed heath Go ahead, I've watched the whole movie

#

Pirated

#

It's was good

#

You are talking about the movie in which billie eilish sang?

#

Have you watched squid game?

torn yarrow
#

which movie

whole bear
torn yarrow
versed heath
#

!rule 5

wise cargoBOT
#

5. Do not provide or request help on projects that may violate terms of service, or that may be deemed inappropriate, malicious, or illegal.

whole bear
#

My bad

#

Wdym?

#

Damn

#

Cyberbond

#

Female bond must be sassy

#

Why not both?

#

I do know why they made such a rule

#

Imagine some dude streaming his nudes

#

It happened to me in one of server

#

Guy came in VC and he flashed his pp

#

My day was ruined

#

๐Ÿ˜ฉ

chrome pewter
#

๐Ÿ’€

somber heath
#

@graceful dagger ๐Ÿ‘‹

whole bear
# chrome pewter ๐Ÿ’€

Dude it really happens, some even stream adult content ๐Ÿ˜ž.
Intentionally to ruin the kids or minor in vc

#

I don't know why they do

somber heath
#

@fresh pecan ๐Ÿ‘‹

fresh pecan
#

yo whats up

#

its kinda bs that i gotta send 50 messages

#

to get vc verified

versed heath
#

just talk

#

just have a conversation

#

then youll get it

fresh pecan
#

you are not talking to a robot i've had conversations

#

that happense on every server

rapid jungle
#

does any one here is up to for collab ?

fresh pecan
#

thats just wrong this is the internet

#

you have to learn to ignore trolls

#

oral?

#

what

#

xd

versed heath
#

earlear

somber heath
#

Aural.

chrome pewter
#

oral assault xD

#

print("@modern socket !")

fresh pecan
#

it is effective but annoys a lot of people who want to join and just speak and learn and have no trolling intentions

somber heath
#

@modern socket @waxen fable ๐Ÿ‘‹

modern socket
#

@versed heath Hey rabbit, you like windows?

fresh pecan
#

i have joined this server like a year ago

#

and still havent got the vc verified role

#

you are over reacting mate goodbye

modern socket
modern socket
versed heath
modern socket
#

MacOs is my bro

torn yarrow
#

LMAO

#

I was aboout to ask same question lol

#

Maxxx

chrome pewter
#

!e

print("Hello World")
wise cargoBOT
torn yarrow
#

Austlians mostly speak Pitjantjatjara (pronounced pigeon-jarrah) and Yankunytjatjara (pronounced young-kun-jarrah), which are dialects of the Western Desert language. Before Europeans arrived in Australia, there were up to 300 different Aboriginal languages and around 700 different dialects.

modern socket
#

!e

print("Hello @Vastal")
wise cargoBOT
modern socket
#

@versed heath Wdym?

#

I'm manjaro user

chrome pewter
wise cargoBOT
modern socket
#

!e

print("I'm good bro ")
wise cargoBOT
chrome pewter
#

!e

import os
os.system('/shutdown')
wise cargoBOT
modern socket
wise cargoBOT
somber heath
#

#bot-commands

versed heath
#

!e

h = "h"
e = "e"
l = "l"
o = "o"
space = " "
w = "w"
r = "r"
d = "d"

print(h+e+l+l+o+space+w+o+r+l+d)
wise cargoBOT
modern socket
#

Damn!

chrome pewter
modern socket
#

@torn yarrow I use my brian for coding

#

How about you?

torn yarrow
#

code editor

versed heath
#

I use Brian

#

my frien

#

d

modern socket
#

More you use brain, more you feel like thanos

somber heath
#

@silent bay ๐Ÿ‘‹

fiery coral
modern socket
#

@somber heath Nah, it doesn't work like that, a human touch is needed

sour willow
#

just so you know

#

there was a guy that did end his own life because of a similar thing

chrome pewter
sour willow
late spoke
fresh pecan
#

8 out of 10 people are muted lol

modern socket
#

GPT encouraged a young boy to take his own life!!!

sour willow
#

ah not the one i specifically wanted but yeah

chrome pewter
sour willow
#

yeah this thing is old

modern socket
#

I do thing that there is no such a thing like love

#

At least in moder era among couple

chrome pewter
modern socket
#

I do believe in love but I do not believe in love among a couple

#

I believe in mother-son love , father-son, like that.

south loom
#
somber heath
#

@random bear ๐Ÿ‘‹

late spoke
chrome pewter
modern socket
fiery coral
#

@silent bay ๐Ÿ™Œ

silent bay
fiery coral
#

"Hello World" is popular to developers. lol

modern socket
#

It has to do

somber heath
#

@brisk haven ๐Ÿ‘‹

fiery coral
chrome pewter
somber heath
#

@stoic sierra ๐Ÿ‘‹

#

@normal solar ๐Ÿ‘‹

chrome pewter
#

now don't say that you also didn't had feelings for her

modern socket
#

Bro don't know about me and how come you make such a conclusions?

primal shadow
somber heath
#

@whole bear ๐Ÿ‘‹

whole bear
#

hihi

rugged root
#

Pretty busy place this morning

chrome pewter
modern socket
# chrome pewter so you had feelings right?

I was in a relationship for over two years, during which I became close to her family. She lived with me in my apartment, and despite everything we shared, she eventually betrayed me by choosing to be with a wealthy man.

chrome pewter
#

so clearly she was not loyal to

whole bear
#

^

chrome pewter
#

now leave this topic bro

#

we have different opinions

whole bear
#

griefing it isnt gonna get no where, in a case like that, you needa get over it and move on

#

nor telling the world on the internet.

modern socket
peak depot
#

internet is a bad therapist

chrome pewter
#

bye going for dinner

whole bear
#

I wouldn't call that an assumption, even tho what your experiencing isn't an opinion, hes line most likely stands... no ones the same, everyone has diff opinions

primal shadow
torn yarrow
#

intel was overly dependent on 8085processor

#

intel are still doing ok with CPUs but AMD took off with GPUs

quartz beacon
torn yarrow
#

fun fact: intel and amd CEOs are cousins

modern socket
torn yarrow
#

long distance, yes

#

watch the bloomberg video

quartz beacon
modern socket
#

She is ceo of amd

#

Jensen is ceo of Nvidia

torn yarrow
#

oh sprry

#

nvidia and inetl

modern socket
#

nvidia and amd

primal shadow
#

Wonder if looking up too many CEO's throws you on a list these days

rugged root
#

Only if you are looking at where they're going to speak at conferences

quartz beacon
primal shadow
quartz beacon
rugged root
modern socket
rugged root
#

Look at multiple sources and take the average

primal shadow
#

Do we not need to use sources for that?

#

I can't determine the lineage of CEO's on my own

rugged root
#

Does a paternity test count as a source?

primal shadow
#

Am I supposed to pluck their hairs and test the DNA myself?

#

Can't trust a third party lab

#

BRB, learning genome sequencing

modern socket
#

@primal shadow Are you okay?

abstract vector
#

I need help I cant speak in this server

#

I need to get pipx working

primal shadow
#

!voice

wise cargoBOT
#
Voice verification

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

abstract vector
#

can I post link in this chat?

#

its github link

primal shadow
#

That's against the rules

#

!rules

wise cargoBOT
#

The rules and guidelines that apply to this community can be found on our rules page. We expect all members of the community to have read and understood these.

primal shadow
#

!rule 5

wise cargoBOT
#

5. Do not provide or request help on projects that may violate terms of service, or that may be deemed inappropriate, malicious, or illegal.

rugged root
#

!yt-dl

wise cargoBOT
#
Our youtube-dl, or equivalents, policy

Per Python Discord's Rule 5, we are unable to assist with questions related to youtube-dl, pytube, or other YouTube video downloaders, as their usage violates YouTube's Terms of Service.

For reference, this usage is covered by the following clauses in YouTube's TOS, as of 2021-03-17:

The following restrictions apply to your use of the Service. You are not allowed to:

1. access, reproduce, download, distribute, transmit, broadcast, display, sell, license, alter, modify or otherwise use any part of the Service or any Content except: (a) as specifically permitted by the Service;  (b) with prior written permission from YouTube and, if applicable, the respective rights holders; or (c) as permitted by applicable law;

3. access the Service using any automated means (such as robots, botnets or scrapers) except: (a) in the case of public search engines, in accordance with YouTubeโ€™s robots.txt file; (b) with YouTubeโ€™s prior written permission; or (c) as permitted by applicable law;

9. use the Service to view or listen to Content other than for personal, non-commercial use (for example, you may not publicly screen videos or stream music from the Service)
abstract vector
#

its not for youtube

primal shadow
#

Stealing bad ๐Ÿ˜ฆ we don't do

abstract vector
#

its for YLE

rugged root
abstract vector
#

Im not Russian...

quartz beacon
abstract vector
#

I live outside EU and cant acces YLE series

#

I want to bypass it

#

by just downloading the videos instead

peak depot
#

use vpn

abstract vector
primal shadow
#

It sounds liek you are trying to get around their access restrictions

#

which is a violation of terms

#

so we cannot help

abstract vector
#

Is there any decent VPN that is free?

timid marten
#

You know...salted popcorn and jazz by the fireplace is pretty nice.

modern socket
primal shadow
#

We're not here to assist skirting international rules

timid marten
primal shadow
#

Helping people break rules is a violation of the rules, BTW for the others

abstract vector
#

Can I fake being from Scotland with proton?

quartz beacon
#

-_-

#

even if, you shouldn't

abstract vector
#

I live in Belarus and cant acces anything

timid marten
modern socket
abstract vector
#

This site also got the series I want but I need scottish VPN

primal shadow
#

Yea, we dont' help break rules

#

it's noit what we do

quartz beacon
#

ะะฐะฒะพัˆั‚ะฐ ะฒะฐะผ, ัะบ ะฑะตะปะฐั€ัƒััƒ, ั„ั–ะฝัะบะฐะต ั– ัˆะฐั‚ะปะฐะฝะดัะบะฐะต ั‚ัะปะตะฑะฐั‡ะฐะฝะฝะต?

abstract vector
#

VPN is not a crime though is it?

primal shadow
#

Not a crime, but you're breaking terms

primal shadow
#

we don't just worry about the law, we respect the terms of service as well

#

violating the terms is rarely illegal, but it's still against server rules

primal shadow
#

So we do not help with it for that reason

timid marten
abstract vector
#

Is there any other VPN that is free?

quartz beacon
primal shadow
#

Which is why we then have this fun conversation

timid marten
abstract vector
#

I tried the chome extension ones and they dont work

timid marten
#

I know this cool thing you can search up.

abstract vector
#

I cant

timid marten
abstract vector
#

90% of internet is blocked here

#

Cant even go on youtube

primal shadow
#

It's your government asking to be overthrown.

timid marten
#

Rip that link.

primal shadow
#

I did read something about some potential activity in January

quartz beacon
#

it was letmegooglethat

timid marten
abstract vector
quartz beacon
#

nop

abstract vector
#

oh

timid marten
primal shadow
#

No, we cannot. Them's the rules.

#

We respect the rules or get muted / banned, and we don't want to do that.

timid marten
#

You have tools which you can use but we can not aid you directly.

abstract vector
#

If you send me DM its not breaking the rules ๐Ÿ˜…

modern socket
abstract vector
#

Because KGB is spying on me

timid marten
modern socket
quartz beacon
abstract vector
#

The thing I post next could set me 10 months in jail

modern socket
#

@abstract vector Use dark web and visit the CIA website and mail them about you.
No body can stop you now!!

timid marten
abstract vector
#

Wow, the KGB works fast nowadays. See ya in 2027 when im released

timid marten
modern socket
#

Did he got timed out?

rugged root
#

Not by me

timid marten
modern socket
#

No freedom for him

#

LOL

primal shadow
#

I think they jailed themselves.

quartz beacon
timid marten
# quartz beacon

Look up "Florida man" followed by your birthday and tell me what news was there.

primal shadow
quartz beacon
primal shadow
rugged root
#

Did your kid go to a rave?

quartz beacon
#

@rugged root

primal shadow
upper basin
#

Stand back, Imma toothpaste squeeze the nuts.

modern socket
#

Why do non-Americans often talk about American culture, trends, and phenomena, such as "Florida Man," etc.?

upper basin
#

Baby just gets jacked immediately. Source: Trust me bro

grave moat
# grave moat
poll_question_text

What do u love?

victor_answer_votes

0

total_votes

0

primal shadow
timid marten
upper basin
#

Endian

austere parrot
primal shadow
#

Just like we all appreciate Raygun in America

#

even though she's Australian and performed in Paris

#

But she still dominated our headlines

#

if it's funny it's funny

primal shadow
torn yarrow
#

Since ACE is here

#

i wanna ask

#

Willowโ€™s performance on this benchmark is astonishing: It performed a computation in under five minutes that would take one of todayโ€™s fastest supercomputers 1025 or 10 septillion years. If you want to write it out, itโ€™s 10,000,000,000,000,000,000,000,000 years. This mind-boggling number exceeds known timescales in physics and vastly exceeds the age of the universe. It lends credence to the notion that quantum computation occurs in many parallel universes, in line with the idea that we live in a multiverse, a prediction first made by David Deutsch.

#

how did they come up with multiverse in here @upper basin ?

#

is it just PR?

upper basin
#

Multiverse is just an interpretation of quantum mechanics.

#

It's based on Feynman's path integral idea (kind of).

torn yarrow
#

yes its fast, it can do 10 septillion yearss work in 5 minute but how does it prove that multiverse exists?

upper basin
#

Feynman's version of doing quantum mechanics (he sat down for 3-4 years and derived his own quantum mechanics, that was better for certain use-cases) was that to express how a system behaves, you must consider all the ways it can behave.

upper basin
#

Think of it as sth like GPU vs CPU.

#

That's all.

torn yarrow
upper basin
#

It's doing alot of operations in parallel.

#

Not magic or anything like that.

torn yarrow
#

yes, just got confused when they dropped multiverse word

upper basin
#

It's just them ruining quantum computing.

austere parrot
#

The first practical application of quantum computers will be in cryptocurrency mining

upper basin
#

Quantum computing is really just another paradigm for HPC.

torn yarrow
#

i se

primal shadow
#

Mortal Kombat ALL Friendships Ever Made (Scorpion, Sub Zero, Rambo) 4K ULTRA HD

If you liked the video please remember to leave a Like & Comment, I appreciate it a lot!

Follow me on Twitter - https://twitter.com/MKIceAndFireMK
SUBSCRIBE - https://www.youtube.com/channel/UC1bwliGvJogr7cWK0nT2Eag?sub_confirmation=1
Support MKIceAndFire and becom...

โ–ถ Play video
torn yarrow
#

wuss diss?

torn yarrow
primal shadow
#

I quite enjoy shows like that, but did not watch black mirror

torn yarrow
#

highly recommended

primal shadow
#

if I pick up netflix I'll try to remember

austere parrot
upper basin
#

Sigh

#

We made quantum computers to solve optimization and simulation use-cases.

#

Now we're trying to make it into sth that can be interfaced using classical programming language UI.

#

The main usecases are simulation, optimization, factorization, and search.

#

These form the pillars of quantum algorithms.

#

If you really want to learn about these and trolling me, check out The great unification of quantum algorithms, aka quantum singular value transformation.

#

TLDR; QSVT is essentially a class representing quantum algorithms. Other algorithms, like Shor's factorization algorithm, Grover's search algorithm, Hamiltonian simulation, etc. become concrete subclasses of this class. It unifies how we interpret and implement them. It gives them a common interface.

#

The quantum cryptography that you're talking about is based on Shor's factorization, and it's not what Shor made the algorithm for.

timid marten
#

Sigh, can someone do me a favor?

#

Please?

rugged root
#

Sup

amber raptor
#

Maybe

rugged root
#

Let you know when the convo is done?

timid marten
#

I would like a side quest.

rugged root
#

Go slay 10 slimes

timid marten
#

Iโ€™m bored out of my mind right now.

primal shadow
#

Is that a programming chalelnge?

timid marten
primal shadow
#

make a snake game in the console.

#

no game engines

#

you build it

#

just a simple grid

timid marten
primal shadow
#

16x16

timid marten
rugged root
#

Sure. Go to the store, make some Jello, punch it

primal shadow
#

punching jello, a good time

timid marten
primal shadow
#

can even put fun items in it

#

and have slime drops

timid marten
#

Thank youuuuuuu!

timid marten
rugged root
#

You will get 20 extra exp

timid marten
#

Ok but all jokes aside, thanks ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ

upper basin
#

If I go to vc1, will you come Hemshake?

#

I'll give you a strategem.

#

It rains gummy bears to clog the androids' gears.

austere parrot
upper basin
#

All of them do.

rugged root
#

@upper basin We're talking about favorite games from 2024

upper basin
#

What's a quad A?

rugged root
#

Over over budget

upper basin
#

Do we even have quad A games?

#

cdouble A.

#

clongdouble A.

#

Lavate las manooos!

#

Got reminded of American dad.

timid marten
#

@rugged root Iโ€™m here to turn in my side quest.

#

I made red jell-o into a slime with googly eyes and sliced it.

timid marten
rugged root
terse needle
#

I'm off, I have to pick up my partner from work

lethal shell
#

Note: The Past Within is a co-op only game. Both players need to own a copy of the game, as well as a way to communicate with each other. Play together with a friend or find a partner on our official !The past and future cannot be explored alone! Team up with a friend and piece together the mysteries surrounding Albert Vanderboom. Communicate wh...

Price

$3.59

Recommendations

12519

โ–ถ Play video
rugged root
#

Ooo

#

That does look cool

peak depot
#

This is the story of how I built a small tent camp into a kingdom the conquered the entire world! Along the way, I even learned that sending my archers info melee combat was a bad idea.

This is a supercut of my entire Manor Lords series, from day 1 to day 5,860. Because of how this was originally recorded, I think it might actually flow bette...

โ–ถ Play video
lethal shell
# rugged root That does look cool

horror coop puzzle game, downside, you need another person to play all the time and cant finish the game without them, note to ppl, if you are bad at communicating together it might test your mentals. But over all this type of game is my favorite, looking into other developers work

rugged root
#

I think my wife and I would be good at these kinds of things. We're pretty much always on the same page

lethal shell
#

I tried it out with my boyfriend actually ๐Ÿ™‚ we also had it takes two

#

deffinetly worth it.

torn yarrow
#

cat

#

shall i rename to catman

lethal shell
#

as long as you have your beautiful cat on pfp

#

i will recognise you

#

but i added a note for you

upper basin
#

Sorry my WiFi went out.

#

Still out.

#

What were you saying Hemlock?

lethal shell
upper basin
#

Compilahhh

upper basin
#

You'll love it.

#

What's that aboot?

#

I would like some crepe, ey.

#

I'm gonna name mine qcl. Quantum Compiled Language.

#

You'd pronounce it as castle.

#

Logo would be a rook.

#

acks acks acks

#

GamenPoopen

#

GamenPoopen is taken.

#

GamenScheisse HEHE @rugged root

#

SpielenSchiese

#

I'd like some spilenschiesse.

#

You spilenscheisee?

#

Ja

versed heath
#

splielen wรคhrend dem scheiรŸen

upper basin
#

Take dem outta here.

#

I don't like the library of die der they have.

#

Single hardest part of german.

#

Don't make me say some words yall get bed wetting from.

#

Ghostantanieh

#

Ghostantanieh, Ghostantanieh, Ghostantanieh!

#

I summon this guy.

#

Your move.

versed heath
#

I summon the Donaudampfschifffartsgesellschaftskapitรคnskahรผtenรผberprรผfungsroboterbauingeneursanheuerer

upper basin
#

Too long, you died before you could finish your sentence.

rugged root
#

@verbal comet @amber frigate @supple crow Hello to you all

grave moat
#

How do I complete 50 messages on this server?

upper basin
upper basin
#

CONVERSE with me.

#

PAY ATTENTION TO MEEE!

supple crow
#

i can't hear none of u gng

verbal comet
#

cant i jst spam or sum๐Ÿ˜ญ

upper basin
verbal comet
#

shi mb

grave moat
#

Good.What about u @upper basin

upper basin
#

You will get perma banned and FBI will raid your home.

amber frigate
#

i like men

upper basin
verbal comet
#

trust me

amber frigate
#

testicular cancer is ma therapy

grave moat
#

FBI open up.

upper basin
verbal comet
#

not the FBI

amber frigate
#

not jking

verbal comet
#

๐Ÿคฆโ€โ™‚๏ธ

amber frigate
#

how dare u

#

INSULT ME

#

im to afghani

upper basin
#

Mjolnier him Hemlock.

amber frigate
#

NIAZI

upper basin
#

All father command.

amber frigate
#

NOT NAZI

verbal comet
#

NO

amber frigate
#

IDIOT

verbal comet
#

ITS HIS NAME

#

ACTUALLY

amber frigate
#

THTS MA NAME

grave moat
#

Every one is typeing.

verbal comet
#

i swear

#

its a asian name

amber frigate
#

not people the one tht called me nazi

verbal comet
#

WHATD WE DO

amber frigate
#

I JUST GOT HERE?

#

HUH

#

bet

upper basin
#

I have a particular set of skills, and I will find you, and I will tickle you to death.

verbal comet
#

I didnt even do nun๐Ÿคฆโ€โ™‚๏ธ

amber frigate
#

ohh mbb

#

gng

verbal comet
#

nah cause you mispronounced his name

#

and said

amber frigate
#

EXACTLY

verbal comet
#

it was a certain german army

grave moat
#

@upper basin are u chat GPT?

amber frigate
#

for me

upper basin
verbal comet
#

yea niazi is correct

upper basin
#

Regenerate.

verbal comet
#

๐Ÿ˜ญ

rugged root
#

@jolly pendant @mental niche Hello to you both

mental niche
#

Hllo

jolly pendant
#

Hellloooo

#

Ughhh sooo

#

Lol

mental niche
#

Im working late

#

Cause ima singer ๐Ÿ˜‚

jolly pendant
grave moat
#

@versed heath are u windows 10?

jolly pendant
#

Hey can anyone help me with a problem i am facing

rugged root
grave moat
jolly pendant
#

In Developing

grave moat
#

Sing twinkle twinkle little star.

jolly pendant
#

Like in android studio

rugged root
mental niche
#

0-0=0
1-0 = 1
0- 1= 0
1-1=0

jolly pendant
#

Imma send ss

#

I don't know how to solve this problem

#

@rugged root...

rugged root
#

Where is it giving you the error outputs

grave moat
#

Do you guys have ffmpeg knowledge?

torn yarrow
#

is it true though about batteries?

jolly pendant
#

And it's been a week...

#

๐Ÿ˜ญ

rugged root
#

Hmmm... I don't really think I can help too much on that. Let me see if I have any good resources or other servers that'd be more helpful

#

One sec

jolly pendant
#

Yea okay

rugged root
#

Nevermind, found it

rugged root
#

Sorry I couldn't be of more help!

dry jasper
torn yarrow
#

mit courseware?

dry jasper
#

@uncut sky

uncut sky
#

Yeah

dry jasper
#

check out the link

uncut sky
#

Send me priv

uncut sky
#

K

#

Thank you very much

dry jasper
short owl
#

wild west of ideas , prompts evolution @rugged root

rugged root
#

@iron geyser We're getting echo from your mic. Can you either use push to talk, mute when you're not talking, or double check your settings?

#

You might not have echo cancelation on

#

Thanks

rugged root
#

All good! It happens

iron geyser
torn yarrow
#

morning @somber heath

short owl
#

how many languages do you speak ? @uncut sky

rugged root
#

Yeah. Should be Settings > Voice & Video > Advanced > Echo Cancellation

iron geyser
short owl
#

thats very cool @uncut sky

iron geyser
#

Look ๐Ÿ™‚

short owl
#

is your first programming language python ? @uncut sky

iron geyser
#

echo cancellation it's checked

short owl
#

then you can branch to other languages easily for added abilities @uncut sky

uncut sky
#

Why ur not talking in vs

#

vc

short owl
#

Is RUST everything you thought it would be @rugged root

austere parrot
#

What languages โ€‹โ€‹do you speak?

  • Python
rugged root
short owl
#

any downsides OR or upsides ? @rugged root

iron geyser
#

my bad level in english ๐Ÿ˜ฆ

#

You com from india sir frog ?

rugged root
#

Upside is the compiler and how it makes aboslutely sure you're covering your bases

short owl
#

would it be benificial to use python as the front then pass data to RUST for microcontrollers @rugged root

rugged root
#

Maybe? I'd have to think about it more. I'm trying to wrap something up at the moment

short owl
#

mmm ok

#

just comparing - C , C++ , RUST for microcontrollers @rugged root

#

RUST is supposed to have a more secure memory model than C or C++ , I want to use it for microcontrollers, ( MCU = micro controller unit ) @uncut sky

#

your core English grammar is very good , after 3 languages you have the model to learn language - most westerners dont have this @uncut sky

fresh pecan
#

what