#ot1-perplexing-regexing

1 messages ยท Page 44 of 1

eager cliff
#

And idk if he has free sync turned off

graceful basin
#

freesync works with both GPU brands, that shouldn't be an issue afaik

eager cliff
#

It does?

#

Windows 11 is shit

graceful basin
#

have you tried other games? Could be some oddity with csgo specifically

eager cliff
#

I restarted the pc for the bios and I dont know his pon to log into his windows account now

#

He bought the pc prebuilt

graceful basin
#

ah, that smells like thermals then

eager cliff
#

And I'm kinda worried they didnt install all the proper drivers too

graceful basin
#

expo will likely be off as well, since it is technically overclocking

eager cliff
#

Like theres other performance issues outside of gaming

#

CPU based processes like discord and steam very slowly load in and occasionally have to be restarted several times

graceful basin
#

my bet is on overheating due to poor airflow/cooler choice, or the CPU being prevented from boosting to avoid temp issues

eager cliff
#

It isnt making any noises

#

I dont hear fans turning

#

So fans probably arent even turning on to create the air flow the pc needs to breath properly

graceful basin
#

a bad fan curve could also be the problem, ye

eager cliff
#

Delete didnt take me to bios

#

Neither did f2

#

F2 took me to hp device something something, wasnt a bios that I ever saw

#

I dont think it's a ryzen 5 2600, I think it's a ryzen chip with integrated graphics.

#

Could be using integrated graphics instead of gpu

#

Not sure

graceful basin
#

if the monitor is in the GPU, that would be quite unlikely

eager cliff
#

The mobo doesnt even have a adapter slot for a display cable or hdmi

#

It's also connected to gpu

graceful basin
#

I would grab hwinfo64 or sth and check if the CPU+GPU freqs and temps make sense

eager cliff
#

Maybe the doofus is limiting cpu and gpu usage by accident on msi afterburner

#

If I had his permission I'd like to just check thermal paste

#

Or atleast see if the fans are even on

#

I'm gonna take a look at what cpu it is, but I could've sworn it was a 2600

#

It's a ryzen 5 5600G

#

The discrete gpu isnt showing

#

But it does show here

#

God I hope it's two 8gb sticks of ram and not a single 16gb stick

graceful basin
#

what's the CPU frequency like in task manager

eager cliff
#

The problem might actually be malwar

#

Theres an app called altruistic running and its causing cpu usage to fluctuate between 60 to 100% usage

#

Rests at 80%

robust zephyr
eager cliff
#

No games or anything are running this is just idle

graceful basin
#

ah, that would do it indeed

robust zephyr
#

sounds like you are running a crypto miner

#

that'll do it for sure

eager cliff
#

Now it's at 0%cpu usage

#

It let me uninstall it no problem

#

Dont think it was the virus, just a dna application or whatever

#

Gonna try valorant and see how its performance is

#

The case only has one fan slot, that's in the rear

#

The intake grate doesnt even have a spot to mount a fan. Poor thing would be better off out of the case

#

Uninstalling that app fixed it tho

#

Up in the 400s for fps in csgo

jovial oriole
#

Ok fellas

#

Am desk

#

Overstand?

eager cliff
#

Yes

fair summit
hallow frigate
#

You mean you want to resize individual widgets, not the window itself right?

hallow frigate
#

do you want them to just resize when the window resizes? or be able to slide them around inside the window?

fair summit
#

absolutely like that code works, if you have python with tkinter

import tkinter as tk

class Window(tk.Tk):
    over_b1 = False
    over_b2 = False
    drag_b1 = False
    drag_b2 = False
    mouse_x = 0
    mouse_y = 0
    
    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.geometry("720x400")
        
        self.container1 = tk.Frame(self)
        self.container1.pack(side="left", fill="both", expand=True)
        
        self.container1_1 = tk.Frame(self.container1, bg='red', width=0)
        self.container1_1.pack(side="top", fill="both", expand=True)
        
        self.container1_2 = tk.Frame(self.container1, bg='green', width=0)
        self.container1_2.pack(side="top", fill="both", expand=True)
        
        self.container2 = tk.Frame(self, bg='blue')
        self.container2.pack(side="left", fill="both", expand=True)
        
        self.bind('<Motion>', self.on_move)
        self.bind('<B1-Motion>', self.on_drag)
        self.bind('<ButtonRelease-1>', self.un_hold)
    
    def on_move(self, event):
        self.size_x = self.winfo_width()
        self.size_y = self.winfo_height()
        self.mouse_x = event.x_root - self.winfo_x() - 8
        self.mouse_y = event.y_root - self.winfo_y() - 31
        self.c1_1_size_x = self.container1_1.winfo_width()
        self.c1_1_size_y = self.container1_1.winfo_height()
        
        if abs(self.mouse_x - self.c1_1_size_x) < 3 and not self.drag_b2:
            root.config(cursor="sb_h_double_arrow")
            self.over_b1 = True
        elif not self.drag_b1:
            self.over_b1 = False
        
        if abs(self.mouse_y - self.c1_1_size_y) < 3 and self.mouse_x < self.c1_1_size_x + 3 and not self.drag_b1:
            self.over_b2 = True
        elif not self.drag_b2:
            self.over_b2 = False
        
        match (self.over_b1, self.over_b2):
            case (False, False): root.config(cursor="arrow")
            case (False, True): root.config(cursor="sb_v_double_arrow")
            case (True, False): root.config(cursor="sb_h_double_arrow")
            case (True, True): root.config(cursor="fleur")
            
            
    def on_drag(self, event):
        self.on_move(event)
        if self.over_b1:
            self.drag_b1 = True
            if self.mouse_x < 50: new_x = 50
            elif self.size_x - self.mouse_x < 50: new_x = self.size_x - 50
            else: new_x = self.mouse_x
            # self.container1.configure(width=new_x)
            self.container1_1.configure(width=new_x)
            self.container1_2.configure(width=new_x)
            self.container2.configure(width=self.size_x-new_x)
        if self.over_b2:
            self.drag_b2 = True
            if self.mouse_y < 50: new_y = 50
            elif self.size_y - self.mouse_y < 50: new_y = self.size_y - 50
            else: new_y = self.mouse_y
            self.container1_1.configure(height=new_y)
            self.container1_2.configure(height=self.size_y-new_y)
            
    def un_hold(self, event):
        self.drag_b1 = False
        self.drag_b2 = False

