#ot1-perplexing-regexing
1 messages Β· Page 574 of 1
Is this possible in windows?
whats the diff between .sh and .bash
wsl to be precise
not without heavy modification
woah thag loosk nice
dope terminal gang
meh
Powershell's color command is quite easy to use
bruh
same
lemme see
dope gang π₯°
Unable to locate package neofetch smhh error
bruh
Β―_(γ)_/Β―
oh ye
yes
lmao, very useful, windows
i wonder if i can build a windows flutter app inside wsl
or it's better install the os from square one
π
now run neofetch
by running neofetch
why
but why would you do that
not?
for the hahas
AVD is on windows, code is on WSL
mhm
makes sense
so avd wouldnt be required
I set zsh to run neofetch every time I open my terminal
bruh
It's nice
speed loss
I don't care
haha
damn
I keep my terminal open for days a lot
i want my terminal to be ready the moment i open it
So it doesn't happen that much
brrr
make a terminal opened by facial recognition when you are serious
thats hard, naive or just meh
show
Yes
we are here to having fun
@inland wolf what's that colors doing when i run neofetch?
i have arch
ohk
but i don't use it much
@vagrant shadow What kind of todo app would you like to build? Is there a JS framework you use?
for the beginning just basic vanilla js π
Hmmm
here's an article that teaches you how to do that: https://codingthesmartway.com/building-a-vanilla-javascript-todo-app-from-start-to-finish-ep-1-introduction-project-setup/
Episodes Episode 1: Introduction & Project Setup Episode 2: Adding UI Elements Episode 3: Styling The App Episode 4: Adding Todos Episode 5: Completing & Removing Todos Welcome to this first part of the Building A Vanilla JavaScript Todo App From Start To Finish. In this series weβll be building a complete todo web application with only using HT...
I have already watched a tutorial but thanks
whats the best programming language for game development
Lots of games are written in forms of C
Early on, Assembly was used due to its size efficiency
What is the best file format for storing data? (INI, JSON, XML, etc.)
i mean is one more efficient than the other, can one store a greater variety of data types than the other, etc
it seams to me like INI is the most compact, so far as extra characters laying around the place
what kind of data?
because if you have a lot, the answer is probably going to be "don't use files, use a database"
Sorry i dont know then 
I made discord spacex flights simulator, what to do now Xd
well in my case it would usually be file paths, boolean values, strings, and URLs
and I would be storing them in files for the purpose of quickly-ish loading them when the program runs
ideally unbounded though realistically probably 100 or less
I'm hashing out ideas for an improved version of this: https://github.com/AwesomeCronk/gitBack
hmm, so it's storing user configs
sorta yeah
well, using JSON would have the bonus of the user being able to manually edit the paths if needed
hmm, how would you make a list of arbitrary number of records in INI?
afaik any text-based file would have that apability
configParser library
[entry]
data=stuff
[entry]
data=stuff
[entry]
data=stuff
and so on to disk capacity
https://www.barenakedcoder.com/blog/2020/03/config-files-ini-xml-json-yaml-toml/
found a nice comparison
Working with Hugo lately has me thinking about configuration file formats. Formats such as INI, XML, JSON, YAML, TOML. Hereβs some thoughts on which one to pick.
oh neat
thanks
Are your users (those doing the configuring) more like clickers or coders? Clickers include business users, Windows sys admins, and anyone else who would be dangerous or annoyed editing a text file. If you have clickers, you may need to build a user interface or βwizardβ instead.
wow that is funny
yeah I still like INI a lot
java vs c++ for game dev
apparently not a lot of game devs are game devs either
Disable it, firstly, then try another pamac update
I fresh installed it xD
Hello, does anybody know what is the meaning : symbol in python?
like arr[a : b, c : d]
it separates the arguments of slicing
for a 1D list a = [0, 1, 2, 3], a[2:4] would give you [2, 3]
for your example, it would give you a [a : b] slice along the first dimension and a [c : d] slice along the second dimension
!e
import numpy as np
arr = np.array([[0,1,2], [3,4,5], [6,7,8]])
print(arr)
print(arr[1:3, 1:3])
@acoustic moss :white_check_mark: Your eval job has completed with return code 0.
001 | [[0 1 2]
002 | [3 4 5]
003 | [6 7 8]]
004 | [[4 5]
005 | [7 8]]
in other words, the submatrix bounded by the ath and bth rows, and cth and dth columns
hmm let me think coz I still didn't get it π
consider your array is
and you want
this part
i.e., from row 1 upto row 2 and from column 1 to column 3
(with 0 indexing)
its faster than looping though and selecting the parts u want
then your slice would be arr[1 : 3, 1 : 4] because the upper bound is exclusive
ah I see, I understand now. Thank you so much!

