#voice-chat-text-0

1 messages · Page 367 of 1

high salmon
#

wdym

stuck furnace
#

Please not economics

#

This is going to be so painful for me to listen to

cursive wave
whole bear
high salmon
stuck furnace
#

I mean, it's a widely used programming language 🤷‍♂️

#

There's both great and terrible software written in C++

stuck furnace
#

I've heard Swift is kind of nice. It has a lot of the features of the newer generation of languages.

cursive wave
#

Swift is Objective-C but if it had bitches

whole bear
cursive wave
#

no

#

I am learning Rust

#

it’s not high level C

whole bear
#

Oh, so what exactly it is?

cursive wave
cursive wave
whole bear
#

Oh

cursive wave
#

that allows for memory safety through the use of its type system and other funky things

#

so can I speak? @wind raptor

whole bear
#

@high salmon Do you have american dream?

spare galleon
#

this channel went to shit. lol

whole bear
cursive wave
#

a Jupyter notebook is basically a Python notebook with blocks of code

#

that can be run independently from each other @high salmon

#

Block 1: [text]
Block 2: [calculations]
Block 3: [some plotting things]
etc

spare galleon
#

i listenin to smort ppls talk rn

cursive wave
#

the point being that you can run 3 without running 2 or vice versa

#

very clean way to code things

spare galleon
#

why this game need to be so big?

whole bear
#

@high salmon Could you share your portfolio?

high salmon
#

for now

wind raptor
#

@obsidian dragon Yeah, I'd like to see it

spare galleon
obsidian dragon
wind raptor
#

Not a huge fan of the green text but layout is cool.

stuck furnace
#

Depends who gets elected 😄

obsidian dragon
#

text color explains what type of data it is

#

yellow is string, plus is function, red is feature

stuck furnace
#

What is "outside"?

#

Never heard of it

#

Cya

#

Ah yeah

#

I'm going to hop down to VC1

#

Yeah thankfully

whole bear
vocal basin
cursive wave
#

C is a bit too barebones to be compared to Rust

vocal basin
#

it's very specifically not taking what C++ is "famous" for

cursive wave
#

yes that’s fair

vocal basin
gilded rivet
#
import random
from collections import deque

# random.randint(-25,25)/10 # (-2.5 <-> 2.5) 
linear_data  = [i/1000 + random.randint(-25,25)/10 for i in range(10001)]

sliding_deque = deque([])
sliding_window_length = 10


for i in range(sliding_window_length):
    sliding_deque.append(linear_data[i])
    
current_average = sum(sliding_deque)/sliding_window_length
smooth_data_list = [current_average]
for i in range(sliding_window_length, len(linear_data)):
    sliding_left = sliding_deque.popleft()
    
    sliding_deque.append(linear_data[i])
    sliding_right = sliding_deque[-1] 
    
    current_average -= sliding_left/sliding_window_length
    current_average += sliding_right/sliding_window_length

    smooth_data_list.append(current_average)


### GRAPHING STUFFF
import matplotlib.pyplot as plt
import numpy as np

# Generating some linear data
x = [x for x in range(10001)]
y = linear_data

# Plotting
plt.figure(figsize=(8, 6))
plt.plot(x, y, color="blue", linewidth=1)
plt.xlabel("x-axis")
plt.ylabel("y-axis")
plt.title("Raw Data Plot")
plt.grid(True)
plt.show()

import matplotlib.pyplot as plt
import numpy as np

# Generating some linear data
x = [x for x in range(len(smooth_data_list))]
y = smooth_data_list

# Plotting
import numpy as np
trend = np.polyfit(x, y, 1)  # 1 indicates a linear fit
trend_line = np.poly1d(trend)

plt.figure(figsize=(8, 6))
plt.plot(x, y, color="blue", linewidth=1)
plt.plot(x, trend_line(x), label=f"Trend Line: y = {trend[0]:.5f}x + {trend[1]:.2f}", color="red")
equation_text = f"y = {trend[0]:.10f}x + {trend[1]:.10f}"
plt.text(0.05, 0.95, equation_text, transform=plt.gca().transAxes, fontsize=12,
         verticalalignment='top', color="red")
plt.text(0.04, 0.9, f"Difference from predicted slope 1/1000 \n is {abs((1/1000) - trend[0])}", transform=plt.gca().transAxes, fontsize=12,
         verticalalignment='top', color="red")
plt.xlabel("x-axis")
plt.ylabel("y-axis")
plt.title(f"Sliding Window Average len: {sliding_window_length}")
plt.grid(True)
plt.show()
faint ginkgo
#

What

orchid ravine
#

Hello, again

quartz beacon
#

Who are we talking about

#

If i may ask

#

Turns your name to Opał

#

Which is annoying 😂

tidal blaze
#

hello

obsidian dragon
vocal basin
#

why is the image broken on everything other than index.html

#

oh, there's quite a lot more differences there

quartz beacon
obsidian dragon
somber heath
#

Shitstirrers. Trolls. Etc.

#

Griefers.

#

@karmic rain 👋

#

Time that was, multiplayer was direct p2p dialup.

karmic rain
quartz beacon
tidal blaze
#

yes

somber heath
#

@misty vigil 👋

misty vigil
#

yoo

#

hey @somber heath do you know any Machine learning discord server that i can join in

somber heath
#

@rustic hornet 👋

somber heath
#

!guilds

wise cargoBOT
#
Communities

The communities page on our website contains a number of communities we have partnered with as well as a curated list of other communities relating to programming and technology.

somber heath
#

This server is not run by the Python Software Foundation.

#

Though many of its members frequent the server and there is a link to us on the python.org webpage.

#

There is no official Discord server for Python.

#

I would be surprised were it your actual name.

misty vigil
somber heath
misty vigil
somber heath
# misty vigil could you review it

While I've been programming in Python for some time, I am largely self-taught and consider myself a hobbyist and not an expert. I can take a look, but any insights I have may not be of great value.

#

It has a few easter eggs.

#

!e py import this

wise cargoBOT
# somber heath !e ```py import this```

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