if __name__ == "__main__":
    root = Window()
    root.mainloop()
#

like vs:code terminal x explorer x code_redactor

#

anyway
mine works well
should make it handle window resizing and ok

fair summit
#

ez

self.minsize(width=self.c1_1_size_x + 50, height=self.c1_1_size_y + 50)
rough sapphire
#

how do i install the missing dependencies (C++)

rough sapphire
high haven
#

google sheets can connect to big query but dont use as actual db. kthxbai

thick ore
#

i will use it as a database

#

going to switch over from JSON file db

high haven
fathom musk
#

Google sheets!!!!!!!! My fav DB ๐Ÿฅฐ

#

btw choose between
are you a doctor of philosophy? because you're P(retty)h(ot)D(amn)
or
are you a PhD? because you're P(retty)h(ot)D(amn)

stark oasis
#

This joke is only marginally better than that one

wraith hound
#

that's awful i love it

gritty zinc
#

the dark side of the force accepts both kinds of slashes

thick ore
#

windows 11 paint >>>>>>>

#

it's so "modern"

gritty zinc
#

they overhauled paint? nice, only took them, what, a decade? ๐Ÿ˜›

#

i guess they had to do something to cover up everything else about win11

thick ore
#

it works fine, why does everyone hate it ๐Ÿ˜”

gritty zinc
#

that's a low bar

thick ore
#

genuinely, why

gritty zinc
#

well, people get used to good things, and when like them getting better over time and not worse? for people to like win11, it needs to not just work fine, but be equivalent or better to e.g. win10.

tardy rain
#

Can i remove the background out of shit yet?

#

I swear paint used to have this functionality

grave cove
#

that's hilarious

eager cliff
#

Does anyone know what could be drawing this crosshair display so I can turn it tf off

prime lagoon
eager cliff
#

Nvm I fixed it

fair summit
#

Not unguided, but i managed to get arch

#

Ok so, few issues:
Runs too slow, lags even on that screenshot

#

I suppose, that this is due to that it uses cpu to render it

uneven pine
#

That and it's arch

ionic jolt
heady hamlet
#

there is only buddha cat no buddha dog or buddha pig

thick ore
#

buddha dawg โŒ butta dawg โœ…

grave cove
#

valid

ionic moth
#

(I use arch btw)

fair summit
ionic moth
#

uh sure but I didn't do any magic thingy, like I installed with archinstall (yes I am very ashamed) then installed all the necessary stuff n it just worked

acoustic moss
#

the dog with the butter

thick ore
#

the image contains a dog with butter on its head

#

it is quite humorous if you ask me

cinder grotto
#

Butter dog be better dog

acoustic moss
#

i agree with the conclusion draw above that said meme is quite hilarious

grave cove
rough sapphire
ionic moth
#

that's gnome

#

arch actually looks like nothing

grave cove
#

@thick osprey Hey Proects! Sorry to bother - but I recall you talked about randomizing your test order in your projects, I'm wondering if there's any other "test enhancement" stuff like that you use?
I'm looking to improve my tests by running them in random orders, and introducing randomness into the test itself, so I've been curious if you have/are already using tools for stuff like that. Thanks!

thick osprey
grave cove
#

Thanks! Do you recommend any resources for testing best practices like this? I'm working on a project and it's my first time really working with testing, and I'm not really sure if I'm doing it right :P

thick osprey
#

I'm still not sure if I test correctly either. :P

For python I run coverage and aim for 100% with my tests. I avoid mocking when what I'm mocking isn't tested. I don't mock what isn't mine. I don't worry too much about tests first then code. I write whatever way gets things done.

jovial oriole
#

guys hlep linkedin says too young to make account

#

can i just email the people that posted the job application

#

or is that rude

thick osprey
#

If you are under the minimum age for an account on the site, are you under the minimum age for a job?

high haven
#

many sites have a minimum age for ToS too

#

cant hurt to double check

ionic jolt
thick osprey
#

For the US, yes.

drowsy rose
#

@foggy surge @heady solstice

#

@azure tapir

foggy surge
#

blockchain is such a useless technology

drowsy rose
#

ikr

#

i'd worry about quantum computers before blockchain/ai

foggy surge
#

everyone always brings privacy as the number one reason "the government is tracking us" ๐Ÿค“ and then every single crypto transaction can be traced to its original mine

drowsy rose
#

really?

#

i thought the main driver was "dEcEntraLized" ๐Ÿค“
also them: uses a centralized service to trade crypto

foggy surge
#

decentralized is good in theory like communism, but the point of decentralization is that EVERYONE contributes

drowsy rose
#

torrents are probably the best example

foggy surge
#

but on paper it falls apart because 90% of the market is consumers and 10% is developers/etc

drowsy rose
#

yeap

foggy surge
#

torrents are a good example but it also shows what happens when its neglected, if noone is seeding a torrent, you can no longer get it

#

it requires effort from all parties to keep the system running and modern society would never go for that

drowsy rose
#

yeop

foggy surge
#

we are so reliant on third parties that decentralization would only work if the entire world decided to up and take over these huge companies