how do I make a backtick in Ubuntu? In windows I used alt+96
(I don't have backtick on my keyboard or I can't find it yet)
Enable your compose key
and type CMP''
wait. that's a strange looking backtick
Β΄`'
oh Lord what is that
dead_grave space "`" grave # GRAVE ACCENT
dead_grave dead_grave "`" grave # GRAVE ACCENT
um... what is a dead_grave
in any case β you can make your own sequences
oke but I can't even find it in setting,first time using it
anyone see anything wrong with this
async (token, entry_id) => {
const response = await fetch(`/entries/${entry_id}/items`, {
method: "GET",
headers: {
"content-type": "application/json",
authorization: `Bearer ${token}`,
},
});
};
im getting a jumbled request server side
INFO: 127.0.0.1:0 - "GET /entries/%5Bobject%20Object%5D/items HTTP/1.1" 422 Unprocessable Entity
authorization and "content-type"
is that an object or a dictionary
or does that not matter in javascript
its an object
keys dont need quotes around them unless they got weird characters in them like spaces or dashes
yea but im passing in a string, im not sure what turns it into an object lmao
maybe its not a string
well, post call site
console.log(token, id, typeof id);
const res = await dispatch(getEntryItems(token, id));
getEntryItems does what?
dont worry about the token im working on localhost
oh, is that the function you posted?
export const getEntryItems = createAsyncThunk(
"getEntryItems",
async (token, entry_id) => {
console.log(token, entry_id, typeof entry_id);
const response = await fetch(`/entries/${entry_id}/items`, {
method: "GET",
headers: {
"content-type": "application/json",
authorization: `Bearer ${token}`,
},
});
const data = await response.json();
if (response.status === 200) {
return data;
}
throw new Error(data.detail);
}
);
this is the full thing
thunk
AsyncThunk
its literally the same as the docs
import { createAsyncThunk } from '@reduxjs/toolkit'
const fetchUserById = createAsyncThunk(
'users/fetchById',
async (userId, thunkAPI) => {
const response = await fetch(`https://reqres.in/api/users/${userId}`, {
signal: thunkAPI.signal,
})
return await response.json()
}
)
well, literally
lol
goddamnit
aight i guess i'll wrap them in an object
thanks
cant believe i just scrolled past that part lmao
np
anyone know a good java course
check #ot2-never-nesterβs-nightmare for reply
HELP THE LEMON IS STALKING ME
oh congrats on helper!
thank
congrats sire!! keep it up!!

thank
My eyes
dark joke: my friend liked that emoji so much that he ended up dancing on the floor
pls dont cancel me
Donβt worry, Iβll eat the evidence
Where is your friend
lmfao
Do role positions change if I modify a single role
I've been trying to put a few roles under a certain role, roles below that certain role get changed (name, color), deleted and made
So I want my system to keep all those roles under a certain role but for some reason my formulas don't work
Idk if anyone is able to help me
how to use ${name} in nodejs
code:
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
rl.question("Enter your name \n>", (name) => {
console.log('Hello! ${name}');
});
Wdym

