#voice-chat-text-0

1 messages Β· Page 266 of 1

gentle flint
whole bear
gentle flint
thin lodge
#

Which is the best watch for someone who goes to the gym and wanna track his workout and meals ?

#

cost-efficient pithink

peak depot
#

Oura ring

rugged root
#

I thought those were pricier than fit-bits

stark river
#

rolex

thin lodge
peak depot
#

Oura Health Oy is a Finnish health technology company, known for the Oura Ring (stylized Ōura), a smart ring used to track sleep and physical activity. The company was founded in 2013 by Petteri Lahtela, Kari KivelÀ, and Markku Koskela. Harpreet Singh Rai was the CEO from 2018 until 2021, when he was replaced on an interim basis by Michael Chapp...

#

IΒ΄m not bias, at all!

junior heron
#

@rugged root let me share my screen please

ivory stump
#

what would you like to stream?

junior heron
#

typing script

ivory stump
#

!stream 990881008024952842

wise cargoBOT
#

βœ… @junior heron can now stream until <t:1708968342:f>.

sweet lodge
#

I can?

#

THANKS!

thin lodge
#

see u folks

stuck furnace
#

J9 I think made all the lemojis?

#

I know she made at least one πŸ˜„

rugged root
#

A fair number of them I think

stuck furnace
sweet lodge
rugged root
#

@junior heron Turn on that

elfin tundra
rugged root
#

@junior heron In here

sweet lodge
slim field
ivory stump
#

...

#

!stream 990881008024952842

wise cargoBOT
#

βœ… @junior heron can now stream until <t:1708968877:f>.

elfin tundra
slim field
#

@stuck furnace in chat :0

sweet lodge
junior heron
#

can you here my keyobard sound buttons ?

slim field
elfin tundra
sweet lodge
slim field
sweet lodge
slim field
sweet lodge
slim field
sweet lodge
#

y

pale sigil
#
def __init__(self, improvement):
peak depot
peak depot
#

No?

sweet lodge
rugged root
#

@junior heron Are you going to be streaming any code? If not, please hop off of the stream

stuck furnace
#

We had to keep this number above 20% to retain partnership:

rugged root
slim field
#

@whole bear 1v1

ivory stump
#

Yes

sweet lodge
#

o

ivory stump
#

Looks like a naming issue

sweet lodge
#

yea fix that

ivory stump
slim field
#

@elfin tundra use autosave

sweet lodge
slim field
elfin tundra
stuck furnace
#

Did you save?

slim field
#

bro y running different file

#

exactly

elfin tundra
slim field
ivory stump
#

press Ctrl-Z

#

Then press the run button again

ivory stump
#

cool

#

Basically, when you press run it pastes the instructions to run your code. But you were already inside another program, not the base terminal. So it didnt understand

slim field
#

@elfin tundra have u learned programming basics?

ivory stump
#

Gone like the wind

#

sure is

whole bear
#

@stuck furnace Hello my fav mod

gentle flint
whole bear
elfin tundra
slim field
elfin tundra
#

I know these

stuck furnace
#

I'm not typing πŸ‘€

elfin tundra
#

I know all the basics, but didn't know nothing about any problems that would occur in vsc

sweet lodge
stuck furnace
#

I'm indecisive so sometimes I type out messages and delete them pithink

slim field
#

@stuck furnace is the goat he helped me learn neovim

ivory stump
#

Or driving home from work

#

Slightly offended that means Hemlock doesn't like us all enough to marry us

slim field
#

@whole bear say to your mom Noooooooo!

#

bro loves games more than his family

ivory stump
#

Most of them?

#

I'd say all of them but I might have missed someone

whole bear
#

.8ball will I get married

viscid lagoonBOT
#

Don't count on it

whole bear
#

Oh cmon

#

.8ball Who is the best mod?

viscid lagoonBOT
#

Better not tell you now

whole bear
#

.8ball Is Hemlock the best admin?

viscid lagoonBOT
#

Ask again later

ivory stump
#

πŸ‘‹

whole bear
#

@gilded shadow

#

can somone guide me how to use python??

#

im new just started i know about numbers im struggling on strings atm

#

!res

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.

somber heath
#

I commonly recommend Corey Schafer's Python playlist, Python for Beginners.

#

@whole bear

whole bear
somber heath
#

I'd jump on, but I feel crap.

whole bear
#

@harsh ivy πŸ‘‹

#

@wicked relic πŸ‘‹

undone inlet
frozen owl
#

idk

#

it was gone

#

idk why

#

i didnt do anything

#

oh i think i was given a video perm but it was temporary

#

like i probs got it for a few weeks?

#

idk why

#

yeah sure

#

idk im on discord web for some reason mic didnt work for a while

#

anyways

#

you usually dont get video perms

#

but if you are in the server and vc for long enonugh

#

and the admins and mods trust you

#

they may grant you trial vc

#

i think that's what i got twice

#

but i think they never followed up for me

#

so yeah

#

i only got temp

#

like i got video perms for a while?

#

a few weeks?

whole bear
#

@rugged root Alkk lost his video perms

frozen owl
#

it probs was temporary, he gave it to me on christmas but was lost a while later. chris gave me perms again a few weeks ago but it's gone now lol, doesnt really matter imho, i stream sometimes my code but that's very mood dependent

undone inlet
whole bear
proud wigeon
#

hello

karmic obsidian
#

hey

#

you don't have voice previlages?

#

@proud wigeon

proud wigeon
#

yes

karmic obsidian
#

that's a yes to my question?

proud wigeon
elfin tundra
karmic obsidian
#

pip install numpy

#

virtual env?

elfin tundra
karmic obsidian
unkempt kraken
#

good night

karmic obsidian
elfin tundra
karmic obsidian
#

pip uninstall numpy

#

then install

karmic obsidian
elfin tundra
#

import torch
from torch import nn
import matplotlib.pyplot as plt
weight = 0.7
bias = 0.3

X = torch.arange(0, 1, 0.02).unsqueeze(dim=1)
y = weight * X + bias