azure tapir
#

privacy is not a feature of bitcoin no

#

theres some room for pseudonymity

#

kinda easy to wash money and such too

azure tapir
#

but its not respected in any way in the implementation

#

i dont think thats a problem though

foggy surge
drowsy rose
#

tbh i think the only valid selling feature of cryptocurrencies that applies to all of them is that no one can control the flow of them

azure tapir
#

a world where everyone uses bitcoin, i think that could be alright

drowsy rose
#

nft people forgetting that their images are hosted on a centralized service

foggy surge
#

so you want an entirely free market?

#

we saw what happened when rockerfeller was around

drowsy rose
#

not american, what happened?

azure tapir
#

why would it be a free market?

foggy surge
#

its not controlled, there would be no set price point to base crypto off of

azure tapir
#

when states can track any transaction?

foggy surge
#

cryptos price right now is based off of centralized global currency

azure tapir
#

based on speculation like any currency

foggy surge
#

currency hasnt been based on speculation since the 1800s

azure tapir
#

what?

foggy surge
#

its based on supply and demand, and when there is noone to micro manage that (decentralization) there is no regulation

#

things like monopolies would spring up in literal days

#

the internet is 90/10 like i was talking about earlier, 90% consumers, 10% creators

azure tapir
#

supply and demand for money, wouldnt that correlate with speculations about the future?

azure tapir
#

where did no regulation come from?

foggy surge
#

round numbers are just easier to digest in conversation

drowsy rose
#

i'd say 5% max

foggy surge
#

the idea of no regulation is implied in any decentralized system

#

it is completely delusional to think people will "keep each other in check"

#

5% of people are going to make sure that everything is fair?

azure tapir
#

the means which states have at their disposal would change drastically

#

they cant regulate in the same way, but they could still enforce laws

foggy surge
#

ok juta

#

lets break this down

#

90/10, 90% consumers, 10% creators

azure tapir
#

i have no idfea what you're talking about

foggy surge
#

you are talking about a decentralized currency right?

#

how it is the future?

azure tapir
#

could be

foggy surge
#

but how

#

why

azure tapir
#

idunno its a cointoss really how things goes

foggy surge
#

but why would it be a good thing

azure tapir
#

might be a bad thing, but i suspect it would be alright

foggy surge
#

but WHY

#

what makes it good

#

it doesnt help tracking, it isnt stable, its unfeasible to say the majority of the population would want to do the work to keep it running

azure tapir
#

if it gets used more it'll get more stable, and the work to keep it running, thats a whole topic on it s own

#

noone other than me understands the energy consumption of bitcoin it seems, even if it isnt difficult

#

everyone says weird shit regarding it

#

most people dont undertand the dynamic difficulty of mining, and how that affects things

foggy surge
#

its a system based on large computation to keep it stable of course its going to have high energy consumption

azure tapir
#

if mining is less profitable and people mine less, that doesnt mean less blocks are made, it means the power consumption goes down, while the network is about as efficient

#

so the amount of energy that is spent on bitcoin is a function of the btc price and the energy price, and the size of the mining pool

#

its not that it consumes power , its that it offers spending of power

foggy surge
#

that is a recursive system, if bitcoin is based on energy price, and energy price is based on bitcoin it makes no sense

azure tapir
#

if everyone stopped mining except for me, it would be quite cheap

#

price of btc is driven up by the hype

#

its a natural effect of it growing that it inflates in price, which inflates the minig pool

foggy surge
azure tapir
#

measured in at least im not sure based on is correct

foggy surge
#

how do you expect bitcoin being based on the price of energy will work when energy has no currency to be based on

azure tapir
#

bitcoin will stabilize in price, and the level of mining that is profitable will stabilize

#

this whole argument that bitcoin lets you utilize energy that is in an inconvenient location though

#

i dont buy that at all

foggy surge
#

you said that

azure tapir
#

it lets you spend that energy on something, which deincentivizes you from actually solving the issue by building infrastructure or whatnot

#

building something more productive there to utilize it

drowsy rose
azure tapir
#

arent fees already the largest part of miners earnings?

#

transactions and fees and shit affect the price too

#

im not sure public adoption is even a blip on that radar though, compared to all currency trading going on

#

could you reason that trading activity will settle down if price gets more stable?

#

less load on the network, smaller fees, less profit for miners, less power spent

thick ore
#

911 already called SMH

drowsy rose
#

what

ionic moth
#

yeah miners are pretty cool

#

like where would u get metal if miners weren't there

tulip falcon
#

Space rocks

#

falling through my roof

ionic moth
#

sell em

high verge
#

dreamt in elden ring today

#

dreamt that i got whacked again by the same boss i went up against in the cave where the wolves are at

ionic moth
#

that's kinda too broad

#

there are a bazillion caves

#

n they all have wolves

high verge
#

the starting one in limgrave

glacial torrent
#

@frank sky
re: #data-science-and-ml message
not really, i "transitioned" to engineering simply because i enjoy it.
transitioned is in quotes because ultimately i am a problem solver, if my org point me to a problem, i will go and solve it (or prove impossible otherwise), if that requires data science then so be it, i am still not that far away from a potential data science task.

frank sky
#

And thank you for the help with the characters

glacial torrent
#

no problem ๐Ÿ˜‰

fathom musk
#

@finite sierra Is your website written with react?

#

Also, you should update your Discord tag there.

finite sierra
#

oh hi

#

it's really old svelte that i didnt bother updating in a while

fathom musk
#

You don't have the #8837 anymore so

finite sierra
fathom musk
#

lol I see

fathom musk
finite sierra
#

still in NIT

fathom musk
#

Which year?

#