001 | The Zen of Python, by Tim Peters
002 | 
003 | Beautiful is better than ugly.
004 | Explicit is better than implicit.
005 | Simple is better than complex.
006 | Complex is better than complicated.
007 | Flat is better than nested.
008 | Sparse is better than dense.
009 | Readability counts.
010 | Special cases aren't special enough to break the rules.
... (truncated - too many lines)

Full output: https://paste.pythondiscord.com/2JI7MZ5MBW5GVB5ZEHB56XSE4I

misty vigil
wise cargoBOT
#

Attempt to circumvent filter detected. Moderator team has been alerted.

somber heath
#
import antigravity```is another
somber heath
#

I didn't see what triggered that.

#

Looking right at the screen.

vocal basin
#

huh what a timing

#

discord still can't handle replies to deleted messages

quartz beacon
vocal basin
quartz beacon
#

I'm eating :)

somber heath
#

If you're eating anything other than a hotdog, is it a notdog?

vocal basin
#

I've just noticed my PR got merged

#

opened in back in April

#

my PRs are truly something

#

three distinct categories:
CSS for Ocen docs,
Docker files for a bot by one of the users here,
very small contributions to fix critical issues in async Rust crates

rugged root
#

Niiiiice

#

Small but important

#

I feel like this is a trick question, and the second one was yours and the first was the winner

molten pewter
#

Varjo XR-4

soft dawn
upper basin
molten pewter
#

Japanese tech giant Canon today unveiled its next enterprise-focused AR headset which aims to replace its MREAL Display MD-10, which the company launched in Japan in mid-2016 for the astounding price tag of ¥9 million (~$82,300). The PC-tethered AR headset, dubbed MREAL Display MD-20, doesn’t have a release date or price yet, although Canon is s...

upper basin
#

Did you use any glove mo caps for stability?

soft dawn
rugged root
#

I've been happy with the PSVR2

upper basin
#

IIRC for actual practice you'll also need a physics simulator for the body. A really accurate one.

rugged root
#

I'm a console guy. Used to be PC, but it's just so much of a hassle

#

Not necessarily

upper basin
rugged root
#

They have some support for it now

upper basin
#

PC has more options though.

rugged root
#

It does, but I don't have a current gen rig

upper basin
#

You can change ALOT of graphics settings.

upper basin
#

He's basically max level.

soft dawn
upper basin
rugged root
amber raptor
#

Yes

upper basin
#

Surely below 5k?

amber raptor
#

Yes

upper basin
#

Around 4k?

soft dawn
upper basin
#

4k is reasonable for back then.

#

I was saving for this, then life hit.

#

It's so good for heavy-duty stuff.

#

This is 3.8K rn.

upper basin
#

Just swap the last three words with the second.

rugged root
#

Ah okay, $500 for the 512 gb

upper basin
#

Stuff you can later upgrade.

quartz beacon
#

I would love a steam deck

upper basin
#

You should wait until series 50 drops (soon iirc), which will make 4090 go down in cost. 1.5K of the price is just because of the GPU.

rugged root
#

A Fresnel lens ( FRAY-nel, -⁠nəl; FREN-el, -⁠əl; or fray-NEL) is a type of composite compact lens which reduces the amount of material required compared to a conventional lens by dividing the lens into a set of concentric annular sections.
The simpler dioptric (purely refractive) form of the lens was first proposed by Georges-Louis Leclerc, Co...

amber raptor
#

Note, it has SD slot so if you get a decent SD card, it’s probably fine

rugged root
#

The Quest 3

amber raptor
#

Oh boo

rugged root
#

Looking at the Steam Deck now

#

I really don't want to play it handheld

soft dawn
somber heath
late spoke
#

good evening people 🙂

somber heath
#

This makes 2 original look like 1.

soft dawn
#

ahhh

upper basin
#

3.168K if you build it yourself.

#

3K if you go with 850 watts power supply.

whole bear
#

I hate xiamoi, they made fastboot and flash so hard that its almost next to impossible to flash

rugged root
#

The Beepy-Sea

whole bear
#

Wasted my 3 days

soft dawn
whole bear
rugged root
#

Ah yeah, that's always a gamble

whole bear
#

But android is known for its customization and it behaving like apple, if i could fastboot to pixel os or stock android my phone will me smother better and much more cutomizable .

amber raptor
molten pewter
whole bear
molten pewter
upper basin
#

I genuinely never understood why someone would buy sth purely for brand if the functionality was matched by a much more affordable option.

molten pewter
#

650$ Casio....

whole bear
upper basin
#

So, we're going to also ignore the fact that watches are redundant given the existence of phones.

whole bear
#

an alarm from palestine

#

that goes kaboom

amber raptor
rugged root
upper basin
#

Back in elementary school, our biggest flex was having a pen.

late spoke
#

this looks pretty cool

late spoke
whole bear
#

I have a watch that works twice a day, isn't it cool?

rugged root
#

Unless it's digital

#

Then you're fucked

upper basin
#

"Just wait until sun comes up, then I'll tell you the time when I'll kick your ass!"

whole bear
#

is that allowed in flight ?

upper basin
#

What do you think?

soft dawn
stark river
#

as an event manager, i can tell you the cost centers

upper basin
#

@whole bear Turn on krisp.

#

We can hear you eating chips mate.

stark river
#
  • the venue
  • the SMD and sound setup
  • the food
  • the banners
whole bear
upper basin
#

And I was being rhetorical.

#

He's made a custom digital watch. It's pretty cool, and if it costs less and is fully customizable, then it may be worth it.

#

Plus, it's a cool dev flex to use your own tech.

rugged root
#

Create Read API Problems

whole bear
#

Oh, noice!

#

Luv it

stark river
#

i still remember the case 14 years ago a high school kid in texas made a clock and proudly showed it to his teacher @ his school.
his sin was that he was black and muslim. so texans, being texans, accused him of making a bomb.
a big fat policeman 🐷 came to put handcuffs on this little scrawny kid.
https://en.wikipedia.org/wiki/Ahmed_Mohamed_clock_incident

On September 14, 2015, 14-year-old Ahmed Mohamed was arrested at MacArthur High School in Irving, Texas, for bringing a disassembled digital clock to school. The incident ignited allegations of racial profiling and Islamophobia from many media sources and commentators.
The episode arose when Mohamed reassembled the parts of a digital clock in an...

#

sanity only prevailed because the president was also a black man.

#

looks like i snuffed out the racist

whole bear
#

Youtube is getting ruthless with ads, 3 minute of unskippable ads.

soft dawn
late spoke
#

This was a nice video by Nothing phone's CEO

stark river
#

i can only imagine the shit show that would have gone down if trump had been president instead of obama
"the black people are bad people.. they are bad.. i made the clock.. it was all me .. i am very nice .. kovfefe"

vocal basin
#

not that it worked at all but still

whole bear
rugged root
#

Back in a bit, have to reboot my rig

#

Like I'll actually be back, not my usual "back in a bit" where I disappear for the rest of the day

late spoke
#

@vocal basin @whole bear I agree partially, but the scale of their company is still relatively small. 1 million devices/year vs 100 million average of other players

#

They can't be ruled out, maybe their next product will hit the sweet spot for many

late spoke
#

ublock-origin forever!

potent carbon
#

No kidding lol

whole bear
potent carbon
#

Oof PepeHands

#

I use Brave browser

#

So it’s got some baked in stuff

late spoke
#

maybe you are using chrome

#

firefox+ublock

whole bear
#

Yes

late spoke
#

yes, google owns youtube.. google owns chrome

whole bear
#

Let me try

potent carbon
#

Dun dun dunnnn

late spoke
#

do 2+2 genius

whole bear
#

Oh, its working in firefox

potent carbon
#

Nice!

late spoke
#

Ladies and Gentleman, we have a winner!

whole bear
#

Maybe it was chrome that made the blocker useless

potent carbon
#

I think there was a thing where google was blocking that stuff

#

I think they phased something out they needed for it to work

#

I can’t remember exactly what it was

late spoke
#

whatever, google is an untrustable company nowadays

whole bear
late spoke
#

money & power corrupts many (god forbid)

potent carbon
#

Yeah it’s crazy how ads have gotten so out of hand with them

#

Ad blocker for the win

#

Or use DuckDuckGo and their dedicated player if YouTube ever says Adblocker detected and won’t let you play the video just as a FYI

whole bear
#

I heard they working on ad blocker bypass

#

or detection

potent carbon
#

Yeahhh…

#

It’ll be a cat and mouse game for sure

whole bear
#

Soon ublock will bee useless

late spoke
#

they have been trying for many years.

#

too many people on the other side as well

#

no need to burn yourself over what has not happened

potent carbon
#

Firefox uses a different browser base so that will be the safest option and they’ve already said they aren’t deprecating anything so Ublock should be good to go there

late spoke
#

firefox+ublockorigin for now, we will cross that bridge when it comes 😄

whole bear
potent carbon
#

Exactly!

#

Also less resources used on Firefox

#

Win win lol

late spoke
whole bear
#

How?

late spoke
#

Xiaomi Redmi 5 (all instructions for various phones are on XDA forums)

stark river
#

bc

#

i've been trying to do that for years

#

😦

whole bear
late spoke
#

3 OS are popular these days: Lineage OS, Graphene OS, Calyx OS .. all are android without Google apps

#

I got Lineage 21 on my throw away phone

whole bear
#

I like gboard tbh

stark river
#

i have redmi 10 and redmi 11. outdated now but idc. been trying to unlock fast boot but never got past the "send xiaomi some details and dl their software part" .. their unlock never works

late spoke
#

problem is not the product, but the company & its philosophy & its intent turned into hostile actions against customers

whole bear
#

I have wasted few days working on it and found no success

late spoke
whole bear
#

As if they intentionally made the process hard or trick

stark river
#

i will literally have to buy a samsung if i want to unlock bootloader

whole bear
late spoke
#

Xiami process of unlocking requires:

  • Sim inside the phone, and mobile data (not wifi) used to connect to xiaomi servers during unlocking
  • Sim should also have mobile sms balance, to send messages
  • 1 device per sim per month (hard limit)
  • 168 hours of weight time from 'Last attempt' to unlock using the Xiaomi official unlock tool
whole bear
stark river
#

and in the end of that wait time, their software does not even work

whole bear
#

I have tried adb and platform tool to enter bootloader and failed to fastboot

#

adb devices

#

adb reboot bootloader

late spoke
late spoke
whole bear
#

Infact, I have tried multiple time

whole bear
#

ancient phone

late spoke
#

you can ask there

stark river
#

xiaomi's software only works on some models and their process is horrible probably because the phones are being assembled in some sweat shop and they outsourced the unlocking to some other sweat shop in china

late spoke
#

there are guides for Poco X2, X3, X4, X5 .. so something can be done possibly for X1 as well

late spoke
whole bear
#

I have 3 other android and my personal is ios

#

Some how xiamoi is only android which I can't fastboot with rom

late spoke
#

you need to ask around, how to fist unlock the phone and any trouble you are having with fastboot. If the phone is already seriously ill/broken, then maybe there is nothing to be done.

#

I will see you around later. Good luck

whole bear
#

I think both the devices may be ill

whole bear
gilded rivet
#

UR5e

potent carbon
gilded rivet
#

BC MEANS BEFORE CHRIST

potent carbon
#

Also true

gilded rivet
#

export sazk=':(){:|:&};:' — Today at 9:51 AM
BEFORE CHRIST
i've been trying to do that for years

willow light
#

before common era, excuse you

gilded rivet
#

BCE? You mean BEFORE CHRIST EXCUSEME

willow light
#

I only deal in facts, not fairy tales.

gilded rivet
#

This is factz

#

If you want a CE = Common Era, you better make an entirely new era

rugged root
#

A Fresnel lens ( FRAY-nel, -⁠nəl; FREN-el, -⁠əl; or fray-NEL) is a type of composite compact lens which reduces the amount of material required compared to a conventional lens by dividing the lens into a set of concentric annular sections.
The simpler dioptric (purely refractive) form of the lens was first proposed by Georges-Louis Leclerc, Co...

gilded rivet
#

@rugged root

rugged root
#

Holy shit

#

You'd need a server rack, super computer, or a mainframe

gilded rivet
#

or 100 raspberry Pis

frozen owl
#

k8 cluster lol

#

iirc jeff geerling made a vid on this

rugged root
#

@gilded rivet Had a thought. You'd need multiple server switches that support PoE and you can just use the PoE hat with that. Just did some napkin math for 100 pi's:
100 Raspberry Pi 4 B 1gb edition: $3500
100 PoE hats: $2000
7 16-port PoE switches: $1120
Total: $6620

This is of course not including cables (both display and ethernet)

gilded rivet
#

Yah, It's pretty cheap

rugged root
#

Alternatively you can get six 16 port PoE's and one 6 port or something. Just went for the 7 for consistency's sake

#

That still ends up cheaper than just the 50 $180 graphics cards ($9000)

gilded rivet
#

Yah, it's pretty good

#

And it is easier to deal with

#

Especially when you are prototyping a system

amber raptor
#

I kind of want Rasp Pi cluster

lime fractal
#

can some1 help

#

im live random game crash

#

when i try start again

#

pls help fix

#

live ended

#

1 drive is gone now i restarted

late spoke
# lime fractal

seems like you installed malware, thinking it would help you cheat in Fortnite

#

better to reinstall windows and erase all disks

lime fractal
#

No

#

Disk died

#

I was live

#

How open bios

#

It dont show disk manager

#

See

#

I had 2

late spoke
#

It seems the disk didn't die, from what you described. Disks don't die so abruptly.

Anyways to access bios, you just restart the computer (button on cabinet) .. and keep pressing Delete or F2 (depending on which motherboad you have) and it will show you your bios

tip: the disk would be shown under boot device, if it is fixable.

lime fractal
#

The 1 with fortnite on it is gone

late spoke
# lime fractal

yes, because you installed malware, it has hidden the other one

lime fractal
#

Wha

#

???

#

I was streaming and game crash

#

And that show

#

Everytime start

#

The msg show

#

And ssd light not on more

late spoke
#

take it to a pc store, or someone more experienced

#

I don't know dude, best of luck

lime fractal
#

Its still there but why not show in the files ting and disk manager

#

The light is on again form samsung disk

late spoke
#

ssd don't just die.

lime fractal
#

How fix

#

I want to go live again

#

I was live for 1 hout 20 minutes

late spoke
#

told you already, wipe the disk, reinstall windows to get rid of malware

lime fractal
#

??

late spoke
#

and don't trust shady websites/links in future

lime fractal
#

I did not instal anyting

#

I was playing and randomly died

#

I got Windows in Kingston 1

#

Only All photos and games on samsung

late spoke
#

just go to someone more experienced or a pc store/fixer

lime fractal
#

What now

#

I want play again

#

How i temp fix it

#

I can show i was live so i installed noting

#

But fortnite was lagging

#

So ssd gone

#

Or

willow light
#

@lime fractal have you considered getting good at games rather than relying on cheats?

somber heath
#

@maiden herald 👋

maiden herald
#

Hy

somber heath
#

!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.

maiden herald
#

Voice verification prob

#

Opened account yesterday

#

New python programmer

somber heath
somber heath
#

@gaunt turtle 👋

gaunt turtle
#

@somber heath hello

#

@somber heath I am not to speak through mic got suppressed error

#

ok

#

@somber heath got it

#

@somber heath Are u a bot or a real person ?

#

@somber heath not sounded but can u tell me about yourself

#

@somber heath I am from India. i am a student and i know python and flask and want to freelancing or getting better oportunity

#

@soft axle hello

#

@somber heath Also i am quite good in GCP and AWS

#

@undone frost Doing job in India

undone frost
#

nice 😄

somber heath
#

@blissful otter 👋

blissful otter
#

Heyyy @somber heath

gaunt turtle
#

@blissful otter hello

blissful otter
#

Hey @gaunt turtle

gaunt turtle
#

@blissful otter student or doing job ?

blissful otter
#

Both
I am currently learning and working on a company

#

How about you @gaunt turtle

gaunt turtle
#

working with startup

#

@blissful otter in case if u have alot of work i am the guy who can help u out with any coding related task

soft axle
#

@somber heath

gaunt turtle
#

also looking for internship or better job in python , gcp , aws or database

gaunt turtle
#

@blissful otter also any assignment or any research i can also do that

somber heath
#

@slate fable 👋

slate fable
#

I can't unmute

somber heath
#

!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.

slate fable
#

i have to send 50 msgs

#

can i just count? 🙂

#

1

#

2

#

3

#

🙂

#

Can i converse with u?

#

I'm building an app

#

its my baby

gaunt turtle
#

@slate fable url available ?

slate fable
#

wdym?

#

Yes, many people say that

soft axle
brisk bridge
#

hi

gaunt turtle
#

@brisk bridge Hello

somber heath
#

@steel crystal 👋

gaunt turtle
#

@steel crystal Hello

toxic viper
#

yo guys

obsidian dragon
somber heath
#

@ebon yarrow @whole bear 👋

ebon yarrow
#

hi

abstract needle
#

guys, i want to ask something, if you dont mind...

abstract needle
#

why cant i share screen...

somber heath
#

@final agate 👋

#

@sage oak 👋

sage oak
abstract needle
#

okok

somber heath
#

!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.

somber heath
#

@empty jetty 👋

empty jetty
sage oak
#

reminds me of my high-school

somber heath
#

@merry sand 👋

#

@supple cove 👋

upper basin
#

!e

import random as random

random.seed(0)

for _ in range(10):
    print(random.random())
wise cargoBOT
somber heath
#

!e

import random as random

random.seed(0)

for _ in range(10):
    print(random.random())
wise cargoBOT
supple cove
upper basin
supple cove
#

nobody can accuse me of trying to game it if I stay excessively introverted

sage oak
#

true that!

#

When you mentioned testing, that reminds me of -

abstract needle
#

ABB

somber heath
#

@crystal verge 👋

rugged root
#

What do you think this is

cursive wave
#

what

#

I used to be able to speak

somber heath
#

I was just wondering about that.

cursive wave
#

@rugged root can I get access?

somber heath
#

Because it's not like you left the server, right?

cursive wave
#

no

#

I did get banned from speaking for an hour a couple of days ago

#

but this has been long gone

somber heath
#

O...kiedoke.

cursive wave
#

can I speak though?

#

😭😭

#

goddamn it

rugged root
cursive wave
#

I did

#

multiple times

rugged root
#

Leave and re-enter

#

You have the role, but the permission itself has to kick in

cursive wave
#

thanks

dire pebble
#

I really need someone to guide me setting up MinGW and GCC, I am a complete beginner for C language journey and I don't want to leave Windows because of significant reasons

upper basin
somber heath
upper basin
#

Why does it feel AI generated?

#

Feathers look gorgeous.

somber heath
#

We don't have them around here.

quartz beacon
#

can't join but hiii

dire pebble
somber heath
#

@warm carbon 👋

upper basin
#

Greetings @vocal basin

vocal basin
#

discord picked the wrong output device again

#

mobile moment

high salmon
#

@upper basin you

upper basin
#

Mute button is an option.

#

AF is your output fixed?

vocal basin
#

idk

#

I do hear leave/join sounds

#

and seemingly nothing else

#

but that doesn't seem to be related to the output device selection

#

it should be less broken now than before

#

there is some sound but bandwidth is approximately zero

#

verdict: vpn client was broken

#

or is

#

webrtc works only right after disconnecting it

upper basin
#

I can relate.

rugged root
vocal basin
#

I think the previous month was the first I ever had with only one game played

#

at least within the last few years

vocal basin
#

knowing how tesla production quality changed over years, maybe used are even better than new ones

#

there are chargers near where I live

#

just randomly placed on some remote street

#

premoving

#

minesweeper.online not happy about the vpn

high salmon
#

@wind raptor yo bro can u check dms for a min

#

@upper basin AC

upper basin
short owl
#

Linux based , now opensourced , check garage sales , they will gather dust soon

#

Pydroid , have you tried it @rugged root

vocal basin
#

you can register custom functions in sqlite afaik

#

externally implemented

#

sqlable spreadsheet

#

(access)

#

@rugged root the one that Oracle consumed is MySQL

rugged root
vocal basin
#

Wolfram has its own plotting thingy, quite good too

#

but that's more scientific

rugged root
#

Wolfram is so crazy

vale plank
#

cli

#

true

vocal basin
#

wolfram engine is free; idk whether matlab has free version

wind raptor
#

@gentle flint

select column_name, data_type, character_maximum_length, column_default, is_nullable
from INFORMATION_SCHEMA.COLUMNS where table_name = '<name of table>';

is the universal way that will work from pgadmin console.

\d+ tablename

Will only work from psql command-line tool.

vocal basin
#

wolfram engine is free

#

not alpha, yes

#

fun fact: tomorrow (Saturday) is work day in Russia

#

truly a schedule moment

#

(4th is a holiday so weekend is off by one)

#

((instead of being extended))

high salmon
vocal basin
#

what's a devolper

vocal basin
vale plank
#

do you mean developer

high salmon
#

like a web developer

high salmon
#

my bad

vocal basin
#

back in may, there was a 2-day work week

vale plank
vocal basin
#

May 2-3
May 6-8

5 work days in two weeks

upper basin
#

I'm hopping off guys. Wish you all a blessed day ahead!

vale plank
#

bye

vocal basin
#

it's almost every year that Russia has something weird with how May holidays are scheduled

#

@rugged root how do you know their password is 8 characters

#

yeah, frequent password change is bs

#

it's not more secure

#

not at all

rugged root
#

Less of an issue if you use a password manager

#

Unless it's your system login

vocal basin
#

the less convenient it is and the more often you need to do it, the more chances you do something wrong

#

ah, yes, the most secure:
Password1!

#

(Zitadel default)

#

PyCharm does that too

#

except it's 1000 clicks away

#

settings
project interpreter
then somewhere else

#

I really don't want to go back to IntelliJ IDEs for a while

#

especially given I can't pay

rugged root
soft axle
vocal basin
#

PyCharm's analysis is different

#

for simple things it's worse than pyright+ruff

#

and for more complex things, kind of odd

#

e.g. code duplication detection

#

I would very much rather the LSP get simple things right than have that

rugged root
#

That combo works pretty good in Sublime. I don't know why I like Sublime so much... Just feels nice to use

#

Simple

vocal basin
#

out of all IntelliJ stuff, I'd probably only use IDEA and Rider

#

because C#/Java support in VSC is not great

soft axle
#

anyone know if R studio is good for python?

vocal basin
#

idk about VS proper now, but earlier it was quite lacking in C# analysis too

rugged root
#

Are there any good sandbox tools that I can use to check if a file we get from an email or client is legit?

#

I feel like someone mentioned one to me but I can't remember

rugged root
#

Documents mainly

#

PDF in particular

vocal basin
#

browsers should be sandboxed enough for opening those, I'd expect

rugged root
#

Wonder if something lower powered like Sumatra would prevent sketchy shit from being executed

vocal basin
#

pandoc pdf to png

#

idk if it actually allows such conversion

#

and it definitely is not concerned with security as top priority

soft axle
#

you can go to a website that turns pdfs into pngs

#

they're free

vocal basin
soft axle
#

idk what file is considered most secure

rugged root
#

Yeah but if it's legit client info then I don't want to put it on the net in any form

soft axle
#

In R, ik you can read a file as something else like txt or csv, idk if they have something like that in Python

#

the format will be non existent, but idk what to do about that

rugged root
#

I might poke my head in the security channel, see if they have any they recommend

urban abyss
#

how's it going peeps

maiden herald
gaunt turtle
#

@somber heath hello

#

@somber heath how are you ?

#

why ?

#

ok

#

are u working on something @somber heath

#

i am boring too

#

Hey @somber heath which is better cody or github copilot ??

#

as vs code extension

#

any ai tool u used for programming ?? @somber heath

#

what exactly is good code or bad code ?? i mean as a developer how can we differentiate ?

#

ok so with experience i can differentiate between them

somber heath
#

@fair jetty 👋

wintry socket
#

Anyone fluent with java here?

somber heath
#

@pine iron 👋

#

@carmine pawn 👋

carmine pawn
somber heath
carmine pawn
#

I'm new my mic doesn't have permission

somber heath
#

!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.

somber heath
#

@swift pollen 👋

pine iron
somber heath
#

@outer yoke 👋

outer yoke
#

heyo

#

wait a sec brb

somber heath
#

!e SystemExit

wise cargoBOT
somber heath
#

@twin token 👋

twin token
#

hi

#

cant talk

#

I have no permission to talk or even chat

upper basin
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.

twin token
#

thanks

upper basin
#

!pypi antigravity

wise cargoBOT
#

A really simple module that allow everyone to do "import antigravity"

Released on <t:1196938998:D>.

upper basin
#

!e

import antigravity
wise cargoBOT
upper basin
karmic rain
#

hello anyone here

karmic rain
#

hello

toxic viper
#

yo

#

how ya'll doing

somber heath
#

@waxen cedar 👋

#

@unreal berry 👋

unreal berry
#

helol @somber heath

#

hello

#

@wind raptor why i keep forgetting to code in phyton

#

everytime try to make a program i only remmber how to use for while , etc basic stuff

but when i try using csv and matlobip my brain just can't create codes lmao

#

@wind raptor

#

BUT I NEED TO HAVE THE POWER TO START manipulating DATA. @opa'

#

@somber heath

#

so u are telling me like im still in kindergarden in PY? @somber heath @wind raptor

so i just need to keep builiding in basic codes untilll i need to start using like .lower .title .upper or even d = []

d = {}

#

actually i just started lol @somber heath

not even close to 1 month

doing my courses

#

does core phyton @wind raptor i need to straight learn matlopbib?

somber heath
#

@tribal nymph 👋

unreal berry
#

i think im not smart enough to use for and while loops

because i didn't know it can do with a and or B not.

i need to go down again lmao

but how do i should remmeber dictionaries?

somber heath
#

!e py my_dict = {'key 1': 'value 1', 'key 2': 'value 2', 'key 3': 'value 3'} print(my_dict.keys()) print(my_dict.values()) print(my_dict.items())

wise cargoBOT
unreal berry
#

so i need to treat phyton like always open up the libraries

#

@wind raptor

#

not actually try to remmeber it?

#

ye @wind raptor

somber heath
#

@worn pine 👋

unreal berry
#

yes lol @wind raptor

#

i only know it

#

like reading the manual book, just about knowing how it will works, i don't need to remember anythin, because it's muscle memory anyways?

#

iam a type of a guy who always will read the notes of how to use the tool, im not that good in remembering it. am i doin a good pathway?

unreal berry
#

@somber heath ok

late spoke
#

hi

#

fine

unreal berry
#

alr thanks guys

hybrid bolt
#

oi

#

slide them speaking perms

wind raptor
#

!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.

wind raptor
#

!stream 618957089833877518

wise cargoBOT
#

✅ @hybrid bolt can now stream until <t:1730602696:f>.

somber heath
#

@mint quartz 👋

somber heath
#

@primal torrent👋

primal torrent
#

Hi, apparently I can't talk

somber heath
#

!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.

primal torrent
#

I don't really like texting all that much

#

So I guess I'm out of luck

somber heath
#

In this case I'd say it's a luck you can make, yourself, but as you will.

mint quartz
forest dagger
#

hello!

unreal berry
#

say somtin @stark river

#

!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.

unreal berry
#

BRO PY JUST TRASH TALKED ME LMAOO

fallow gyro
unreal berry
fallow gyro
unreal berry
fallow gyro
fallow gyro
unreal berry
fallow gyro
unreal berry
#

It's JJK

#

Jujutsu Kaisen

fallow gyro
#

oh yes

#

lol

#

How could I said Naruto I did a Blasphmy

unreal berry
#

LOL

fallow gyro
#

Yes

#

kind of like that

weak radish
#

Hello

fallow gyro
#

Hi

unreal berry
#

Hola

weak radish
#

Wsg

#

Nice?

fallow gyro
#

nothing just chhating to unlock the privillage to chat afte 50 messages 😄

weak radish
#

:]

fallow gyro
#

i mean we are grinding voice chat unlock achivement

wind raptor
#

Which are not appropriate for this server @weak radish

weak radish
#

My fr sended to me that

#

And he said to me that is from python

#

Zhis

fallow gyro
#

Oh look Software Jesus has arrived

weak radish
#

This*

wind raptor
#

Ok, but that is against our rules. Please don't ask about it or post about it again.

fallow gyro
wind raptor
#

The token grabber / nuker

fallow gyro
#

let me search that

wind raptor
weak radish
fallow gyro
# weak radish Np:]

You just commited a cyber crime against Skyrim and its people what say you in your defense?

wind raptor
#

Everything is fine lol Just wanted to stop anything before it really started haha. Nobody is in trouble.

fallow gyro
wind raptor
#

It's not a field I love, but I have experience with it.

fallow gyro
# wind raptor It's not a field I love, but I have experience with it.

I have started with learning Python as a language by actualling going a little deep and started with Data Analysis. i learned the language first because i did not had CS background so now that i know Software Design Principle, DSA and read Fluent Python book. I am now doing some Data Analysis Project but What do you need to become a good Data Scientist?

toxic viper
#

yo @stark river

fallow gyro
#

Soemone is Spaming Alert

toxic viper
fallow gyro
#

Call the Group Jesus

toxic viper
#

lol

#

wdym

#

i'm just trying to get someones attention

fallow gyro
toxic viper
fallow gyro
#

YaY!!!

wind raptor
#

I leave for a couple minutes..

amber raptor
#

Just ban all 3 of us

wind raptor
#

@toxic viper Please no spamming

fallow gyro
toxic viper
wind raptor
#

Yeah, I was making a bagel for my wife. She takes priority

amber raptor
toxic viper
fallow gyro
#

yeah whats that?

toxic viper
#

bwalalela

toxic viper
#

shaped like a donut

wind raptor
#

You're still spamming

toxic viper
fallow gyro
wind raptor
#

I am deleting the spam messages because they do not count toward your msg count

fallow gyro
wind raptor
#

It's not a short journey though

amber raptor
somber heath
#

A bachelor pad, obviously. Pft.

amber raptor
#

I only rate Bachelor Cave

somber heath
#

Shed as a third option.

fallow gyro
# wind raptor It's not a short journey though

yes but like i said first I completely learned Python and Practiced it and Learned DSA and Design Principle and also read a intermediate book like fluent Python and now I am doing some Data Analysis and Automation of Excel with Python. What should be my next step

#

Now Mindful Jesus is zoned out again great.

wind raptor
#

I'm here

#

You didn't answer Rabbit's question about your Bachelor

fallow gyro
#

I am not talking to Rabbit well anyway I am Bachelors in Accounting and Finance. In Finance we did do Data Analysis with SPSS .

wind raptor
#

You pretty much need a degree of some sort to get into it

fallow gyro
#

I know a Data Scientist in my country who did not even went to school. I am not kidding i can show him

wind raptor
#

When the industry was new, that was a possibility. I think it's less of a possibility now

fallow gyro
#

I mentioned my degree

amber raptor
#

Outliers exist everywhere but they are called that for a reason.

fallow gyro
#

Its a skill oriented field and In Finance we learned more Statistics than a CS student

wind raptor
#

You can probably do freelance work, but to get hired, I think it will be tough without a CS or Math degree

amber raptor
#

And in the year of our lord 2024 with tech market shrinking, outliers become harder to pull off.

fallow gyro
#

Have you seen that level of Statistic we learn in Finance?

wind raptor
#

Did you study linear algebra, matrix algebra, vector calculus, and multivariable calculus?

fallow gyro
wind raptor
#

Nice

fallow gyro
#

The math you just mentioned we applied in Stock Market Analysis and Sales Analysis. Array 2 D array 3 D array etc

#

Basicall I am from Asia the degree difficulty deffer Asian compared to western, Asian course Outline is way difficult compared to west

wind raptor
#

Where are you searching for a job?

fallow gyro
# wind raptor Where are you searching for a job?

not right now, right now as i am switching field and spend 1 year already on the stuff i mentioned. Right now i am building a portfolio and i am also looking to do some freelancing before and then try for job after 4 months, so i have something to show

wind raptor
#

And after 4 months, what country will you be looking to get a job in?

fallow gyro
#

I am from Pakistan so I will apply for local companies we have here that do jobs for Western countries, they are like Outsourcing back office. and then after that I will look for Remote Jobs.

wind raptor
#

Ahh ok. Well I cannot really speak on the job requirements or market there. I only know the Canadian and US market.

#

So then sure, if you've done your research and have all the requirements for the industry there, then you should be good

fallow gyro
wind raptor
#

Yeah, data science is a broad term for many different jobs.

fallow gyro
wind raptor
#

Depends if the individual employer acknowledges or cares about certificates. If you have no experience, it's better than nothing usually but any amount of real experience replaces certificates REALLY fast.

fallow gyro
wind raptor
#

No problem! Cheers and good luck!

maiden herald
#

Hello

#

My college has started to promote aiesec volunteering and internship programs

#

But right now volunteering programs are available but they are non technical ones

#

Are they helpful or can they be ignored??

#

AIESEC is entity under UNO

stark river
# maiden herald My college has started to promote aiesec volunteering and internship programs

aiesec is more like a cultural exchange program where you go and live in another country for a summer. make some friends. mayyybe make some contacts that can help you in the future e.g. if you are looking to setup your business in the future etc. but aiesec doesn't have much direct value on its own. think of it as a way to network with people. if you are looking to start a business in the future, you can think of it as a way to networking with people 101. if you are looking to get a job in the future, aiesec does not have much value and you would be better off on a summer internship. a friend of mine went to europe on an aiesec tour, he now runs an ecommerce business with funding from ycombinator.

frail narwhal
#

I cant speaking

somber heath
#

@halcyon wharf 👋

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.

somber heath
#

@spare rapids @austere nimbus @hearty siren 👋

frail narwhal
#

Databases is btree

misty vigil
#

hey how can i get the permission to stream on vc

somber heath
# misty vigil hey how can i get the permission to stream on vc

Streaming permissions are available upon request of voice-regular moderator-level-and-above users at their discretion. Ask when you are both in the voice chat. If granted, streaming roles are generally temporary and you will be monitored while you stream.

#

The people to look out for are Mindful Dev and Mr. Hemlock.

#

Others are also a possibility.

unreal berry
#

still not voie verrified yet

#

what is a .keras file? and does the read and path = need ' ' or " "?

drowsy salmon
#

add ai to whatever saas you have for more sales

gilded rivet
#

トムソン 型抜き機 (SANWA TRP-1060-SS)の作業動画です。

木型と呼ばれるカッターの刃のようなものが箱の「展開図の状態」で設置してあるものを使い
圧力をかけることにより、箱や紙器などを打ち抜きます。

この木型の刃が均一に当たらないと打ち抜け不良となるためセッティングには
非常に気を使います。

【オンラインストア】
https://taiyou-printing.shop-pro.jp/

大洋印刷:https://taiyou-printing.co.jp
Facebook : https://bit.ly/3cMpvy4
Instagram: https://bit.ly/3jUMriB

大洋印刷株式会社➝ https://goo.gl/maps/kUeTFr...

▶ Play video
#

トムソン 型抜き機 (SANWA TRP-1060-SS)の作業動画です。

木型と呼ばれるカッターの刃のようなものが箱の「展開図の状態」で設置してあるものを使い
圧力をかけることにより、箱や紙器などを打ち抜きます。

この木型の刃が均一に当たらないと打ち抜け不良となるためセッティングには
非常に気を使います。

【オンラインストア】
https://taiyou-printing.shop-pro.jp/

大洋印刷:https://taiyou-printing.co.jp
Facebook : https://bit.ly/3cMpvy4
Instagram: https://bit.ly/3jUMriB

大洋印刷株式会社➝ https://goo.gl/maps/kUeTFr...

▶ Play video
pallid hazel
#

lol, I just tried to spoof an snmp oid range to a text file so I could hit a device and find all the hidden info that perhaps the manufactorer doesnt want me to have.. just 1 block calcuated to take 4.3tb to store as a text file.. 198m entries.. guess I wont do that 😦

toxic arch
#

@late spoke dis true?

late spoke
lime fractal
#

Can some1 help

lime fractal
#

Can i get Android on a Windows 11 leptop

#

Or playstorr

#

Without bluestacks or that i just want the app playstore

late spoke
# lime fractal Or playstorr

you can create a Hyper-V image inside windows (lets you run a virtual machine with its own OS inside it) ..

  • not sure if you can directly install Android in it (most probably should be)
  • But you can definitly install Windows then Bluestacks (then you don't have to install Bluestacks on your main computer)
somber heath
#

@gloomy trellis 👋

lime fractal
#

Bluestacks not support bluetooth

lime fractal
#

because noting x app has bass boost and ask to link but bluestacks has no bluetooth

#

and noice canceling

#

i want on leptop

unreal berry
#

@stark river sup my G

#

u cookin?

stark river
#

reading code of some tool i will be using in my project

frail narwhal
#

good evening

unreal berry
lime fractal
#

so any1 know way to get playstore on leptop windows 11

#

no bluestacks because bluetooth dont work in it

cerulean ridge
#
  1. knock shoes before I wear them
  2. shake my blanket and sheet and I get to bed
  3. ???
#

Heteropoda jugulans ?

#

@somber heath I don't have a mason jar, and it is on my shoe, not on flat ground. Do you have better ideas?

cerulean ridge
wise loom
#

anki

cerulean ridge
marble mantle
#

I've lost track of spider population in my room

#

ones, that are left, don't get near me often

#

once had a spider walk over my hair when I was about to sleep

#

I just let it walk off of it (it clearly wasn't intending to crawl further onto me so waiting was enough)

somber heath
#

@errant quiver 👋

marble mantle
#

I think spiders I have are more like scavengers

#

they do absolutely nothing to catch mosquitos and just eat the ones I killed

#

they also somehow get into the windows

#

between two layers of glass

#

I had spiders walk on me multiple times but I have slower reflexes (neurological issues) so I don't react as instantly

#

and the last two times I remember both involved light spiders (not regular dark spider we have)

marble mantle
#

pycord allows voice input

#

but uh

#

it's pycord

#

oh wait

#

correction

#

* py-cord

#

:trollface::trollface:

#

!pypi pycord

wise cargoBOT
#

Convenient wrapper on top of FFmpeg

Released on <t:1636315268:D>.

marble mantle
#

still not their package

frail narwhal
#

hello OpalMist😀

somber heath
#

@coarse obsidian 👋

exotic adder
#

@somber heath Iam suppressed here

#

voice probs

frail narwhal
#

hello

#

hello Ef

#

there are two different errors, positive false and negative true

#

and there are positive true and negative false

#

these four numbers make the confusion matrix

karmic rain
#

@cinder wing @upper basin hello

#

are you guys afk ?

marble mantle
#

ace might still be focused on gaming

karmic rain
marble mantle
#

Russian

#

or Voronezhian

karmic rain
karmic rain
marble mantle
#

I'm not a bro and the last time I played Minecraft was >year ago

unreal berry
#

so if it's import tensorflow as tf

what is the "tensorflow"?

is it the library or what do i called it?

@somber heath

somber heath
#

!e py text = 'hELlo, wOrld.' print(text.upper()) print(text.lower()) print(text.title()) print(text.capitalize())

wise cargoBOT
somber heath
#
var = 'Hello, world.'```
unreal berry
#