btw what do that `` do?
make a template string
template?
it's just the name given to these strings
ok
Hey @stiff thicket! It is a bit late, but please avoid emojis that flashy. It is really hard on the eyes.
ah kk 

nice :yes:
@bleak lintel
Happy birthday @vapid nymph
Thanks @quick ledge, @wraith hound!
No problem!!!
π
happy summer to you as well
https://play.typeracer.com/ alright alright alright
let's see how fast we type
how do i join
although...
Yes
Fuck, I give up, I have to de capitalize every word
Bruh my 90s scores are on 10 fast fingers, it's so much easier
This is gonna be awful
oo typing tests
ouch 80
count me in
ima try again
Lmao
join us
Who tf got 112
I love the playback
I'm on my phone :P
<- this guy
It's a private lobby
me π
You lie
Holy fuck
HOW
I get 140 regularly on monkeytype
jee
Latkercszy is speed
yes
Haha
Lol
lol
He is speed
wait a minute
Cya
let's reset this lobby?
Waitin
oops
86 and I still get destroyed
new link?
I clsoed that one
I have no idea who was i nit
lemme make an account
it's the same link
I'm blaming my dead arm from the COVID vaccine
lol suuuure that's the cause
Lat is a bot
I love watching the replay, though ti constantly disappears too soon
gotta finish quicker
I'm taking a breather
I rage quit
it does
i'm consistently 10wpm slower or faster depending if i'm on my laptop or my desktop
really top quality stuff, all of like $20 for the kbm combo
ok
I feel like I shouldn't be using only 6 fingers to type
race
I stopped playing on it now
ok
nah
i was guest
Why can I not watch my replays?
Is tehre an autoquit button I need to turn off?
it's dirivng me fuckign nuts
gg
Instant death mode
no
My only flex is that until I get past like 125 wpm, typeracer won't question it
even better
It says it certifies me as being able to type 102 wpm, idk how
I would probably actually do it if it was a solo thing
well then, pretend it is
do the qualifier, wait for the automated tests to come out, if it passes, do the jam, you don't have to submit
you can write the code without participating officially
but the task at hand is not a small one
there's a reason we're being given teams
EXACTLY
I just don't want other people in the team that I am assigned to feel like it's just a waste of a team member
so do the project on your own π
start a non-official team of non-competitiors
the unranked
there can be 14 of you all, who claim you can't commit and don't wnt to drag anyone down, all lifting yourselves to a successful learning venture
where you make a thing
I can't tell if this is sarcasm but I like the idea either way
not sarcasm
for real, there's a lot of members who don't want to join the jam
but want to join the jam
the fun of the jam is learning, not winning
True, I might just make a slightly more simplified version of the qualifier code where I don't have to centre stuff lmao
just do the left justified for now
beef jerkey is the reason pope francis doesn't like capitalism
reject captialism return to communism
reject political ideologies and society, return to individuality
counter sqlite heavy: The database
sdesxdy
alright
alighty
I also want help with HTML
Why can't I paste an image in HTML?
paste an image in html? what do you mean? π
I think he means DN
don't do it.
lmfao
lmfao
uh
What about it?
he's... muted
Since he has admin permissions, that won't actually make him unable to talk
Joke infractions aren't totally uncommon among mods+ #ot0-psvmβs-eternal-disapproval message
!u

Created: 5 years, 6 months and 5 days ago
Profile: @frozen coral
ID: 126811506632294400
Joined: 9 months, 26 days and 54 minutes ago
Roles: <@&542431903886606399>, <@&854107452243968040>, <@&295488872404484098>, <@&825337057181696020>, <@&267630620367257601>, <@&587606783669829632>, <@&831776746206265384>, <@&267629731250176001>, <@&815701647526330398>, <@&267628507062992896>
Total: 28
Active: 0
28 here π