By the way, can you friend me? I won't spam your DM to ask python questions lol. You're an interesting one but you've turned out friend requests :p

fathom musk
#

@finite sierra Guess you didn't read this?

astral elbow
lethal glacier
#

How to humble a narcissist with a big fat ego I swear they never believe they're the problem and find any excuse for everything

tardy rain
#

the trick is to not engage

high verge
#

^

ionic moth
#

sir this is Wendy's

high verge
#

i find it funny how someome told me i have a dual personality disorder and then shit like this happens that proves otherwise

long citrus
#

IS A LENOVO IDEAPAD SLIM WITH A 13TH GEN INTEL I5, 16GB OF RAM AND 1TB OF SSD GOOD

#

I'm gonna start learning to code and I need a laptop so yh

low wraith
long citrus
#

Idk if they are any good but from my little to none tech knowledge I know that its somewhat decent

high verge
#

get the amd one

#

i have a ryzen 7 7700x, beast of a cpu

#

its also octacore

long citrus
#

So I should get the one on the left?

high verge
#

ddr4 with an am5 chip
bruh

#

yeah its really good ngl

#

1tb ssd? fuckin hell

low wraith
#

Not sure about the processor (like knowledge wise not saying its bad) but everything else looks decent

long citrus
long citrus
high verge
#

backlit keyboard. tits

high verge
low wraith
#