train_split=int(0.8*len(X))
X_train,y_train= X[train_split:],y[train_split:]
X_test,y_test= X[:train_split],y[:train_split]
#print(len(X_train),len(X_test),len(y_train),len(y_test))
def plot_predictions(train_data=X_train,train_labels=y_train,test_data=X_test,test_labels=y_test,predictions=None):
plt.figure(figsize=(10,7))
plt.scatter(train_data,train_labels, c='b',s=4,label='Predictions')
plt.scatter(test_data, test_labels, c="g", s=4, label="Testing data")
if predictions is not None:
plt.scatter(test_data, predictions, c="r", s=4, label="Predictions")
plt.legend(prop={'size':14});

function=plot_predictions();
print(function)

unkempt kraken
#

wow

karmic obsidian
#

you can see None here on google colab too

#

import torch
from torch import nn
import matplotlib.pyplot as plt
weight = 0.7
bias = 0.3

X = torch.arange(0, 1, 0.02).unsqueeze(dim=1)
y = weight * X + bias

train_split=int(0.8*len(X))
X_train,y_train= X[train_split:],y[train_split:]
X_test,y_test= X[:train_split],y[:train_split]
#print(len(X_train),len(X_test),len(y_train),len(y_test))
def plot_predictions(train_data=X_train,train_labels=y_train,test_data=X_test,test_labels=y_test,predictions=None):
plt.figure(figsize=(10,7))
plt.scatter(train_data,train_labels, c='b',s=4,label='Predictions')
plt.scatter(test_data, test_labels, c="g", s=4, label="Testing data")
if predictions is not None:
plt.scatter(test_data, predictions, c="r", s=4, label="Predictions")
plt.legend(prop={'size':14});
return plt
function=plot_predictions();
print(function)

karmic obsidian
unkempt kraken
proud wigeon
#

hi

#

no no

turbid sandal
#

@rugged root

#

You know Mona?

karmic frost
#

hii

#

i am a super new python tester

#

can i get some manual help or teaching smthng ::)

unkempt kraken
karmic frost
#

yppppppp

karmic frost
#

;-;

unkempt kraken
whole bear
#

same

unkempt kraken
whole bear
#

i only know numbers rn

#

still struggling on strings

#

dosent make sense

unkempt kraken
#

dont worry

#

hi

#

@somber heath

somber heath
#

@sharp knot πŸ‘‹

unkempt kraken
#

hello @sharp knot

somber heath
unkempt kraken
#

@somber heath you good python?

somber heath
unkempt kraken
#

good byee

wet scroll
#

sup opal :D

#

at least its not like having absolutely no clue on what you are doing

#

cause i cant figure out what kind of directory structure to use for my project :(

#

i have no idea what you are saying

somber heath
#

@cerulean pike πŸ‘‹

wet scroll
#

man C++ is way confusing than i thought

#

sorry i gotta go

livid gate
#

Bruh

#

50 messages

#

😒

somber heath
#

Lest the screaming returns.

livid gate
slim field
#

can u show the code?

somber heath
#

@pallid peak πŸ‘‹

digital ermine
#

@slim field

slim field
#

yea i have this but no idea how to use it

#

download costing money for developers

#

@somber heath
you are teacher who students understand
but keeps talking a little bit more more
after the students understand the concept

#

@somber heath you are great teacher at helping i didnt mean to be rude

wise loom
slim field
peak depot
#

Tidymind, I can hear myself from your mic

versed heath
#

import pygame
from pygame.locals import *
from OpenGL.GL import *
from OpenGL.GLU import *

vertices = (
(1, -1, -1),
(1, 1, -1),
(-1, 1, -1),
(-1, -1, -1),
(1, -1, 1),
(1, 1, 1),
(-1, -1, 1),
(-1, 1, 1)
)

edges = (
(0, 1),
(1, 2),
(2, 3),
(3, 0),
(4, 5),
(5, 7),
(6, 7),
(4, 6),
(0, 4),
(1, 5),
(3, 6),
(2, 7)
)

def draw_cube():
glBegin(GL_LINES)
for edge in edges:
for vertex in edge:
glVertex3fv(vertices[vertex])
glEnd()

def main():
pygame.init()
display = (800, 600)
pygame.display.set_mode(display, DOUBLEBUF | OPENGL)
gluPerspective(45, (display[0] / display[1]), 0.1, 50.0)
glTranslatef(0.0, 0.0, -5)

while True:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            pygame.quit()
            quit()

    glRotatef(0.5, 3, 1, 2)
    glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT)
    draw_cube()
    pygame.display.flip()
    pygame.time.wait(10)

if name == "main":
main()
Just a cube

slim field
#

no it isnt

#

sodium = Na
salt = NaCl (there is chlorine)

wise loom
peak depot
#

U need K and Na when you are in warm weather, loosing fluids etc.

somber heath
#

@wide wharf πŸ‘‹

wise loom
peak depot
#

Yes, but it's close to 0 today

somber heath
#

@floral idol πŸ‘‹

wide wharf
#

Hey

#

Can anybody help me get a job?

peak depot
versed heath
#

import pygame
from pygame.locals import *
from OpenGL.GL import *
from OpenGL.GLU import *

vertices = (
(1, -1, -1),
(1, 1, -1),
(-1, 1, -1),
(-1, -1, -1),
(1, -1, 1),
(1, 1, 1),
(-1, -1, 1),
(-1, 1, 1),
(2,2,2),
(2,2,-2)
)

edges = (
(0, 1),
(1, 2),
(2, 3),
(3, 0),
(4, 5),
(5, 7),
(6, 7),
(4, 6),
(0, 4),
(1, 5),
(3, 6),
(2, 7),
(8, 9)
)

def draw_cube():
glBegin(GL_LINES)
for edge in edges:
for vertex in edge:
glVertex3fv(vertices[vertex])
glEnd()

def main():
pygame.init()
display = (800, 600)
pygame.display.set_mode(display, DOUBLEBUF | OPENGL)
gluPerspective(45, (display[0] / display[1]), 0.1, 50.0)
glTranslatef(0.0, 0.0, -5)
glScalef(0.2, 0.2, 0.2)
a = False
d = False
a = False
a = False