brb @somber heath bathroom break

somber heath
#

Lists.

#

That's what I was thinking about

#

!e py my_list = [] my_list.append('One') print(my_list) my_list.append('Two') print(my_list) my_list.remove('One') print(my_list)

wise cargoBOT
somber heath
#

@cinder wing 👋

cinder wing
cinder wing
somber heath
#

!d list

wise cargoBOT
#

class list([iterable])```
Lists may be constructed in several ways:

• Using a pair of square brackets to denote the empty list: `[]`

• Using square brackets, separating items with commas: `[a]`, `[a, b, c]`

• Using a list comprehension: `[x for x in iterable]`

• Using the type constructor: `list()` or `list(iterable)`...
cinder wing
#

Now that I think about it, I used it for a few 1st person pubg servers before they rolled it out officially, and also for UFC and NFL streams lol

somber heath
#

@fallen tartan 👋

fallen tartan
#

heyy

#

its sasha

somber heath
#

@supple veldt 👋

fallen tartan
#

yea its written in slovak, but i think half of slavic countries has š

#

hahahahsh ye ur right but there're many like ž is zh and there are soft like ň
and ü is german thing

#

also we have ô, it has uo sound

#

i mean languages are hahah

#

oh yayayay its like a big story of some sort of trauma goin through centuries in sounds and their combination

#

its an absolute chaos

#

but not

#

okay i have to go sleep, have a good time there!

somber heath
#

@rocky latch 👋

somber heath
#

@hasty matrix 👋

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied timeout to @hasty matrix until <t:1730856002:f> (10 minutes) (reason: burst spam - sent 8 messages).

The <@&831776746206265384> have been alerted for review.

somber heath
#

@torn yarrow 👋

torn yarrow
#

Hi