only thing I would mention is it does have integrated graphics (which for coding / average usage) is probably fine unless you want to use GPU based machine learning, (which wouldn't be the best on any laptop most likely). However if you want to do gaming / other GPU intensive stuff I'd make sure to factor that in.

high verge
#

yeah, you wont be runninv any bitcoin miners on this laptop

long citrus
high verge
#

regardless, i dont think laptops shouldnhave a gpu card. its ridiculous to me

low wraith
high verge
long citrus
#

@high verge @low wraith so the one on the left is a beast?

high verge
#

lemme see the one on the right rq

ionic moth
#

oh so that was for you lol

#

tell her to play elden ring

high verge
#

right one is a downgrade

low wraith
high verge
#

agreed.

long citrus
#

What are you guys running?

high verge
#

SMH right one has no backlit keyboard. huge minus. backlit keyboards are almost necessary

high verge
long citrus
ionic moth
low wraith
ionic moth
#

or is there a different reason

low wraith
#

Also just in general makes it look a ton cleaner imo (though that is just asthetics)

high verge
# long citrus Whats the specs on it ๐Ÿ‘€

ahem.

ryzen 7 7700x 8-core CPU
32gb DDR5 RAM
radeon 6700xt GPU
512gb NvME SSD
deepcool ak620 CPU fan cooler(my pc idles at 30ยฐc on windows)
corsair rm750e 750w power supply
corsajr 4000D case with a blacked out side panel

high verge
#

oh, also i have a keychron k8 TKL RGB keyboard, and a keychron m3 mouse. both are wireless

low wraith
high verge
#

and a LG 4k monitor, which is ass because it has no hdmi link and changing inputs is a pita

high verge
#

everything is super snappy

tulip falcon
#

Gamers

low wraith
#

erm cmon don't make we spend my money lol

high verge
#

my pc boots up in like a second after the inital splash screen

low wraith
tulip falcon
low wraith
ionic moth
#

running win7 of course ๐Ÿ”ฅ

high verge
#

bro that was my old desktop no cap. i used to have a dell inspiron 3650

low wraith
high verge
#

i upgraded the ram for it from 4gb to 16gb ddr3

ionic moth
#

same

#

sad it got eos

high verge
#

what do you use to play elden ring??

ionic moth
#

laptop

#

3060

high verge
#

damn

#

you really be gaming on a laptop lol

ionic moth
#

yh lmao

#

i can confirm all the gaming laptops getting too hot memes

low wraith
#

man I remember when I was younger I had an expensive ass laptop which if I got a normal desktop instead it would've costed a fraction for the same parts

#

and ran better for thermal reasons lol

ionic moth
#

I actually got mine pretty cheap for the parts

low wraith
#

Love a good underclocked GPU and CPU ๐Ÿ˜„

high verge
#

my first computer was a sony vaio which was like $1k at the time. shitty as hell and i still got it

#

from like 2012

low wraith
#

All starts from that first computer

high verge
#

its broken and still running windows 7. i cant even get it to connect to wifi

low wraith
#

now I waste my time writing code for projects I rarley finish ๐Ÿ˜ญ

high verge
#

same

ionic moth
#

like Ethernet would not work

high verge
#

yeah same

ionic moth
#

I had to use some magic device that i would plug in and it would go wifi

low wraith
#

Protocol changes in network connectivity maybe?

high verge
#

perhaps

low wraith
#

I have no info to back that up but that would be my best gues

high verge
#

i have so much code on that laptop

ionic moth
#

i want to make a blog

#

but idk js

#

or ts

high verge
#

back when i used to be a 1337 hacker in games

low wraith
high verge
low wraith
#

Atleast the basics that is

ionic moth
#

do I need weird ass frameworks like react and that stuff to make a cool looking blog?

high verge
#

not really

ionic moth
#

pog

low wraith
#

Yes and no,

ionic moth
#

less pog

high verge
#

a developer from another server told me they can make a full ass responsive and great looking website for mobile and desktop using only html and css

ionic moth
#

also ima use bootstrap or tailwind cause css is too hard

high verge
#

css is a pita to work with i agree

low wraith
#

I personally don't use frameworks usually because I'm too stubborn lol though it can help.

low wraith
#

For something not even a coding language it can do a ton

ionic moth
#

I don't understand it tho

#

everything behaves weirdly

high verge
low wraith
#

Though it feels like trying to be the first one translating ancient text

ionic moth
#

he a real one for hating js

low wraith
#

If you wanna get into it the biggest thing for me was learning the different units lol

high verge
#

fr

low wraith
#

i.e. px % vw/vh etc.

high verge
ionic moth
#

what about rem

high verge
#

idk those yet, so i wonr touch them

high verge
low wraith
ionic moth
#

ah

#

i got no clue

high verge
#

i've tried my best at findinf the issue but nothing worjs

long citrus
high verge
high verge
ionic moth
#

mh

long citrus
low wraith
#
<div class="a">
    <h1>Hi</h1>
    <img src="abc">
</div>
.a {
    font-size: 50px;
}
img {
    height: 1rem;
    width: 1rem;
}

I believe would make the img 50px x 50px

ionic moth
#

icy

high verge
#

i threw away the remaining screws lmaoskullcry kr_deer

long citrus
#

Whyyy

high verge
#

it felt sturdy enough for me so im like aight trash

long citrus
#

You spent so much on the pc and you didn't even put it together properly

high verge
#

the whole build cost me like $600

long citrus
#

Tf how????

high verge
#

i got the cpu and gpu in payments

ionic moth
#

now that i think about it my phone's screen is falling apart

#

like it's detaching

high verge
#

bruh

low wraith
#

Holy sht 1tb nvme drives have gone down in price so much

ionic moth
#

ye

high verge
#

rn i can probably buy a horse with how much they lend me

ionic moth
#

how much's a horse

high verge
#

maybe not, but its still alot

#

it grows over time

ionic moth
#

the horse?

high verge
#

the klarna loan

long citrus
ionic moth
#

oh

long citrus
#

Wait can I use it on the lenovo website

high verge
#

try it

low wraith
#

What's interest rates like?

long citrus
high verge
#

look up the laptop in klarna or check if at checkout on lenovo's website it lets you pay with klarna

low wraith
#

0-0

long citrus
low wraith
#

Where they make their money? Late payment fees or something?

high verge
#

idek

ionic moth
#

btw is it an America only thing?

low wraith
#

What I was thinking but didn't wanna be an ignorant american lol

long citrus
high verge
#

i dont think so. they have support for different languages

low wraith
long citrus
high verge
low wraith
#

Or maybe that's not common knowledge ๐Ÿคž

ionic moth
#

so muslims can't get loans with interests ?

long citrus
ionic moth
high verge
#

oui

ionic moth
#

si

long citrus
low wraith
high verge
#

yeah i think klarna supports italians

ionic moth
#

woo

low wraith
long citrus
high verge
#

i bought my phone through klarna and my gf's phone too. we both have s23 ultra's

long citrus
high verge
#

yupp

low wraith
ionic moth
#

i wonder why a religion has such economic restrictive implications, like there must be a lore reason no?

long citrus
#

Like its quite a strict thing in islam

low wraith
long citrus
#

Thats basically the answer

low wraith
#

Though hundreds of years ago I guess debts where kinda necessary too but rather they would be less interest based and more whatever they deemed fair?

long citrus
low wraith
#

This is the stuff I would like to learn in history/social studies classes lol

#

Not the same thing wrapped differently every year ๐Ÿ˜„

#

Where are you from @long citrus

long citrus
low wraith
#

Ahh cool!

long citrus
#

Where you from

low wraith
#

United States

long citrus
#

Ethnically aswell?

low wraith
#

Yeah

long citrus
#

Nice

#

Whats your thoughts on guns then?

#

Ik its a random question

#

But its something I can never wrap my head around cause I come from a country destroyed because of guns

low wraith
#

Uhh kinda mixed, I do understand people wanting guns and I think amending the second amendment is dangerous so it's honestly something I can't put an answer

#

Because if they change the second amendment I think it could have repercussions in the future with other amendments

long citrus
#

What's the second ammendment

high verge
#

owning a gun license should mandate you to yearly mental health checks and provide the results to a court so they can decide if you will keep your license or not

low wraith
#

2nd amendment being right to bear arms (basically have guns)

long citrus
#

Oh ok

long citrus
#

People have short tempers

#

And unfortunately it leads them to killing people

high verge
low wraith
#

With that the 2nd amendment was built on the idea that if the government was to abuse power we would fight back but now I don't think that would work lol so there's that too ๐Ÿ˜„

long citrus
high verge
#

who pinged

low wraith
high verge
#

yk its scary to think about the kind of superweapons the usa possesses in secret

long citrus
low wraith
high verge
#

i have no doubt that we have created antigravity craft

ionic moth
#

yes sir judge i can ๐Ÿ’ฏ % be trusted with a gun

long citrus
ionic moth
#

i say ong

#

imo nobody should be allowed to keep one

rugged owl
low wraith
high verge
#

i like to imagine there is a bunker somewhere where they're developing some advanced scifi shit

rugged owl
high verge
#

like the chronoviewer

low wraith
#

With that I think it would tear the country apart indefinetly.

rugged owl
high verge
low wraith
ionic moth
#

ye there is i have a fusion reactor in my garage

ionic moth
low wraith
ionic moth
#

am i tripping or does fusion not need any radioactive stuff

long citrus
#

I just realised I brought this all up cause I asked your opinion on guns

#

๐Ÿ˜ญ๐Ÿ˜ญ

low wraith
long citrus
ionic moth
#

like fusion be
fairly hot temperatures -> shazam -> heavier atoms

#

no?

low wraith
#

could be wrong

ionic moth
#

it only releases mass as energy

low wraith
#

A fusion reactor produces helium, which is an inert gas. It also produces and consumes tritium within the plant in a closed circuit. Tritium is radioactive (a beta emitter) but its half life is short. It is only used in low amounts so, unlike long-lived radioactive nuclei, it cannot produce any serious danger.

ionic moth
#

could be, idk how to get to 100 million C

long citrus
#

@low wraith do you currently have a python programming job?

low wraith
long citrus
#

Oh wow

#

You started coding at 12

low wraith
#

Yeah cant wait to get out of school and make money lol

long citrus
#

I just turned 15 and I'm just about to start learning

low wraith
high verge
#

i think if you want a coding job most people would be looking at more heavier languages like java and c++

low wraith
#

I started around 9 on Khan Academy learning javascript

high verge
#

python is mostly for tools/data science

long citrus
low wraith
long citrus
low wraith
ionic moth
#

c++ good

high verge
#

html is a plus

long citrus
ionic moth
#

c# good too apparently

high verge
#

bro i hate and love c++ with a passion

ionic moth
#

it's hard

low wraith
high verge
#

the auto keyword seems like something terrible

high verge
#

wtf are templates

long citrus
low wraith
#

Java is a compiled language though it runs on the JVM (Java virtual machine)

long citrus
low wraith
# long citrus So can you code in java script?

Not necessarily completely fluent but know most of it other then stuff like Promises which I only know the basics of how to use them when they get created for me, not exactly creating them / more indepth usage.

#

Promises btw are Javascripts way of doing asynchronous code.

high verge
#

async code doge_bruhok

long citrus
#

Yh Idk what any of that means

high verge
#

the absolute worst

low wraith
ionic moth
#

me when maths

low wraith
high verge
#

not really but like cmon i dont wanna have to convert my whole codebase to be compatible with this one function that uses async

low wraith
long citrus
#

Here in the uk its only obligatory for you to do education until your 16 so basically once you finish your gcse and then after that you can leave education unless you fail english or maths gcse

low wraith
# long citrus Yh Idk what any of that means

Asynchronous code basically allows your program to do something else while another task finishes for example while you wait for a HTTP request to respond you can run other code

long citrus
#

Http?

#

I know literally nothing

ionic moth
#

ye

long citrus
#

I can just about do inputs and give them a label

low wraith
# long citrus Http?

Like sending a request (like browsing the web just through code) and getting the data from the request back.

#

Usually done on either HTTP or HTTPS

long citrus
#

Oh ok but what does https stand for

ionic moth
#

hyper text transfer protocol me believes

low wraith
#

basically encrypts the data so people can't view what you're doing.

high verge
long citrus
#

Oh ok thanks

long citrus
ionic moth
#

depends who's asking

low wraith
low wraith
long citrus
ionic moth
#

then 17

low wraith
#

(Actually a CIA spy but I can't tell you that)

ionic moth
#

ye

high verge
ionic moth
#

21

low wraith
#

lol

high verge
long citrus
#

No offence

low wraith
long citrus
#

But who says me believes instead of I believe

#

๐Ÿ˜ญ๐Ÿ˜ญ

long citrus
#

Please don't take offence

ionic moth
#

yeh me thinks it's really cool

long citrus
#

๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ

low wraith
#

I personally was a kindle fire kid lol.

high verge
#

its something my gf would say ngl and shes 22

low wraith
#

Was she an IPad kid?

ionic moth
#

she real for that

high verge
#

nope. ipod

#

@lethal glacier

low wraith
#

Ayy that was my upgrade from my kindle lol

long citrus
#

I'm none of the kids

high verge
#

WYD ONLIME

lethal glacier
#

IM PLAYING MARIO RUN

low wraith
#

Lmfaooo

high verge
#

WHY ARE YOU ONLINE THO

ionic moth
#

wtf is mario run

lethal glacier
#

AM NOT ??

low wraith
#

What time is it for you @high verge / @lethal glacier

high verge
#

8:27pm

low wraith
#

Oh

#

I mean

#

that's not that late lol

long citrus
lethal glacier
high verge
#

nah im asking bc she be asking me the same thing too wanting to kmow what im doing snd who im talking to

high verge
low wraith
ionic moth
#

yeah but there's no mario run

#

there's Mario kart

lethal glacier
high verge
#

no there is a real mario game

ionic moth
#

oh

high verge
#

that isnt mario kart

lethal glacier
ionic moth
#

DAWG PIXEL GUN 3D

low wraith
lethal glacier
#

Shud up

low wraith
#

lol

ionic moth
#

i loved that game

low wraith
long citrus
low wraith
#

Also charge your phone

high verge
#

hell nah im stealing the charger

long citrus
ionic moth
#

btw i have a shundo hydragon on pkmn go

low wraith
#

shoot my phone is at 32% lol

#

im a hypocrite

long citrus
ionic moth
high verge
#

mine was at 29%

long citrus
#

Oh shit its 1:30

ionic moth
#

hydreigon

high verge
lethal glacier
#

My phone charges fast

ionic moth
#

the pokemon

#

yk

high verge
#

oh i habent played that version yet

long citrus
#

Like the element?

#

H

low wraith
#

Yup

high verge
#

its in italian pasta man

ionic moth
#

dawg

long citrus
#

How do people like pokemon

#

Its just animated animals

high verge
#

i lobe that game so much

low wraith
high verge
#

i've played all of them except for black and white

ionic moth
#

why tf isn't there a .en version

high verge
long citrus
#

I'm a type of person who says what I'm thinking cause everyone I know doesn't get defensive

high verge
#

good friends

long citrus
#

So if I say something wrong please correct me or let me know

ionic moth
#

it didn't have https

low wraith
lethal glacier
#

I love Shrek and Super Mario

ionic moth
#

valid

low wraith
# ionic moth it didn't have https

Doesn't really mean anything tbh as long as you're not logging into anything, with that it does show that the owner of the site didn't go through the short process of adding a SSL cert.

high verge
low wraith
long citrus
#

Or wait a minute have I even watched it

low wraith
#

Lmfao

lethal glacier
#

I watch it whenever I need a reason to live ๐Ÿ˜

long citrus
ionic moth
lethal glacier
#

amegablobsweats boi you sometimes the reason I need to watch shrek ๐Ÿ˜‚

long citrus
#

I remember a scene where shrek and his wife I forget her name go into a bar

ionic moth
#

fiona

low wraith
#

I was gonna make a joke about couples therapy though if you watch shrek to get through stuff I highly doubt it haha

ionic moth
#

phiona

long citrus
#

Wait are @high verge and @lethal glacier in a relationship?

ionic moth
#

faiona?

lethal glacier
long citrus
rough sapphire
#

Im a steal ur bf

high verge
#

imma steal your reason to steal her

lethal glacier
high verge
#

and use it on her

ionic moth
rough sapphire
#

ล tef

long citrus
rough sapphire
low wraith
long citrus
#

"Og top g" ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ

#

Don't make me laugh ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ

lethal glacier
#

Anthy is my first bf.. kiss.. and everything and whatever else comes in our future

#

Stfffuuu

low wraith
#

๐Ÿคฃ

rough sapphire
low wraith
#

Ohh @lethal glacier you're in trouble it's Mel Gibson

long citrus
high verge
#

every time i tell her im talking to someone on discord you can straight away tell the murderous intent

lethal glacier
#

Good you can have him for half the day

low wraith
#

:D

#

Lmao

high verge
lethal glacier
#

Bring him back full so he don't finish my food

rough sapphire
high verge
low wraith
#

lmao

ionic moth
high verge
ionic moth
#

pog

low wraith
#

~90ish I'd say

lethal glacier
#

He's about a lamas weight I think

high verge
#

last time i got measured i was like 78kg i think

low wraith
#

maybe a little higher

long citrus
high verge
#

why

ionic moth
#

how tall r u

high verge
#

5'7

lethal glacier
#

๐Ÿ’€ UHM

high verge
#

STFUUUUUUU

low wraith
#

lol

rough sapphire
#

Again normal units

lethal glacier
#

I'm 5'5

ionic moth
#

is that like a lot

high verge
rough sapphire
long citrus
#

Bro is 5'6 and quater but he rounds up ๐Ÿ’€

rough sapphire
#

Smth like that

ionic moth
#

oh

#

I'm 183

lethal glacier
#

๐Ÿ˜‚๐Ÿ˜‚๐Ÿ˜‚

low wraith
#

Fun fact iirc the imperical system is actually based on the kg but we just add a conversion rate so we have AMERICAN UNITS

ionic moth
#

@rough sapphire how much is 183 in feet

#

lmao it feels so weird saying feet

low wraith
#

6'

ionic moth
#

how many hands are u lmao

long citrus
ionic moth
#

thanks

long citrus
lethal glacier
#

I'm 5'9 with heels and anthy hates it

ionic moth
#

i want heels too

high verge
#

lmaooo last time we went out my gf wore heels and it made her taller thsn me i was so offended i felt like a kid holding their mother's hand

lethal glacier
high verge
#

IT FELT LIKE I WAS DSTING HER INSTEAD OF HER DATING ME

low wraith
ionic moth
#

just get on ur toes

lethal glacier
#

u//w//u

lethal glacier
#

๐Ÿซ 

low wraith
long citrus
low wraith
#

:D

high verge
low wraith
lethal glacier
#

Imma go have anxiety

low wraith
#

@high verge You're thinking of this wrong

#

YOU get the heels

ionic moth
#

tbh being 6' isn't that practical

lethal glacier
high verge
long citrus
lethal glacier
#

๐Ÿ˜‚๐Ÿ˜‚๐Ÿ˜‚

low wraith
#

I feel so hypocritical making short jokes being 5'7 too lol

high verge
#

come to the room pls

low wraith
#

lol

ionic moth
#

lmaoo

lethal glacier
#

I got to do homework bai

long citrus
lethal glacier
#

plays mario run instead

high verge
#

shes really independent and dependent of me

lethal glacier
low wraith
#

@high verge Take her money and buy her gifts that way she cant be mad

#

then sell her heels for more gifts

lethal glacier
#

Imma be bad

#

MAd

ionic moth
lethal glacier
#

He owes me money

high verge
long citrus
low wraith
#

Ahh I was close lol

lethal glacier
#

he do spend my money

ionic moth
#

he be smelting minerals

high verge
#

i bought elden ring with my own money

long citrus
ionic moth
#

based game

high verge
ionic moth
#

PLAY HOLLOW KNIGHT

#

PLAY HOLLOW KNIGHT

high verge
#

i feel like i will really like that game

ionic moth
#

hollow knight is very very cool

high verge
#

lemme see if its on android

ionic moth
#

it's pc and console only

#

and switch

high verge
#

aw

low wraith
#

I love gaming but I don't have an interest in it anymore its so weird lol

high verge
#

i'll get the console version then

#

imma hop back on elden ring

low wraith
#

Like a play a game for maybe an hour at max even though I have a ton of extra time to burn

high verge
#

been farming runes lately

ionic moth
#

tbh i cracked and then bought the original on steam cause it was way too good

long citrus
low wraith
#

haha

high verge
#

yeah ๐Ÿ’€

#

i'll have to buy a new mobo

ionic moth
#

hollow knight is fairly easy for any pc

high verge
#

i dont wanna damage my cpu

low wraith
#

Though I mean ima be honest I doubt it's the motherboard as long as it didn't short anywhere

#

I'm assuming it doesn't even post?

high verge
#

it does

low wraith
#

It does post?

#

Oh wait you said it randomly shuts off?

#

Right?

high verge
#

it blacks out after like an hour of using it but if i dont use it and its on, it stays on. then when it blacks out the pc remains on but the os is 'unloaded'? like only the bios is running i assume.

#

and i cant even power it off when it blacks out

#

not even by holding the power button

low wraith
high verge
#

i have to switch the psu off

low wraith
#

oh not even holding power button I'm pretty sure that's hardware based not software

high verge
low wraith
#

hm

high verge
#

yeah like out of no where everything will shut down except for the hardware

lethal glacier
#

Nerds ๐Ÿ˜ฆ

high verge
#

i would still hear the fans running

ionic moth
#

weird

lethal glacier
#

My brain no comprehend yet

#

Soon it will c:

low wraith
high verge
#

and there is no error logs thst show anything weird happened before the black out

ionic moth
#

r u into tech n stuff or r in the python server just bcuz anthy is?

high verge
#

its probably a short

lethal glacier
low wraith
ionic moth
#

Okey cool

high verge
ionic moth
#

that would go with cmos

high verge
#

honestly, it makes a lot of sense thst this will be a bios issue

lethal glacier
#

I wanna be software and enginner or idk if there is term for both of them or should I just go for scientist or doctor idk

low wraith
ionic moth
#

i had a fubar bios and cmos fixed, so cmos can do everything

lethal glacier
high verge
low wraith
#

Does holding the power button work when it's booted?

long citrus
ionic moth
#

cmos reset

lethal glacier
#

I mean like software and the physical??

#

I wanna make machines ??

#

Idk the right term ;-;

long citrus
high verge
ionic moth
lethal glacier
lethal glacier
low wraith
ionic moth
#

english kinda lacking

high verge
long citrus
long citrus
ionic moth
lethal glacier
#

I says me thinks a lot ;-;

low wraith
#

there's two ways which a computer turns off either a interrupt gets sent to the kernel (short press of power) or it just cuts power off (holding)

high verge
#

yes, but the way i did it i'd just touch the CMOS_RESET pins on the mobo

long citrus
ionic moth
#

you unplug the cmos battery, wait for a bit and then plug it back in

lethal glacier
high verge
#

on mine i think its called CLR_CMOS

ionic moth
#

i would try removing the battery, can't fuck up anything

#

y never know

low wraith
#

I don't believe when you first press the power button it sends an interrupt, only on release so I don't think it could be software based for a forced power off

long citrus
#

@lethal glacier I found the word

high verge
#

the battery is like hard to take out though

long citrus
#

Its simply just engineer

lethal glacier
#

What's is it

#

I prefer scientist

#

SENKU INSPIRED ME

low wraith
ionic moth
lethal glacier
ionic moth
#

woo 3am

high verge
ionic moth
long citrus
#

I'm tryna make my set up smt like this but I have a waaayyy smaller space to do it

lethal glacier
low wraith
ionic moth
#

ye

#

poggers boot order

low wraith
#

H2O you got a water powered computer lol

ionic moth
#

i think it was because of a fucked up usb stick

long citrus
lethal glacier
#

๐Ÿค”

ionic moth
low wraith
# ionic moth

Is that blurred out or does it just have that weird block?

ionic moth
#

it has the weird block

low wraith
#

that's weird.

ionic moth
#

i know lmaoo

high verge
#

corrupted?

long citrus
#

Guys should I go to bed its 2 am

ionic moth
high verge
#

its 9am i gotta game

#

pm

ionic moth
#

it went away with cmos tho

low wraith
#

this There would be a decent chance of that.

#

(corruption)

#

What windows version is it?

long citrus
low wraith
#

Or rather what os.

ionic moth
#

win11

high verge
ionic moth
#

but like

high verge
#

i play mw2 too

long citrus
high verge
#

and gta

long citrus
ionic moth
#

i had a very cheap and silly usb n i thinkered with it a Lil too much

low wraith
#

Do you have another windows 11 computer you can use temporarily?

high verge
#

@long citrus

ionic moth
#

placidusaxxx

long citrus
ionic moth
long citrus
#

Too cartoony

ionic moth
#

it went away with cmos

high verge
long citrus
#

I play tactical/football games

high verge
#

i was cussing all morning today bc of this game

ionic moth
#

skill issue

#

?

#

git gud

low wraith
# ionic moth it's all good that's an old pick

Ah well if you do search windows media creation tool and I believe you can create a repair tool, if it allows you to change the boot order / boot into that and you might be able to repair it.

long citrus
#

You guys need to work on your anger management

ionic moth
high verge
low wraith
#

Luckily I don't anymore lol

ionic moth
#

yeh defo sounds like a skill problem to me

long citrus
#

I'll never understand

#

If I feel like the game will cause me anger I simply don't play it

low wraith
#

@high verge If you have another PSU/Motherboard you can test I'd see if that fixes it, I'd personally start with motherboard because imo it's easier since you don't need to reroute cables as much.

ionic moth
#

i believe that anger and sadness are functional to an interesting and worth living life

high verge
#

ebery time im at the last enemy, all of a sudden they have more health, all of a sudden they will knock me out of my horse and slam their sword into my chest

ionic moth
#

mhh

#

i would say

#

what class r u now

long citrus
high verge
#

samurai

ionic moth
#

okey

#

go for mage

#

build

high verge
#

i've been upgrading my strength and vigor

ionic moth
#

oh

long citrus
ionic moth
#

go for mage str build

high verge
#

y

ionic moth
#

so u can get some of that long range

rough sapphire
high verge
#

i use the bow for long rage its really effective and doesnt consume fp

low wraith
# long citrus In general

I'm pretty similar with that but if I get angry at the same thing a couple times in the row I sometimes hold a grudge lol.

long citrus
high verge
ionic moth
#

huhhhh

#

i think they do not

#

but it kinda feels like they do