while True:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            pygame.quit()
            quit()
        if event.type == pygame.KEYDOWN:
            if event.type == pygame.K_a:
                a = True
            if event.type == pygame.K_d:
                d = True
        if event.type == pygame.KEYUP:
            if event.type == pygame.K_a:
                a = False
            if event.type == pygame.K_d:
                d = False

    if a:
        glRotatef(0.5, 3, 1, 10)
    if d:
        glRotatef(0.5, 3, 1, 100)

    glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT)
    draw_cube()
    pygame.display.flip()
    pygame.time.wait(10)

if name == "main":
main()

slim field
#

why not

somber heath
somber heath
#

Calling people dipshit because of an error in their code when they're asking for help is disappointing.

somber heath
#

As you would have it.

slim field
#

your code might be stuck over there

#

for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
quit()
if event.type == pygame.KEYDOWN:
if event.type == pygame.Ka:
a = True
if event.type == pygame.K_d:
d = True
if event.type == pygame.KEYUP:
if event.type == pygame.K_a:
a = False
if event.type == pygame.K_d:
d = False

#

try to implement inside for loop

somber heath
#

@mossy harbor πŸ‘‹

scarlet halo
#

hey

#

"svenska pojke"

#

true tho

#

made in C

somber heath
#

Flappy bird pong.

peak depot
#

Cyper goth

somber heath
#

NCT's 3rd album "Universe" is out now!
Listen and download on your favorite platform: https://smarturl.it/NCT_Universe

πŸ’š 'Beautiful' MV: https://youtu.be/nAvjYapdSxk

[Tracklist]
01 New Axis
02 Universe (Let’s Play Ball)
03 Earthquake
04 OK!
05 Birthday Party
06 Know Now
07 Dreaming
08 Round&Round
09 Miracle
10 Vroom
11 Sweet Dream
12 λ³„μžλ¦¬ (...

β–Ά Play video
peak depot
dry jasper
wise loom
#

is this Hakken? that guy on the left has abs

dry jasper
peak depot
somber heath
#

@tough sorrel πŸ‘‹

wise loom
#

can I get some movie recommendations?

peak depot
#

LoTR

obsidian dragon
#

Lort

peak depot
#

With expansions

obsidian dragon
obsidian dragon
peak depot
wise loom
wind raptor
#

!stream 958057865032106045

wise cargoBOT
#

βœ… @versed heath can now stream until <t:1709042577:f>.

wind raptor
#

!stream 958057865032106045 20M

wise cargoBOT
#

βœ… @versed heath can now stream until <t:1709043960:f>.

scarlet halo
#

can i stream my code?

#

@wind raptor

rugged root
#

!stream 710856373675491381

wise cargoBOT
#

βœ… @scarlet halo can now stream until <t:1709043231:f>.

rugged root
#

I gotchu

wind raptor
scarlet halo
#

ikr

#

thanks

#

i dont think it is

#

yes

#

nuh uh

#

its deltatime

#

yes

#

in like 3 days

scarlet halo
#

dude i broke the spike code

#

excuse me did i just get 17 coins in one coin

#

yeah

rugged root
#

@final laurel I'm sorry if I offended

scarlet halo
#

yeah

#

?

#

yeah the yellow

#

ior the gray

#

fixed the coin to only pick up once

#

yeah

#

i figured that out

#

yeah

#

i think i know whats happening

#

WOOOO

#

well there happened to be a spike above the coin so i hit that by accident

#

huh

#

what is going on

wet scroll
#

woah

rugged root
wet scroll
#

nice game

#

hold on is that linux

scarlet halo
#

why do the spikes always spawn inside spikes

#

that shouldnt be possible

scarlet halo
wet scroll
#

that looks sick dude where did you get it

scarlet halo
wet scroll
#

the linux

scarlet halo
wet scroll
#

oh its arch

scarlet halo
#

yeah

wet scroll
#

the only fact i know about arch is that the community is toxic

rugged root
#

As most tech ones are

#

(except us)

scarlet halo
rugged root
#

Actually the Rust folks are pretty cool from what I saw

wet scroll
#

i feel like everything is just toxic these days

scarlet halo
#

i think i coded in rust once

#

i dont remember πŸ’€

rugged root
scarlet halo
rugged root
#

Have to typically dig to find your own good place

wet scroll
#

rust or c++ which one should i learn more!?

rugged root
#

Entirely preference

scarlet halo
rugged root
#

C/C++ is still more common in industry

#

But Rust isn't a bad choice

wet scroll
#

i have no idea about rust

#

like what can i do with it

rugged root
#

Anything you can do with C/C++. It's another low level language

#

But it actively does everything it can to make your code less error prone

#

It boasts no runtime errors

#

And you'll see a lot of things in the Open-Source sector being written in Rust or re-writting other things to be in Rust instead

wet scroll
#

i can make DAW as well then?

scarlet halo
#

guys i fixed the spikes issue

#

and the coins issue

#

also rust based

#

also i made it so only one coin can spawn per side

#

best part of minecraft bedrock edition is going on "bedwars servers" and beating up children and then they say "hacks"

sinful phoenix
#

Hello!

rugged root
#

Nice

#

How goes it Ze?

sinful phoenix
#

It’s going good. How are y’all?

final laurel
#

@rugged root you did not offend me lol i went to go eat

rugged root
#

Oh cool cool

scarlet halo
#

what should i rename my game to

#

its hyprland

#

:)

#

mhm

rugged root
#

Avoid That Spike!

scarlet halo
#

lol

urban abyss
#

package A <- package B <- package A
package A bumps from v1 -> v2
what do?

sinful phoenix
#

Recently I was googling some plants and I realized Hemlock is a plant name. I didn’t know that. I thought it was about locks

rugged root
#

Nah, poisonous plant. It's what Socrates was forced to drink to kill him

sinful phoenix
#

Oh really!

topaz beacon
#

Any one working on python

rugged root
#

@topaz beacon You're coming in really quiet

scarlet halo
rugged root
#

And we're talking about a Python monorepo right now

sweet lodge
#

Circular?

#

😭

urban abyss
#

circular...

rugged root
#

Would you be able to merge projects A and B together? Or are they too different

#

My brain is telling me that the best course of action is taking the parts that both A and B depend on out and put it into C