Created: 2 years, 1 month and 24 days ago
Profile: @narrow pecan
ID: 572303014346489866
Joined: 1 year, 26 days and 23 hours ago
Roles: <@&542431903886606399>, <@&518565788744024082>, <@&463658397560995840>, <@&764802720779337729>, <@&854107452243968040>, <@&295488872404484098>, <@&267630620367257601>, <@&799041111573266503>, <@&815701647526330398>
Total: 13
Active: 0
I'm at 13 by now
!u
You are not allowed to use that command here. Please use the #bot-commands channel instead.
brrrrr
orz
Infractions are unavoidable once you join the staff team
!mute 126811506632294400 You're missing a role there
:incoming_envelope: :ok_hand: applied mute to @frozen coral until 2021-06-22 15:04 (59 minutes and 59 seconds).
!mute 212644551926611969 9999-12-31T23:59Z heard enough already
:incoming_envelope: :ok_hand: applied mute to @honest star until 9999-12-31 23:59 (7978 years and 6 months).
LMAO

bruh
lmao bruh
oog
!warn @frozen coral doesn't know his infraction count
:incoming_envelope: :ok_hand: applied warning to @frozen coral.
yea, !u doesn't show notes afaik
and shadow stuff in general
true
hmmmmmm, work is very slow today. A project finished up and the other projects I was supposed to work on haven't spun up yet
what do I do instead
I got 107 wpm then 109 wpm in a row, very proud of myself
Because no mistakes
Which is like 70% of the reason I keep getting like 90
reaction cooldown the heck
I'm getting the exhaust done on my Jetta today
The first part of many modifications to come
Thanks, I was happy about it until my grandmother told me she can write 120 wpm in shorthand with pen and paper
now this is not fun
wtf no way. writing fast is impossible
wth is this alien language
It's barely writing lmao but people that can write in it understand it
just searched it up
why would someone do this
so 120wpm would be like 2 characters per sec
It was back when everything used to be on paper so if your job involved a lot of text, everyone would use shorthand
Because it was a lot more efficient
Imagine using anything other than echo "text" >> file
And overwriting the entire file if you make a mistake
again, i prefer @prime aspen's way of writing to a file by using a magnet on a hard disk
Helpers are almost immune nowadays though
So there's that
cant fight back, can they?
Of all sample texts, this was what they chose. I kind of wanna learn it though
Yep! It's a bit like kicking someone who's on the ground. Just not fair
lul
race?
oh how do i shrink windows?
any useful link?
should i defragment windows partitions too?
Ye
gotta backup stuff first
Wdym
Windows bad go use mint
that borks windows
for me
bios problems or some shit
idk
Partition Manager
that only affects Windows
this?
yes
k
Wtf
Make backup drives
i have
Gud
you don't need the same disk I don't think
How the hell r u booting into windows
you don't but that was probably why windows was borked when i switched to linux
hm
Windows boot manager
its safer to have everythin in one drive
Bruh windows boot manager is in the windows sys
Well duh
If u can't boot into win they how will u access it
It's a separate partition, I'm pretty sure
regardless, this is stuff handled by your BIOS
you can even have it automatically boot into a USB
yes
Yas thats wut I am telling
Hi, this is widly below the skill level of this server as it could bypassed by someone even remotely skillful, but I'd like to avoid bothering with some codes for this right now.
So, I can't bypass the article limit on a website.
Could someone take 30 secondes and send me the copypaste please or a good way to bypass it without using Chrome? Again, sorry for that request so irrelevant for the server.
just go on incognito, then when you run out of articles, close the window and make a new one
bc the cookies they use to track the number of articles u read will be deleted
Thank you for the advices, I was able to read my article, glad I didnt paid for it, it was way shorter and less interesting than i tought.
my lemon left me UwU
oof
sad
lemon
shiba inu
uh
hi
In the future, if you actually want to read it, go to inspect element and find the "hidden" field. Simply delete it and you have access to the article.
@latent scaffold hello openSUSE guy
how do i install stuff like android studio/ pycharm etc
well yes
Hope I was able to help.
but that sort of installing causes uhh errors
thing is, i have a w10 installation too
^^
yes
tahts ur calling
to go back
i use both bruh
ok
JetBrains Toolbox
also
please tell me how to install edge dev
im stuck on firefox
did you install opi
no
eπ ±οΈic
probably, but you should just download the toolbox straight from jetbrains
yes, so that you can receive updates
you can add it just by doing opi msedge
it'll see it's already installed and only add the repo
what that
i can hear a wooshing sound on my left ear, which is the result of one of my veins interfering with my eardrum
oh
i can hear my heartbeat at all times and it is damn loud
ah, is it curable
depends on what's causing it,
on my case it's probably just because I'm a fatass and my blood pressure is high
After i loose a few pounds it'll probably go away
However if that isn't it there's no cure
Tinnitus of any kind sucks, and it's usually related to hearing loss
A lot of people have it and the only solution is to live with it
Download it from jetbrains
tar.gz?
well i got it
and now what
unzip it?
oh
appimage
ah
yep
@latent scaffold what is opi
its like yay apparently
a smart zypper
epic
i just have to install wifi drivers now
which are annoying ahh
it installs packages fun the OBS, which you don't really need but same goes for yay on Arch
from OBS*
@latent scaffold what is the command shortcut for flameshot
for global shortcuts
flameshot-gui?
space
oh
yes, but better
yep
k cool
i first created a node in a hash table and i want to create a linked list where the first root is hashtable[y] but i would like to insert a node called "rachel" in between the root and the old node "ross"
n = malloc(sizeof(node));
if (n == NULL)
{
free(hashtable[x]);
return 1;
}
n-> name = βRossβ;
n-> next = NULL;
int y = hash(βRossβ);
hashtable[y] = n;```
if there is a collision, where z is equals to y, can i check this is how u make rachel's next point towards the old head of the linked list
```c
n = malloc(sizeof(node));
if (n == NULL)
{
// Free both of our other nodes
free(hashtable[y]);
free(hashtable[x]);
return 1;
}
n-> name = βRachelβ;
n-> next = NULL;
int z = hash(βRachelβ);
//since z = y
//i donβt know how to point back to the old head of the linked list
n-> next = n;
hashtable[y] -> next = n;```
im unsure abt the linen-> next = n;
@ your last comment - To link back to the old head, you have to keep the old head somewhere.
Eg by changing head reference only at the end.
//do stuff with new_head like memory and content
//after new_head is done, link old head and change the reference:
new_head->next = head;
head = new_head
Right now by doing n->next=n you're doing a circular list - n's next is n, so n's next's next is n...
@rough sapphire, looks like you posted a Discord webhook URL. Therefore, your message has been removed. Your webhook may have been compromised so please re-create the webhook immediately. If you believe this was a mistake, please let us know.
I removed all the data in it :(
It did not include its token
Welp
Im trying to post a message to a discord webhook with javascript, getting some errors though
var xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.open("POST","https://discord.com/api/weebhooks/id/token");
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.send(
JSON.stringify({
content: "Hello",
username: "Gday Bot"
})
);
``` And with that im getting this error
```bash
Uncaught DOMException: Failed to execute 'setRequestHeader' on 'XMLHttpRequest': The object's state must be OPENED.
```Any help would be apprechiated :)
Is this normal JS or Nodejs?
If it's normal JS, would fetch() work?
Normal
It's very simple
MDN, the greatest docs for anything HTML, CSS, or JS
Yeah true
Hmm ok so i tried implementing their example but im getting a error code 400 where it sais unable to send an empty message this is the code used:
async function postData(url = '', data = {}) {
// Default options are marked with *
const response = await fetch(url, {
method: 'POST', // *GET, POST, PUT, DELETE, etc.
mode: 'cors', // no-cors, *cors, same-origin
cache: 'no-cache', // *default, no-cache, reload, force-cache, only-if-cached
credentials: 'same-origin', // include, *same-origin, omit
headers: {
'Content-Type': 'application/json'
// 'Content-Type': 'application/x-www-form-urlencoded',
},
redirect: 'follow', // manual, *follow, error
referrerPolicy: 'no-referrer', // no-referrer, *no-referrer-when-downgrade, origin, origin-when-cross-origin, same-origin, strict-origin, strict-origin-when-cross-origin, unsafe-url
body: JSON.stringify(data) // body data type must match "Content-Type" header
});
return response.json(); // parses JSON response into native JavaScript objects
}
postData('https://discord.com/api/weebhooks/K89c', { data: {content : "Gday"} })
.then(data => {
console.log(data); // JSON data parsed by `data.json()` call
});
code: 50006
message: "Cannot send an empty message"
You need to put βcontentβ in quotes I believe
Should it be js postData('https://discord.com/api/weebhooks/K89c', { "content" : "Gday" }) not ```js
postData('https://discord.com/api/weebhooks/K89c', { data: {content : "Gday"} })
yea
what Chris said
data is name of function parameter, not the property of JSON
at least in the case you've shown
Yeah i got it working :)
Anyone here do 3D printing?
Those things just flat out don't work well for me
I type so much slower when I'm typing something that I'm being told to
If I'm just typing what I'm thinking, I'm way faster.
same
oh i see yeah thanks
No thanks
@tranquil orchid ok now you can say it's confirmed π https://www.youtube.com/watch?v=Uh9643c2P6k
not yet
but this was attempt #1
wait a second
what the fuck am i doing
i can just connect each neighbour with a 1 pix len line
i forgot the most basic rule of programming
if there's a simple solution
do it
oh wait i remember now
hold on
yeah i can just get each segment




















pacman is much faster and objectively better designed, but okay
@rough sapphire Have you tried zypper?
Alright, and so how is pacman "faster"
also I think you mean package, you keep saying packet
Arch has some flaws, where packages are larger, do not support partial upgrades, and are very easy to screw up
the way it should be done
Most Arch users do not know that they should be upgrading their system before installing a package
most
Yes. a large majority
anecdotal evidence?
u are saying most arch users dont know what they are doing
without any argument
r/engrish
You've not seen any Arch communities, have you?
Okay, what does Arch have that something like openSUSE does not
What makes you prefer Arch
found arch to be the best for general computing (personally) and freeBSD to be best for networking stuff objectively
"general computing" in what way?
normal stuff
also I find it hard to believe anyone uses freeBSD
???
iirc the usage compared to Linux and Windows was 0.01%
freeBSD has fastest networking
freeBSD is very common for some servers
there are very objective reasons to use it for some workloads
every ISP and company that knows what they are doing is using it
also
linux isn't an OS
freeBSD,openBSD,netBSD are
Regardless
regardless lmao
What does Arch have over a distribution like openSUSE
netBSD is also more portable then any GNU/Linux
pacman
also
the installation process is much better for arch
How so?
did you ever installed it?
Yes, I have
I have much more freedom
In what regard
less then on *BSD or gentoo but still
How does Arch give you more freedom
I quite like the revamped openSUSE Wiki
Even then, the Arch Wiki can apply to most of Linux in general
I was astounded when I saw freeBSD wiki
what does most of the linux means
linux is a kernel
are you native?
It's obvious that I imply Linux-based operating systems
not really
installing arch literally just feels like entering magic commands most of the time, for example the wiki barely even explains what is it that differentiates arch-chroot from chroot
Then I'll amend my statement.
"Even then, Arch Wiki can apply to most of Linux-based operating systems in general"
first google search tells you that
its really hard to read
even forum questions on that
Keyword is "wiki"
yeah, that is the kind of thing that should be on the wiki
9y old
not stuck in forums with no sources
that doesn't tell you what arch chroot does
Most of this "freedom" that comes with Arch is completely useless
wdym
that just tells you how to use it and how to use chroot
read the wiki!!
lmao
I love people identifing themselves w software they use
someones life must be so fun
π€£
I find openSUSE to be underrated, and I wanted a goofy chat nickname
What's the problem with that?
also that useless "freedom" is subjective to u
yes u find it underrated
read that again
Then elaborate what you mean by "freedom"
but slowly
Read what again?
What...?
.
do u not know what definition of freedom is?
You just said it's subjective, and I want to know what it means to you
π€¦ββοΈ
meaning of the word isn't subjective
your opinion that freedom arch gives u is useless is subjective
so then how can freedom be interpreted subjectively
π€
did u just read what I sent
English is really hard language init? πΉ
Your only argument has been semantics, even though the meaning should be implied
I might argue that common sense isn't so common
it isnt
lmao
I got warned by a bot
for "mocking" peoples english
@graceful basin I was saying she was to lazy to google
The language knowledge doesn't matter in that context
but ok I have smarter things to do bye bye
have fun
he.
@latent scaffold what do you usually install on OpenSUSE right after booting into it
pyenv, zsh, alacritty, msedge, jetbrains stuff
Nice
Ye I did all of that
oh, and Proton GE and Gamemode
Huh interesting
π³ i have vim on windows now
is that hard
not really lol
jake doesn't need more otn's
wait that's not correct grammar
what is this!?
jake doesn't need more otn is
how dare????
Nice
thanks
tbh I think we all did
yes
no
yes
no only if you have nitro
i did not get them 
haha F
i do have server specific pfp's though π€
yes
i have wifi issues
i installed the correct drivers
but it refuses to connect to the router
i have to use wicked to connect apparently
but idfk how to use wicked lol
ah. I dunno, everything's always worked ootb for me
@rough sapphire Pinging here because you might miss it in #python-discussion:
You could probably try bumping the version up with the right classifier
Oh, good idea, I'll try that.
interesting
didn't know AMD CPUs reported their actual frequency in the vendor string
I know intel CPUs just report their base clock
like despite running at 5ghz at one point (Before spectre patches) my 8700k always reported 3.7ghz
so does that mean the vendor string will change according to frequency?
on ryzen 5000 series, apparently
huuuuuuhhmhmm
Speaking of that
some funky stuff is going on with my voltage
lemme run cinebench rq
okay nevermind, nothing crazy
just might need to ease off the loadline calibration
it's sitting at 1.2v with low load
but jumps down to 1.675 when it's stressed
damn 32 gigs, what do you use it for ?
just curious
Mostly it gets hit during game dev and video editing
I'll upgrade to 64 soon ish... After a new GPU
oh you do editing ok that explains alot
gpus rn though
BRUH
thats a tactic
I'm owed like $2k probably in taxes
But I'm late filling due to a company losing my w2
Even Better ?
So I'm going to have a fine from the IRS
I should at least get enough back for a 3080 around msrp though
but this
you not gunna pay ?
i mean thats a lot you know
oh F i read that wrong
i just had a ministroke
put on aquaman on netflix
opening credits are muffled underwater silent noices
DCEU hero clip rolls i cant hear anything
i spent ten minutes trying to figure out if my speakers are dead
which field in computer science are going to be in demand?
all of them?
im literally confused which jobs to pick in the future
you dont pick a career based on its demand, that just leads to depression
hmm, you have a point.
how about instead of picking what will be in demand why not go with a field you're actually interested in so you dont become a depressed wage slave?
try a whole bunch of them and not just superficially
I was also thinking about it but im kind of worried about its future and other stuffs
what exactly is the field?
all of them
wait how do you define fields?
lmao
i was thinking about data science, ML & AI, embedded, web app, game
kind of like exploring which suits for me
and what if i told you all of them are still in high demand
then i'd go for the advice that you told me
cat
yes
does anybody wanna do a horse race?
alright
ππ
something something centaur royal family
set up your steed, partner
B)
nice mod-logs flooding
what
if you are a bunny and you know it clap your hands?
holding a bun without touching it? impressive.
i'll do it better

how to get investigated by the FBI

uh
you saw nothing
well