#

So there really isn't going to be a clean way to do this without some rewriting

urban abyss
#

Yup, I'm sold on breaking the cycle, just looking for any bandaids for now until that bomb goes off... πŸ˜†

obsidian dragon
#

is there a way to play mkv and avi in browser, like a js lib?

sweet lodge
#

πŸ•ΆοΈ

rugged root
scarlet halo
#

dide

#

dude

#

NO

#

I JUST DELETED

#

THE ENTIRE GAME

rugged root
#

CTRL + Z?

scarlet halo
#

NO DUDE

#

I RM -RF'ED IT

#

dude

#

whyyyyyyyyy

#

WHYYYYYYYYYYYY

rugged root
#

And this is why I don't delete stuff from command line

#

Your HUBRIS

urban abyss
#

got stand-up gotta bounce

#

bye hemlock

sweet lodge
#

.wa s define hubris

rugged root
#

Later brother

viscid lagoonBOT
scarlet halo
#

aw man

#

3 days

#

eh whatever

#

ill just remake it

#

brb gotta tell my mom

#

._.

#

100s

#

its fine

#

warp-terminal and qutebrowser

#

no

#

no

#

jk

#

sweden

sleek shale
#

🫑

scarlet halo
#

hold up i just gotta mentally prepare to speedrun this

#

and maybe eat dinner

#

brb

upper basin
#

@rugged root any fav PS2 games?

rugged root
#

Loads. Kingdom Hearts 1 and are of course a classics, Katamari Damacy, Psychonauts, Tony Hawk's Underground.

upper basin
#

Do you wanna play them again?

rugged root
#

I have the console and the discs

upper basin
#

Ohh ok

#

I thought you didn't have the console anymore

rugged root
#

Nope, still do

upper basin
#

I used an emulator, PCSX2, sooo good.

#

Just speedran TMNT 3 mutant nightmare.

rugged root
#

Not to mention, KH 1 and 2 as well as Katamari Damacy have been remade for modern consoles. Oh yeah, that's a good emulator for sure

upper basin
#

Now downloading TMNT 2 battle nexus.

#

I played these when I was 8.

rugged root
#

I used my PS2 for playing PS1 games a lot as well

scarlet halo
#

wait am i able to turn on my camera

upper basin
#

During my PS2 days, I just played a few games regularly, the TMNT trilogy, MK Armageddon, MK Shaolin Monks, another MK I don't remember, and Madagascar 2.

rugged root
#

Still confused about the snake

scarlet halo
upper basin
#

Ohh and a 2D power rangers one.

rugged root
#

She's adorbs

upper basin
#

Weirdly fun.

scarlet halo
#

no

#

no

#

i actually dont use my pinky at all as a nvim user

upper basin
#

Huh, haven't seen Katamari Damacy before.

sleek shale
#

Poor pinky

upper basin
#

You know what's weird? I had hundreds of PS2 games, but weirdly don't remember most of them.

scarlet halo
upper basin
#

I genuinely am enjoying these older games much much more than games like Fortnite (egh, gross), and COD. For games that are around 20 years old, they are weirdly fun, and have hign graphics. Although, to be fair, I am running the emulator on 4k, so everything is very nice hehe.

rugged root
#

Black was a fun little shooter

#

Twisted Metal Black was good

upper basin
#

Ohh yeah, I remember that.

rugged root
#

I can look through the games I have at home, I know I'm forgetting plenty

upper basin
#

There were soooo many games in my collection, but can't remember most of them.

rugged root
#

Same

#

I have them lined up on my shelves

upper basin
#

TMNT is just such a nice RPG type of game hehe. I really like it...

#

Mutant Nightmare is my fav because it has a pretty decent AI system, and it basically lets you always play with the four even when you're a solo.

#

Ohhh, shadow the hedgehog was also nice.

rugged root
#

The old Starwars Battlefront games were great

upper basin
#

OHHH and Army men. Such a nice local MP.

#

I used to play it with my dad. Ahh, so many rage quits.

#

He really hated the bazooka HEHEHE.

rugged root
#

I feel like I went back in time for a moment

#

I thought it was an hour later than it is

#

Oh oh oh oh

#

Crazy Taxi

#

Love that game

scarlet halo
#

dude i need a m b i e n c e sounds

minor sage
proud wigeon
#

Hi all

#

πŸ₯•πŸ° hmmm what s up

scarlet halo
#

gn

unkempt kraken
#

sup

proud wigeon
#

πŸ‘€

#

What?

unkempt kraken
proud wigeon
unkempt kraken
proud wigeon
#

Who is know about pyqt5

unkempt kraken
proud wigeon
#

Hello

whole bear
willow light
#
services:
  obsidian:
    image: 'ghcr.io/sytone/obsidian-remote:latest'
    container_name: obsidian-remote
    restart: unless-stopped
    ports:
      - 8080 #only exposes port internally to the container
    volumes:
      - /home/obsidian/vaults:/vaults
      - /home/obsidian/config:/config
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=America/Boston
      - DOCKER_MODS=linuxserver/mods:universal-git
networks:
  default:
    name: <your nginx proxy manager network>
    external: true

This could work tbh

#

although I wouldn't post my compose file because it's wicked long. Portainer, Calibre-Web, Audiobookshelf, etc.

#

EDIT: changed tz from LA to Boston because we're civilized. No car dependent hellscapes here.

#

huh, my ping is 5000ms. thanks comcast.

#

okay does anyone know how to permanently delete edge?

#

it shouldn't be running at all

#

brb rebooting, I can move my mouse, look away, look back, and then the cursor moves

whole bear
#

@whole bear πŸ‘‹

#

πŸ˜„

wind raptor
#

hey @whole bear

whole bear
#

Who's recording?

stuck furnace
#

I feel like hierarchical file systems are a reasonable middle ground between being overly structured and being not structured enough.

gentle flint
stuck furnace
#

You should have seen the new york subway in the 80s πŸ˜„

willow light
molten pewter
whole bear
#

@glad knoll πŸ‘‹

glad knoll
#

heyy

#

@whole bear

whole bear
#

Every naruto character is here

glad knoll
#

lol

#

i don't see any tho

whole bear
#

@gilded wedge

#

@frail glen

#

@balmy topaz

glad knoll
#

hidden leaf is heree xD

whole bear
#

Bruh I wanna watch another anime so bad

stark river
#

never had a use case for nixos

willow light
#

Processor Intel(R) Core(TM) i9-9900KF CPU @ 3.60GHz 3.60 GHz
Installed RAM 64.0 GB

stark river
#

sounds like someone's describing their personal experience

wind raptor
willow light
#

running Win10 22h2 for now

wind raptor
#

i9-14900k
RTX 4070
64 GB ram

willow light
#

RTX 2060. I guess it's better than I thought.

#

For the most part I use it for rendering NEXRAD data.

upper basin
#

"You are [Breakin ma balls ova here]."

#

An AI haggling is pretty much Cartman.

#

Weird question, but can I get some help on solitaire?

#

I feel my honor is being tainted.

willow light
#

I only play solitaire with an actual physical deck

upper basin
#

It's the same logic. I swear I put on winnable deck, but somehow it just keeps getting into the same impasse.

willow light
#

It's more fun with a real deck because you can bring it to a bar and meet people, because you start playing and within ten seconds there's someone at your shoulder giving you unsolicited advice.

upper basin
#

hehehe

#

It's messy though, takes a lotta space.

unkempt kraken
#

hi

scarlet halo
willow light
#

@stark river what's on your tmux config?

scarlet halo
#

oh shit didnt even notice tmux

stark river
#

not much.. i think catppuccin

willow light
#

Yeah I recognized the catppuccin, I use it too

#

i went as far as adding it directly to lazygit

rugged root
#

Jesus, just sat down and I have to instantly get back up

molten pewter
#

Just getting your squats in

scarlet halo
#

@stark river what u making

stark river
#

quiz flash cards

#

for vocabulary

scarlet halo
#

ah

stark river
#

haven't used it in a long while

scarlet halo
#

Arch Linux

#

Hyprland

scarlet halo
#

gn o7

whole bear
whole bear
willow light
#

the instructions are pretty clear

#

that won't get you very far lol

whole bear
#

I'm not a mod

#

You can't spam

willow light
#

you don't get given voice perms, you have to work for them.

vital sinew
#

yea dud just go talk in a chat

#

for a bit

#

i am here to listen and learn till i get vc perms from talking enough in chats

#

20 msg that arnt spam all it takes

#

ish

willow light
#

all three

#

post in the help forum

wind raptor
willow light
#

there is no rush

#

Post in the help forum, that's what it's for

vital sinew
#

@willow light get a sodstream machine and you can make carbonated soda or whatever (no kombucha or beer ) and get like those concentrated frozen fruit and use them for cheap flavoring

willow light
#

i have no room left in my apartment for any more appliances

#

Also I tried a sodastream at a friend's place and the carbonation was insufficient to clear my throat. That resulted in the most recent visit to the hospital.

vital sinew
#

ahh k

willow light
#

I am currently fermenting about six gallons of kombucha in my pantry in preparation for easter dinner.

#

green tea with mango and pineapple

vital sinew
#

oh that sound sooooo good

willow light
#

the scoby is eating good tonight

vital sinew
#

@whole bear whats your elo?

#

not at all lol

#

you dont want to know lol

#

lower than you

#

plome that sounds painfull

#

oh whichever lol

#

lol...

whole bear
#

@prisma wasp πŸ‘‹

vital sinew
#

LOL @willow light

#

wow lol

#

wow all conversations in this vc are HILLARIOUS

#

alright seeyall

#

listening has been hilarious

whole bear
#

My version of

#

@ivory stump Look at my "art"

ivory stump
#

:P

whole bear
#

@granite shoal πŸ‘‹

#

@rugged root Can you look at my drawing?

peak nacelle
#

Sup

proud wigeon
#

hi

vital sinew
#

wow everyone is muted

proud wigeon
#

yep

#

i cant open it

vital sinew
#

?

#

wdym cant open it

proud wigeon
#

mic

vital sinew
proud wigeon
#

i dont hav acess

vital sinew
#

i still need like 20 msgs

#

but yea go there

proud wigeon
#

You have sent less than 50 messages.

#

just this

vital sinew
#

oh nvm apearntly i have sendt 62

proud wigeon
#

good

vital sinew
#

i just talked hu

proud wigeon
#

XD

vital sinew
#

ah ima mute' till someone not muted joins LOL

ivory stump
#

There was some attempt

whole bear
ivory stump
#

So did I

whole bear
#

@mellow sierra How are you?

strange turtle
#

e

#

e

shrewd ibex
shrewd ibex
#

aight

#

gotta go though

turbid sandal
#

@shrewd ibex

shrewd ibex
turbid sandal
#

ok bye

shrewd ibex
brisk bridge
#

hi

wet scroll
#

hello?

mellow sierra
#

i don't see y'all in vc anymore

#

or it's just that our timezones are completely different

sacred fog
#

@turbid sandal ok

turbid sandal
#

πŸ‘πŸ»

proud wigeon
#

Hi

#

πŸ₯•πŸ° hhmmm what s up docs

#

Who know about pyqt5

wet scroll
#

i know the original Qt for C++

#

so maybe i could help

proud wigeon
#

In python

#

I think is different

wet scroll
#

i know PyQt5 as well so

proud wigeon
#

Good

#

In pyqt5

#

We have qtsql

#

In my app i want ask user to input the name of table and the name of columns

#

If u can tell me what the statement i need

wet scroll
#

i have no idea what qtsql is

proud wigeon
#

It is from pyqt5

#

No one have an idea

wet scroll
#

yeah sorry

proud wigeon
#

Its ok

whole bear
#

python manage.py runbot

proud wigeon
#

Good

#

@wet scroll

#

Look that

#

PyQt provides us UI features which can be useful in number of ways to build our applications using all the features and widgets of PyQt. Moreover PyQt provides us the facility to integrate our database in our application. We can integrate any database through it some of them are- MySQL, SQLITE etc. To link SQL database with PyQt5 application QtSql module is used.The SQL classes are divided n three layers: 1. Driver Layer: It have QSqlDriver, QSqlDriverCreatorBase, and QSqlResult classes. 2. SQL API Layer: These provide access to databases. For connection QSqlDatabase is used, Interaction with database is done by QSqlQuery class. 3. User Interface Layer: These work with Qt’s model framework. Some of them are QSqlQueryModel, QSqlTableModel etc. To import the module following command is used:
from PyQt5 import QtSql

sacred fog
#

Hello

proud wigeon
#

Woow

#

Take it easy

#

@wet scroll you dont know what mean sql?

whole bear
proud wigeon
#

Good

#

But you need to now

#

Know*

turbid sandal
#

I have JVM !

proud wigeon
#

To save somthing

#

Or to stack or somthing like that

#

Quran

#

XD

#

Wlb

#

Boy

#

Spiderman πŸ˜‚

#

Ok

proud wigeon
#

I want to go

#

Tchaowwww

sacred fog
somber heath
#

@vestal jay πŸ‘‹

sleek shale
#

what happened

#

i missed the event

#

aight

#

he moved below

somber heath
#

@hot perch πŸ‘‹

somber heath
#

@cosmic crescent πŸ‘‹

cosmic crescent
karmic obsidian
#

hey hi @somber heath

somber heath
#

@vale smelt πŸ‘‹

#

@ocean pilot πŸ‘‹

obsidian dragon
#

look a‫t this guys

karmic obsidian
#

Hey Opal you have any idea about Apache spark?

karmic obsidian
#

that's mental

#

how did you do that?

obsidian dragon
#

‫

karmic obsidian
obsidian dragon
#

‫n

somber heath
#

@sick wave πŸ‘‹

sick wave
#

Hello

somber heath
#

@obsidian foxπŸ‘‹

wind raptor
#

!stream 1053732836693258391 30M

wise cargoBOT
#

βœ… @turbid sandal can now stream until <t:1709129045:f>.

sick wave
#

@somber heath Can I know, What are you doing? I am just a new at python programming

somber heath
#

Some of whom I'm fond of.

peak depot
#

I need to rest..

sick wave
#

Can you help me with some explain on what they are doing in the code? I mean what is the whole program about?

obsidian dragon
somber heath
#

I'm not looking at it in any case

obsidian dragon
#

did super dev say they were‫12?

somber heath
#

Selfbotting isn't illegal.

#

It's against TOS.

obsidian dragon
#

no cops tho

#

lol imagine discord swatting

somber heath
#

I'd rather not

#

I'd prefer to not listen to people die.

sick wave
#

Is looking at there stream illegal or what are you telling about? I am totalling unaware about what are you talking about? I am new at both python programming and English language πŸ‘€

karmic obsidian
#

hey @turbid sandal can you explain your problem once again rq?

#

The basic format of the command for creating a JAR file is:

jar cf jar-file input-file(s)

slim field
#

can i get help

wind raptor
#

!stream 381154715293188106

wise cargoBOT
#

βœ… @dry jasper can now stream until <t:1709129822:f>.

wind raptor
#

!unstream 381154715293188106

wise cargoBOT
#

βœ… Revoked the permission to stream from @dry jasper.

wind raptor
slim field
#

what if we dont pay the broker?

slim field
#

does u guys know how to fix this

#

how

#

i guess it's better

rugged root
#

The spike is real

#

Where are you based again?

scarlet halo
#

dude how do i spell what hemlock just said

#

gesundheit

#

is that correct

#

:)

urban abyss
#

Hey guys

rugged root
#

Yo

urban abyss
#

Looking for a solution around our pip setup in the org. Anybody a pip-wiz?

rugged root
#

#tools-and-devops Might have better answers than I can offer, now that I think about it

scarlet halo
#

im on a pc and my krisp doesnt work

#

might be because im using webcord

#

yeah

#

i hate it

#

i dont want to disturb ._.

#

πŸ’₯

#

wait can you guys hear my minecraft music

#

from my stream

#

i accidentally deleted it yesterday

#

permanently

#

nuh uh

#

:)

#

i do

obsidian dragon
#

@scarlet halo

scarlet halo
#

lava

urban abyss
#

Context: We use pip in many places to install Python packages. We have a pip.conf that points at our private repos as well as public pypi. Equivalent to pip install <package> --extra-index-url=private.repo/pypi --extra-index-url=pypi.python.org/simple.
Access to these private repos is provided by connecting to org VPN but not all users need to connect to the VPN at all times. Which means that when pip installing a package (even public ones) but not on VPN, it hangs before timeout occurs for the private repos, and it defers to the public repo. For long requirements lists, this can cause excessive time wasted as each package is requested and then will timeout.

I'm looking for a way to add a check to pip that will validate connection to this private repo when attempting an install, and inform the user of this with an error message or something. I can't see a feature like this in the pip docs, so maybe a wrapper around pip is a better idea. Any ideas?

scarlet halo
#

wait what

#

"How to safely uninstall Minecraft Dungeons on Windows 10"

rugged root
#

That's...

#

Insane

#

Did they patch that?

scarlet halo
#

i mightve put a wiimote strap on my keyring

rugged root
#

I... don't hate that

scarlet halo
#

dude my terminal just crashed

#

i mightve done that alot today

#

no

#

wait

#

im confuse

#

d

#

whatever

#

you dont remember

#

IT WAS AN ACCIDENT

#

rm -rf

#

its fine

#

one time i accidentally deleted all my apps

#

like EVERY binary executable file

#

yeah

stark river
#

make a function that asks for y and alias rmc to it

scarlet halo
#

gtg eat

#

brb

whole bear
rugged root
#

Mute time, co-worker is here

#

Probs

#

Wait what'd I miss?

#

Yeah, avoid conflict of interest

mellow sierra
#

hi

rugged root
#

Yo

mellow sierra
#

i'g good

rugged root
#

Again, it's not based on time here

#

They've been around

#

He's good people

mellow sierra
rugged root
#

@upper basin What's done is done

#

A jam isn't a huge deal

#

There's always more

#

Strawberry, Blackberry...

#

All kinds of jams

whole bear
#

@undone idol πŸ‘‹

undone idol
#

chess πŸ‘€

rugged root
#

I mean it's fair to blame the other person working on it as well

whole bear
#

Mr. Hemlock What do you think about my "drawing"?

rugged root
#

?

#

Why is that in quotes?

whole bear
#

I made a drawing yesterday

rugged root
#

I don't remember, I've been slammed

whole bear
stark river
rugged root
#

Computers jacked up on tax season

#

Not quite down for the count yet

whole bear
#

Alr Imma go eat something

rugged root
#

Calabunga!

#

Not much, 'bout you Linux?

urban abyss
#

pip making me crazy

#

I think the easiest solution to my problem is beg IT to put some VPN checks in place

rugged root
#

Might be an option?

#

No idea

#

@wind raptor I might have to just use the web client. I haaaaaaaaate that

wind raptor
rugged root
#

Yar, it's drivin' me nuts ducky_pirate

#

Wait, was this for the queries?

#

@molten pewter Yo

molten pewter
#

yoyo

rugged root
#

@earnest crag Yo

earnest crag
rugged root
#

We hear you, but there's a convo going on

#

A good ol' Oracle venting

earnest crag
earnest crag
#

JAVA4EVER

rugged root
#

Back in a sec

rugged root
#

I'm a tired old man

#

@uncut meteor Yooo

#

What're you up to

#

Why would I hate you for it?

#

Now my interest is piqued

#

Herpes

#

HA

#

I get why you like it, but still ew

#

Back later

proud wigeon
#

πŸ₯•πŸ° Hmmm what s up docs

whole bear
#

Hey Hida

proud wigeon
#

Hida

#

How r u

whole bear
#

Why'd you say Hida?

#

Ohhhhh

proud wigeon
#

U tap hilda but it hida

whole bear
#

Sorry Hida

proud wigeon
#

Its ok bro

#

I like his profile

#

I can do pikatchu voice πŸ˜‚

tall ridge
rugged root
urban abyss
upper basin
tall ridge
peak depot
#

I miss my cats 😭😭😭

rugged root
#

We're not upset about it, shit happens

upper basin
#

Ohh ok. I apologize regardless.

tall ridge
#

So when you said "depend on IT" it sounded like that might be a problem,

upper basin
#

Thank you so much for your kind understanding.

whole bear
peak depot
#

So and so

rugged root
#

You'll see them soon

tall ridge
rugged root
#

If your business doesn't require it normally, then why would you implement it?

upper basin
#

~

#
~(real_mask | imaginary_mask)
tall ridge
urban abyss
upper basin
#

tilde

urban abyss
#

We've taught our users to ctrl-C and check VPN for the errors that the above gives. But tools like pipx hide this output so end-user doesn't see any issue and pipx looks to be installing for potentially hours...

rugged tundra
#

@upper basin In Python, the tilde ~ operator is a bitwise NOT operator. When applied to boolean values, it inverts the bit representation of the underlying integer value of the boolean. In Python, True is represented by 1 and False is represented by 0. However, the application of bitwise operations, including the ~ operator, requires understanding how boolean values are treated in the context of bitwise operations and how Python represents negative numbers using two's complement notation.

Let's break down what happens in the expression ~(real_mask | imaginary_mask) when real_mask and imaginary_mask are boolean variables:

Bitwise OR (|): The expression (real_mask | imaginary_mask) performs a bitwise OR operation between the two boolean variables. If either real_mask or imaginary_mask is True (or both), the result is True (equivalent to 1). If both are False (equivalent to 0), the result is False.

Bitwise NOT (~): The tilde ~ then inverts all bits of the result. Since boolean values are treated as integers (True as 1 and False as 0) for bitwise operations, applying ~ inverts their bit representation.
    For True (1), its binary representation is ...0001 (in a 32-bit system, for example, it would be represented with leading zeros). Applying ~ inverts all bits, resulting in ...1110, which is the representation of -2 in two's complement notation.
    For False (0), its binary representation is ...0000. Applying ~ inverts all bits, resulting in ...1111, which is the representation of -1 in two's complement notation.

Therefore, the expression ~(real_mask | imaginary_mask) will yield -2 if either real_mask or imaginary_mask is True, and -1 if both are False.

This behavior underscores the importance of understanding Python's handling of bitwise operations and how they apply to boolean and integer types, especially in contexts where you're manipulating masks or performing operations that involve bit-level manipulation.

upper basin
#

I see!

#

!e

a = True
print(~a)
wise cargoBOT
#

@upper basin :white_check_mark: Your 3.12 eval job has completed with return code 0.

001 | /home/main.py:2: DeprecationWarning: Bitwise inversion '~' on bool is deprecated. This returns the bitwise inversion of the underlying int object and is usually not what you expect from negating a bool. Use the 'not' operator for boolean negation or ~int(x) if you really want the bitwise inversion of the underlying int.
002 |   print(~a)
003 | -2
tall ridge
upper basin
#

!e

a = True
b = ~(a)

print(b)
wise cargoBOT
#

@upper basin :white_check_mark: Your 3.12 eval job has completed with return code 0.

001 | /home/main.py:2: DeprecationWarning: Bitwise inversion '~' on bool is deprecated. This returns the bitwise inversion of the underlying int object and is usually not what you expect from negating a bool. Use the 'not' operator for boolean negation or ~int(x) if you really want the bitwise inversion of the underlying int.
002 |   b = ~(a)
003 | -2
rugged root
#

I'm just bristling because how can IT know to implement something that the devs are only just saying is needed

#

No easy way to predict that

upper basin
#

!e

a = 2 + 0j

print(a.imag==0)
wise cargoBOT
#

@upper basin :white_check_mark: Your 3.12 eval job has completed with return code 0.

True
rugged root
#

Of course that's reactive, it has to be by nature of it

urban abyss
#

I feel like pip should better checks for this scenario, it should at least check access to an index before attempting to install using it for every requirement

tall ridge
upper basin
#

!e

a = 0 + 0j
b = 2 + 0j
c = 0 + 2j

vals = [a, b, c]

for i in range(3):
    real_mask = (vals[i].real == 0)
    imag_mask = (vals[i].imag == 0)

    result = ~(real_mask | imag_mask)
    print(result)
wise cargoBOT
#

@upper basin :white_check_mark: Your 3.12 eval job has completed with return code 0.

001 | /home/main.py:11: DeprecationWarning: Bitwise inversion '~' on bool is deprecated. This returns the bitwise inversion of the underlying int object and is usually not what you expect from negating a bool. Use the 'not' operator for boolean negation or ~int(x) if you really want the bitwise inversion of the underlying int.
002 |   result = ~(real_mask | imag_mask)
003 | -2
004 | -2
005 | -2
rugged root
#

@upper basin If you're doing a lot of commands, can you do them in #bot-commands?

rugged root
#

All good all good

tall ridge
# urban abyss That would work, however, we always want users to use these private repos. So de...

I see, well in that case this is absolutely something IT should be involved in because if it breaks, they are likely to get called.
My concern was that if they don't fully understand what you're trying to do then they might just solve the immediate problem, and if they are organized to only focus on the immediate problem, then you will probably have to be chasing them again.
In terms of

I feel like pip should better checks for this scenario, it should at least check access to an index before attempting to install using it for every requirement
then that's an opportunity for your company to either submit a useful pull request, or better yet, pay someone at psf to add the feature.

stuck furnace
#

Sounded like a kazoo

upper basin
#

01 - creating and manipulating circuits.ipynb

stuck furnace
#

It's fine, as long as you don't need to import it with python.

#

You won't be able to do: ```py
import 01 - creating ...

#

Ah right. I'm pretty sure you can name it whatever you want to πŸ€·β€β™‚οΈ

#

I think there's calculus underlying a lot of the theory, but I don't think they're sitting down calculating derivatives and integrals often.

molten pewter
stuck furnace
#

You can't go wrong learning more maths Β―_(ツ)_/Β―

#

Maybe you can.

lucid blade
#

mostly electronica, fridays classic albums, sunday listener content, mon-thurs and sat stealth selection & live performances

whole bear
#

Hey alex

stark river
#

tax incentives

#

austin gives tax breaks

molten pewter
#

"two metrics: the number of mobile homes per 100 housing units and the number of Walmarts per 1,000,000 people.'

#

The Waffle House Index is a metric named after the ubiquitous Southern US restaurant chain Waffle House known for its 24-hour, 365-day service. Since this restaurant always remains open, it has given rise to an informal but useful metric to determine the severity of a storm and the likely scale of assistance required for disaster recovery. It wa...

stark river
#

dominos pizza index determines war

peak depot
#

Hi Plome

stark river
#

The Pizza Meter refers to sudden increases of pizza orders for Domino's from U.S. government offices, such as the White House and The Pentagon, usually before a big event, such as the Iraqi invasion of Kuwait, the Panama Invasion and the Grenada invasion.

peak depot
#

Hi sazk

gentle flint
teal palm
#

Would it be better if non paying people were only rate limited instead of blocked?

scarlet halo
#

did you know you can trick chatgpt (gpt 3.5 and i believe gpt 4) to talk shit to you by making up a medical condition

#

intentionally wrongfully correcting its grammar:

#

what should i ask/tell it next?

teal palm
#

@whole bear Basically paying for market share

stuck furnace
#

I think the success of these platforms is not really a function of the quality of the service but rather network effects.

#

Ie they're anti-rivalrous goods where everyone wants to use the platform everyone else is using.

upper basin
#

cooking

stuck furnace
#

Hello πŸ‘€

#

I wouldn't go around saying that πŸ˜„

#

I've got to go cook dinner πŸ‘‹

whole bear
#

Biden administration calls for developers to embrace memory-safe programing languages and move away from those that cause buffer overflows and other memory access vulnerabilities.

upper basin
#

If you're a hobbyist, then most developers I see are pedestrians.

#

I feel knowing Python, C#, and C++ is enough to have a wide skillset to work with any language you face.

#

Although, when it comes to python, it's all about knowing packages than the language itself.

lucid blade
#

peace u lot i gtg

stark river
upper basin
#

Python is pretty straight-forward. Where's the cheat?

#

Hate Julia. Ugly language.

whole bear
#

Emacs OS

Interview with an Emacs Enthusiast in 2023 with Emerald McS., PhD - aired on Β© The Emacs.
org. air date 1990.

Programmer humor
Software humor
Elisp humor
Software tools
Retro computing
Vim vs emacs editor
Computerphile
Emacs humor
Emacs jokes
emacs vs vim
Programming memes
gnu emacs
spacemacs
emacs memes
lex friedman ide
VS Code
confi...

β–Ά Play video
upper basin
knotty flint
#

Hello guys Issue in ReactJs only in Firefox behaviour

Getting issue on contentEditable on element

On keyChange put on inputDivRef.current.innerText

But the cursor writing it put characters on front on stack of characters

stark river
#

.current stops event propagation

upper basin
#

Achievement Unlocked : Middle-life uncrisis

molten pewter
#

According to Reddit's S-1 filing they are loosing 232,431.87$ per day. Dividing Steve Huffman's 2023 salary of 193 million by 365, is 528,767$ Steve Huffman is single handedly making reddit unprofitable.

#

I'm done with this. Going to be on Lemmy world.

whole bear
stark river
#

creator of reddit

#

and rss

#

the fbi director who caused aaron swartz death said "i was just following orders"... basically the nazi soldiers defence

whole bear
#

what Windows says:

#

what Windows means:

gentle flint
rugged root
#

Co-worker is back here. Hemlock speaking is gone now

stuck furnace
#

πŸ‘€

rugged root
#

Hey Alex

#

How goes it

stuck furnace
stuck furnace
rugged root
#

Hanging in there.

whole bear
rugged root
#

Approaching nothing

#

It's ongoing

#

Fair. And in fairness, the IRS is severely underfunded

stuck furnace
rugged root
#

That's not why they lack funding

#

It's an easy target to rip money from

#

Everyone vilifies the IRS

#

Yeah

#

But hold times for accountants can be hours

#

Processing stuff on their end can take ages

#

Like they need better funding

whole bear
rugged root
#

Yeah, the amounts are right

stark river
#

sounds like documentation anchor tags