#ot1-perplexing-regexing

1 messages · Page 157 of 1

tardy rain
#

And its used in rap or trap or whatever music they make down there

#

(we dont go south of the river)

lucid skiff
#

Hey everyone , i am 16 years old . Planning to start with coding , so need some help from experienced people how to proceed and where to start and all the stuff

covert rover
#

looking for someone to collab with to make a mc server launcher - Dm me for more information if you are interested
yes, i am asking random ppl online, you gonna critisize do it quietly

dapper dew
scarlet peak
#

also how do you print and input at the same time?

shadow jetty
#

you don't, you do some printing then you do some input

scarlet peak
#

wait can you not just quickly print then give control back to the input

#

say you're waiting on input

#

can't you just stop taking input and then start taking it again?

quasi blaze
#

FYI: This is a job in Canada

green breach
#

Maybe take a class on ancient Gaelic just in case that comes up too

lament cairn
#

maybe an international company?

green breach
#

Actually, if I remember right there is a large Mandarin speaking population in Canada for one reason or another

shadow jetty
# scarlet peak can't you just _stop_ taking input and then start taking it again?

so that's probably the interesting bit, on posix (linux and bros) you can add a fdreader to call some callable anytime there's something in stdin, so you print something then maybe the callable gets called, otherwise you print again
on windows, it gets a bit more complicated, you can either poll stdin non-blocking, so you print something, then check if there's anything in stdin, and if there is do something with stdin input, or, if you don't want to constantly poll, you try to read from stdin in a blocking way, but in a separate thread from your printing (and this is what batgrl does)

#

the separate thread will schedule a callable to be run in the main thread if there is anything in stdin

spare oriole
quasi blaze
tardy rain
#

You have a large chinese population

#

Its not a government position is it?

harsh tundra
#

If they could only require national languages, then how they'd find e.g. translators?
Tech specialists that are to work with a certain market need to know lang of that market. I saw tech jobs in Poland requiring German as language

quasi blaze
harsh tundra
#

Because it's not

quasi blaze
#

This is a Software Developer position...not a translator position

harsh tundra
#

Link the whole job listing then

#

And we'll see if it makes sense

tardy rain
#

If its a large chinese company then yea it makes sense they want you to be able to speak with their domestic devs

harsh tundra
#

I don't see you complaining for Europeans that they need to know English for a lot of jobs, when English is not a national language in mainland Europe...

harsh tundra
#

"for", not "as"

#

It's exactly the same premise

#

It's not "national language" but often required

#

And it's normal

spare oriole
spare oriole
quasi blaze
harsh tundra
#

My best friend works in Poland for Danish company and needs to know Swedish... Accounting job

vocal oyster
#

Job postings can impose any requirements as long as it is not discriminatory towards protected characteristics, the languages you know is not protected.

spare oriole
harsh tundra
woeful phoenix
quasi blaze
vocal oyster
#

it is just a requirement of the job lol

woeful phoenix
vocal oyster
#

it is a skill they require

harsh tundra
vocal oyster
#

like what if a software job needs you to know C well instead of picking it up on the job, this seems quite similar

#

as well, you can't pick up (spoken) languages that quickly

harsh tundra
#

I'll also quote myself

My best friend works in Poland for Danish company and needs to know Swedish... Accounting job

Poland has only one national language and that is Polish

quasi blaze
#

That's not comparable to learning Mandarin if you know English already

spare oriole
vocal oyster
#

ok but jobs are still allowed to require proficiency in a language and that isn't bad ethically to do so

#

for both language types

quasi blaze
spare oriole
#

Don’t weasel out of a perfectly sound question

woeful phoenix
vocal oyster
#

flip it on the head, what if a company had bases in say, china, and required english to speak to the main base

spare oriole
#

This is just masked xenophobia imo, he’s fine with another programming language being required but not a spoken language

#

Like wtf

vocal oyster
#

simple fact is, jobs can put whatever requirements they like as long as it isn't violating disability/equality laws

#

and I think (and seemingly everyone else) that is perfectly fine, as it is just any old skill

harsh tundra
vocal oyster
#

you can learn any language in the same way anyone can learn to be a software engineer

spare oriole
vocal oyster
grave cove
#

ignoring a valid question has to be some kind of logical fallacy

#

im not an expert on logical fallacies though so

spare oriole
#

They don’t want their xenophobia to leak

honest star
grave cove
#

i mean, it could be but thats jumping to conclusions methinks

low chasm
#

the US didn't have a national language until this year lol

small coral
#

the american national language isn't even native to america, that's insane 😔
-# /hj

spare oriole
#

That’s fucking insane

spare oriole
#

What languages are native to America? Asides McDonald’s and Burger King

#

Also my Latino blood forces me to point out that America is quite big and expands outside the USA

harsh tundra
#

Wait, I just read that UK doesn't have English as official lang either.

The United Kingdom, Australia, New Zealand, and Antigua and Barbuda do not have English as an official language, but it is the de facto working language for their governments.

https://en.m.wikipedia.org/wiki/List_of_countries_and_territories_where_English_is_an_official_language

The following is a list of countries and territories where English is an official language used in citizen interactions with government officials. As of 2025, there are 58 sovereign states and 28 non-sovereign entities where English is an official language. Many administrative divisions have declared English an official language at the local or ...

low chasm
tardy rain
#

Why would it have an official language, just speak the queen's english

spare oriole
#

The queen is dead, long live the king

scarlet peak
#

sup nerds

#

how do you uhh

#

how do you strip the types from a typescript file?

brazen ingot
#

esbuild

scarlet peak
#

leave the valid JS alone

#

for example: ```ts
const addThree = (n: number): number => n + 3;

becomes: ```js
const addThree = (n) => n + 3;
woeful phoenix
#

that's what a TS->JS transpile does

scarlet peak
#

the output from a TS transpiler looks like shit

grave elbow
#

Bro who are have hacking tools

#

Xd

scarlet peak
#
// constants.ts
export const A = 1;

// main.ts
import { A } from './constants';

console.log(A);
// constants.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.A = void 0;
exports.A = 1;

// main.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const constants_1 = require("./constants");
console.log(constants_1.A);
weak peak
scarlet peak
#

this looks horrible

grave elbow
weak peak
#

what do you need "hacking tools" for?

grave elbow
#

Really? Roblox and tiktok

weak peak
weak peak
#

why do you need hacking tools for roblox and tiktok?

grave elbow
#

Idk

vocal oyster
grave elbow
#

Bro i make cods in chatgpt lol

weak peak
#

also:

scarlet peak
weak peak
#

!rule 5

royal lakeBOT
#

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

scarlet peak
#

and some salt

grave elbow
#

Loooll

small coral
vocal oyster
#

with like any country

plush sun
woeful phoenix
scarlet peak
vocal oyster
#

language history is very complicated and sensitive so saying anything comes from anywhere is a little vague

scarlet peak
#

thats the only thing that can be run anyway, right?

plush sun
scarlet peak
vocal oyster
#

@scarlet peak

plush sun
small coral
#

i mean tagalog borrows quite a bit from spain, but it does kind of stem from some native islander language(s)

#

american english is not exactly that though

spare oriole
#

American English is burger English, appropriated and shittier

small coral
scarlet peak
scarlet peak
#

how fix

spare oriole
scarlet peak
sharp bridge
#

reject grammar, return stone age

#

import meteor

scarlet peak
royal lakeBOT
#

Meteor - A plateform for quantitative metagenomic profiling of complex ecosystems

Released on <t:1740662927:D>.

scarlet peak
#

!pip pythonmommy

royal lakeBOT
#

Mommy's here to support you when running python~ ❤️

Released on <t:1705070531:D>.

green pelican
#

chat what the hell

#

pip install pythomommy

#

shit that is not my terminal

spare oriole
green pelican
#

lowkey

spare oriole
#

i'm doing something cursed imo

green pelican
#

mine is more cursed

#

writing a network library in C

#

take that

spare oriole
#

i'm using mojo to bring portability to python

#

take that

green pelican
#

jesus

#

ok

#

fine

#

mojo??

#

really??

spare oriole
#

yes

#

really

green pelican
#

i didnt even think mojo took off

spare oriole
#

it didn't

green pelican
#

all i remember was it getting bullied

spare oriole
#

yeah i was one of those bullying it

green pelican
#

w fr

spare oriole
#

it has a large start up time when using it with modules so eh

green breach
#

Did Mojo die? I remember looking at it a while back, but the terms and conditions for using it struck me as insane

graceful basin
#

No more we'll replace Python nonsense

spare oriole
graceful basin
#

Yeah, they got their clout out of it, and now they have to actually sell a real product

green breach
graceful basin
#

The people behind it are competent enough that I'm willing to say PR move

spare oriole
#

their "Improving CPython and JIT compiling Python" tab makes it clear they're keenly aware of the ongoings with CPython

bronze token
spare oriole
#

can you show the entire file explorer

bronze token
spare oriole
#

okay, click inside there where it says bootcamp, then copy what's there

spare oriole
#

use your words, stop just spamming ????

bronze token
bronze token
spare oriole
#

to the right of where it says bootcamp C:

bronze token
spare oriole
bronze token
spare oriole
#

once you click on it, it should show you the whole path

bronze token
#

this is all it shows me

spare oriole
#

i said to the right, not on top of it.

#

you know what, let's try something else

spare oriole
#

find the one that says copy path

bronze token
#

sigh

spare oriole
#

click on properties now

bronze token
spare oriole
#

wtf, it doesn't show the path? okay, let's try something else

#

open it with VS Code

bronze token
spare oriole
hidden raptor
#

Its showing that funn.py is in C:\

bronze token
spare oriole
bronze token
spare oriole
#

then click on the Copy Path button

hidden raptor
spare oriole
#

he needs to cd into the directory where funn is

bronze token
#

C:\funn.py

spare oriole
#

cd C:\ in the terminal

bronze token
#

didnt work

spare oriole
#

wdym it didn't work....

#

share details

#

we are not mind readers.

bronze token
bronze token
spare oriole
#

you didn't do what i said

#

i said

#

cd C:\

bronze token
#

oh

#

it didnt do anything

#

well mabye idk

spare oriole
#

yes it did

#

now do

#

py funn.py

bronze token
#

yesss

#

oooo

#

yess

hidden raptor
bronze token
#

i feel good

hidden raptor
#

ah ok

spare oriole
bronze token
hidden raptor
bronze token
spare oriole
hidden raptor
bronze token
bronze token
bronze token
hidden raptor
#

ooooh

spare oriole
#

this is warp, but kitty has the option too i believe

hidden raptor
#

That's probably a very annoying feature. Glad it has toggle option

spare oriole
#

there's a non-small number of people who actually use it

bronze token
spare oriole
#

you don't need a CS education to learn what's in that course

#

i hope you actually read it, learn, and not guess the contents and then come here to spam with everything that the course covers and answers, like you've been doing all day

thick ore
#

the only thing i would remove is the vim part

#

it's not actually needed

bronze token
bronze token
thick ore
#

inside the terminal

bronze token
#

ooo

thick ore
#

it's quite different from others

#

the keybindings are structured

#

you use hjkl to move, all that stuff

hidden raptor
stark prawn
#

fun idea but it keeps resetting my cursor to the start of part 3 and idk why 😦

hidden raptor
scarlet peak
# bronze token ty

you should also upgrade to pwsh 7.5 (winget install Microsoft.PowerShell -e) and use the new windows terminal (winget install Microsoft.WindowsTerminal -e) over that goofy looking powershell window

bronze token
scarlet peak
#

powershell or cmd

bronze token
#

oh how do i excape this path

#

close and open it is

scarlet peak
#

whats your issue

bronze token
woeful phoenix
#

worst censor of all time 💀

bronze token
#

ik :(

scarlet peak
#

10 or 11?

bronze token
scarlet peak
#

i swear winget is available on both

bronze token
#

whats the cmd to check that again?

scarlet peak
#

use powershell

bronze token
#

ok

#

but ummm whats the cmd that tells you your windows

turbid heron
# bronze token

I read that, and now time for some penetration testing 😉

bronze token
turbid heron
#

Hehe

turbid heron
# bronze token

R u on windows 10? I thought on win11 it comes pre installed

bronze token
turbid heron
#

Or use Google

#

Usually we just do neofetch

bronze token
#

true

#

windows 10 home

bronze token
bronze token
turbid heron
#

Just install Linux tbh

bronze token
turbid heron
#

It's free + no adds

#
  • no bloat
bronze token
bronze token
turbid heron
#

All yours yk and Soo much customizations

turbid heron
#

It literally shows adds when u do mod

bronze token
turbid heron
bronze token
turbid heron
#

Also contains spyware

turbid heron
bronze token
#

it comes with candycrush?

turbid heron
#

U have to pay

turbid heron
bronze token
bronze token
bronze token
turbid heron
#

💀

bronze token
#

im not speding money on that

turbid heron
#

💀

bronze token
turbid heron
#

💀

#

U can't if ur using a pirated copy lol

bronze token
#

bro why wont it let me upgrade i have the requirments i think

scarlet peak
scarlet peak
meager sphinx
#

you dont need windows 11 anyway

#

stay on 10

bronze token
#

wait tf i have 264 gigs but i cant use them im only using 34 or smth

#

how do i use all my storage

meager sphinx
#

store more data

bronze token
meager sphinx
#

..........store more data ?

scarlet peak
bronze token
bronze token
scarlet peak
#

thats just the amount of data you have on the drive

scarlet peak
bronze token
scarlet peak
#

open disk manager

bronze token
meager sphinx
#

damm

#

right click on the 196 gig space

#

format

#

create new partition

bronze token
#

i got a good deal on this laptob ok

meager sphinx
#

format as NTFS

scarlet peak
# bronze token

delete the middle
partition and expand the size of the C drive

brittle void
#

why so less space on that hard drive

#

alr

meager sphinx
scarlet peak
brittle void
#

i think the c drive should be at front
idk how these allocation work

scarlet peak
meager sphinx
bronze token
scarlet peak
meager sphinx
meager sphinx
bronze token
#

deleted

scarlet peak
# meager sphinx what ?

let it just move data back to the beginning or whatever. you'll be stuck with a tiny drive otherwise

scarlet peak
bronze token
bronze token
meager sphinx
scarlet peak
meager sphinx
#

it wont show you the expand option if the emtpy space is Behind the partition

meager sphinx
#

ig we will find out

bronze token
scarlet peak
#

schiesse

bronze token
#

im nervous i just deleted something that i got a warning for

scarlet peak
#

@meager sphinx you were right

meager sphinx
#

xdd

scarlet peak
meager sphinx
#

dont

scarlet peak
#

we'll make a new partition in the empty space and move it back

meager sphinx
#

dont change the C drive name to D

bronze token
meager sphinx
#

you might fuck shit up

#

never touch boot drive

bronze token
scarlet peak
# meager sphinx dont
  • change to D:
  • make C: in the massive empty space
  • copy everything from D: to C:
  • delete D:
  • expand C:
meager sphinx
#

THATS DEFINATELY A BIG NONO

meager sphinx
#

even if it works , its extremely risky

brittle void
#

windows is fixated to be installed in c drive

meager sphinx
#

you dont just "copy" boot drive

bronze token
brittle void
#

you might as well just reinstall the os

bronze token
brittle void
scarlet peak
bronze token
scarlet peak
meager sphinx
# bronze token what happens if it doesnt

...it breaks , it might not do somethings correctly

its a very complicated machine and hard to predict what exactly will go wrong

you might get stuck in boot loops, your window might malfunction

or it might even work just fine

but like , its removing a random screw from engine of F1 car and hoping it doesnt blow up

bronze token
scarlet peak
#

you can keep everything in your user profile when you reset

brittle void
# bronze token stuff

do you have any usb, external hard drive?
or might as well just take a backup of everything into smth like gdrive

scarlet peak
bronze token
brittle void
#

i think windows does have a feature to crate backups

meager sphinx
#

take a backup of all your data onto a USB drive and then reinstall windows

when installing , make sure to give the whole drive as C drive

bronze token
meager sphinx
meager sphinx
bronze token
bronze token
brittle void
meager sphinx
brittle void
#

usb drive

bronze token
#

why usbs so much cheaper than hardrives btw

meager sphinx
#

actually , its just 40 gigs of data isnt it ?

just copy your whole C drive onto the 2 tb drive

meager sphinx
bronze token
#

howd you get back there?

meager sphinx
#

"thought" ? bro plug it in and check the size wtf

meager sphinx
#

so its a 1tb hard drive

bronze token
meager sphinx
#

what

#

you good bro ?

bronze token
#

so how do i copy all my data plus windows and how did the other guy show back up

bronze token
#

doing multiple things at once sryy

meager sphinx
brittle void
#

also, you dont have to copy the C:/Windows folder

bronze token
brittle void
#

you cant move partitons

meager sphinx
meager sphinx
#

lets say you have a 1000 gb hard drive.
you can create partitions in that drive (Like C , D , E )

and each partition acts like its own disk

bronze token
meager sphinx
bronze token
#

nvm

brittle void
bronze token
meager sphinx
meager sphinx
bronze token
#

this will take only 114,265 seconds how long is that

#

lets see

#

wait 31 hours that cant be right

#

oh wait no its 31 minutes

turbid heron
bronze token
turbid heron
#

And install arch iso on the d drive

#

Make a bootable USB

bronze token
turbid heron
#

Use a stable os

#

Stop w that pirated windows shi

#

Learn how to read manual

thick ore
#

Dude

bronze token
thick ore
#

Are you for real calling arch a stable distro

turbid heron
#

Sure u do

turbid heron
thick ore
#

That thing breaks every other week

bronze token
thick ore
#

Use mint or fedora

bronze token
#

so where do i get mint im converting to linux

thick ore
bronze token
#

i heard you cant get steam on linux thats a lie right?

meager sphinx
#

are you really trolling someone by telling them to install linux who is having trouble copy pasting files ?

late orchid
turbid heron
#

Also I think you'd need some kinda funny software to extend c drive now

brittle void
#

dont use rufus

bronze token
meager sphinx
brittle void
#

download a windows 10 iso
and use ventoy to make your usb into a bootable one

turbid heron
meager sphinx
#

rufus is fine bruv

brittle void
#

yeah, maybe

bronze token
thick ore
meager sphinx
bronze token
turbid heron
#

I didn't insult them or anything 😭

#

Just sharing my opinion

thick ore
#

They're both Unix tho

bronze token
thick ore
bronze token
#

so does linux take up less space then windows and is it faster

thick ore
#

The faster part depends really

bronze token
#

how do i keep all my windows date and move over to linux

woeful phoenix
#

be careful with the backup...

thick ore
#

I'm not even sure if you should switch yet

turbid heron
bronze token
woeful phoenix
thick ore
#

But If you really want to, back your important stuff up

bronze token
#

uhhhhh

meager sphinx
thick ore
#

Am going to sleep gn

turbid heron
bronze token
#

help

turbid heron
bronze token
#

whats going on

meager sphinx
# bronze token

tick the box that says " do this for all current items" and press skip

green pelican
#

Just looks like some old log files that don't exist anymore

bronze token
#

that seems kinda bad

woeful phoenix
#

if these files don't exist, why is Windows trying to copy them? how are there just leftover records of these in the filesystem?

meager sphinx
#

honestly , i told you to copy the whole drive because i really cant tell what data you have stored where

you dont need to copy the whole drive, you should only copy the stuff that you stored on the drive yourself

green pelican
#

Windows being windows

bronze token
#

so where is the linux cult sign up sheet

green pelican
#

Maybe there were shortcuts that weren't removed with the originals

woeful phoenix
#

did they get deleted in the time between starting the copy process (which I assume involves listing all the files to be copied) and when it comes time to actually copy?

bronze token
#

but where in the world is the linux sign up sheets and how do i choose which linux to use

green pelican
#

Use mint

#

It's the easiest to fix when you break it

bronze token
green pelican
#

And you will break it don't worry

woeful phoenix
timid latch
woeful phoenix
#

... I was going to say

meager sphinx
green pelican
#

Nix is a learning curve for anyone not just beginners

bronze token
#

ok ima go watch a linux video

green pelican
#

Personally i think gentoo is a great starting point /jjjjjj

woeful phoenix
#

the rollback-ability you can achieve even on other distros with btrfs/zfs/bcachefs(?) I think

green pelican
#

And timeshift or whatever

woeful phoenix
#

openSUSE provides integrations for it with btrfs, as does Fedora IIRC

bronze token
timid latch
#

Basically the main thing about which distro you pick is just the default loadouts it has, you can do basically anything on any distro

bronze token
#

oh so unix is old linux

woeful phoenix
bronze token
#

oh

#

so where is the linux sign up sheet

timid latch
#

That's not a thing

woeful phoenix
#

it's more of a family of OSes
there are modern OSes which are UNIX
Linux is UNIX-like but not "true" certified UNIX™®

bronze token
#

so where do i get mint

#

and do i just copy and paste all the stuff i downloaded into mint

timid latch
#

You download the iso and flash it onto a USB drive

bronze token
timid latch
timid latch
#

Backup your important data files like code, images, etc.
For stuff like passwords sync them to the cloud or back them up to a text file

bronze token
#

you need a usb to install linux mint?

timid latch
#

Or well any external storage, USBs are just the easiest

#

Could also be an external hard drive, even a second disk on your PC (I think? Haven't done that myself), hell you can use rooted android phone

bronze token
#

do you think it would be possible to install linux on that empty space that i cant use

woeful phoenix
#

it's not relevant to this situation but
if you have a bootloader like GRUB installed, you can (with a considerable amount of messing around) get it to boot an ISO from one of your partitions

woeful phoenix
#

it's really something that I think should be easier than it is... especially if I have a lot of RAM, just let me load the disk image into memory and then I could even use the ISO from a disk to overwrite its own partition

timid latch
bronze token
#

so umm which flavor thingy of mint should i use

woeful phoenix
#

I think Cinnamon is the best

bronze token
#

ok but umm is there anyway to use my empty space and put mint on there

#

and how would i swap between mint and windows

timid latch
#

That's what's called a dual boot, and yes is possible

bronze token
#

oh nice

#

so how would i do that

#

rufus interesting

timid latch
#

Yep that's the go-to tool for creating a bootable USB

bronze token
sharp jasper
#

you should not do that

timid latch
sharp jasper
#

probably best to obtain a new flash drive

bronze token
timid latch
#

☁️

green pelican
#

You're gonna need a different drive or the cloud

bronze token
woeful phoenix
#

if you have free space on one of your disks (the one you're not going to overwrite with Mint, that is) you could copy it there

sharp jasper
#

also if all your data is only stored in one flash drive, you're asking for it, in terms of data loss

sharp jasper
#

backups 👍

woeful phoenix
green pelican
bronze token
woeful phoenix
timid latch
#

GitHub is also a option

#

(does GitHub have a limit?)

green pelican
#

Just know it will be in copilot training data

#

I wouldn't put anything personal on github

bronze token
#

oml i have space

bronze token
glossy niche
green pelican
#

Rip

glossy niche
#

nah my vault doesnt contain much info

#

but i sohuld probably find a diff provider

green pelican
#

I've been using bitbucket for years

#

Pretty chill

bronze token
#

how much space does this mint iso take up

#

2.8 gigs ok ima have to install this on the usb

#

2.8 gigs is so big

glossy niche
bronze token
#

is copilot any good it learns off our data so it has to be right?

timid latch
#

It's good at doing very common stuff

#

So depends on your usecase

#

For what I'm doing I found it mainly got in the way

#

In other news I just smashed the refrigerator door into my soda can and it sprayed all over my shirt

bronze token
#

i really need help pls help me someone

#

how do i make the device thing turn into my usb

scarlet peak
#

it handles everything for you, it just takes some time

bronze token
scarlet peak
bronze token
woeful phoenix
scarlet peak
woeful phoenix
#

yeah, but fun is trying to make a Linux Mint install USB

scarlet peak
#

i had no idea OP was trying to add a linux iso, mb

scarlet peak
bronze token
#

no but help pls

#

rufus my boy isnt showing my usb

bronze token
#

welp umm

turbid heron
#

And ur device ofc

bronze token
turbid heron
#

Also file system

#

Ext right?

turbid heron
bronze token
turbid heron
turbid heron
bronze token
bronze token
turbid heron
#

The first button

#

With a down arrow

bronze token
#

this?

turbid heron
#

Yeah

bronze token
#

i clicked on it see

turbid heron
#

...

#

For how long have you been using computer btw:)

bronze token
turbid heron
#

Oh fair

bronze token
#

i dont remember when i put windows on it

turbid heron
bronze token
bronze token
turbid heron
#

Are you able to select the iso image tho?

bronze token
turbid heron
#

And file system?

bronze token
#

im having trouble installing it tho it takes up alot of space

#

i keep getting an unfinshed iso

turbid heron
bronze token
turbid heron
#

How much is it?

#

The size?

bronze token
#

2.8 gigs

turbid heron
#

I mean you could install it on your d drive no?

#

U have alot of space in it?

bronze token
#

ive tried for some some reason it wont work ima try google drive

turbid heron
#

Dang

bronze token
#

wait why is my space so low

#

i just deleted like everything i should have 2 gigs

turbid heron
#

Wouldn't it be slow if you write to the USB from Google drive 🤔

turbid heron
#

Firstly you shouldn't have deleted your d drive 😭

bronze token
#

oh i forgot to delete them from recycle bin

bronze token
bronze token
#

and all my data will be stored in windows still right?

green pelican
glossy niche
#

maybe i wil shit the bucket and actually use it

#

ty

rough sapphire
#

@bronze token you can also download virtually by softwares like vmware and virtualbox

bronze token
#

idk but why cant i select my drive as an option in rufus

vapid nymph
#

am i missing any of the pep517 packagers frontends (and the ones that aren't too)?
flit, hatch, pdm, poetry

solemn tulip
#

is uv one of them?

vapid nymph
#

not yet a packager

turbid heron
round pendant
worn mango
rough sapphire
worn mango
#

how do I setup it like that?

rough sapphire
#

this is what i got

round pendant
worn mango
#

mine is so trash

rough sapphire
#

thats defaullt

worn mango
#

yes

green pelican
#

mine is better

rough sapphire
#

why some of the keywords are just comically big 😭

worn mango
worn mango
round pendant
rough sapphire
green pelican
rough sapphire
#

what is going on over here

worn mango
worn mango
green pelican
rough sapphire
#

nice joke

#

lolll

green pelican
#

no not joking

rough sapphire
green pelican
#

yeah thats wild

#

uhhhh let me go uhhhhh

#

while statement ahh

rough sapphire
#

lmfao

round pendant
# worn mango oh sure, I would appreciate that
{
    "window.titleBarStyle": "custom",
    "window.menuBarVisibility": "compact",
    "window.commandCenter": false,
    "window.restoreWindows": "none",
    "workbench.activityBar.location": "hidden",
    "workbench.statusBar.visible": false,
    "workbench.sideBar.location": "right",
    "workbench.editor.showTabs": "none",
    "workbench.editor.editorActionsLocation": "hidden",
    "workbench.layoutControl.enabled": false,
    "workbench.startupEditor": "none",
    "breadcrumbs.enabled": false,
    "editor.minimap.enabled": false,
    "editor.scrollbar.verticalScrollbarSize": 0,
}

im not sure if thats it? i also disabled some things by right click->disableing them when i still had them, not sure if that writes to the json or some other thing

rough sapphire
#

that was prety straightforward lol i didn't expect that

round pendant
#

oh and for the theme to match the wallpaper i use pywal

green pelican
# rough sapphire lmfao

although i see what i was doing now, i was just checking if no bytes were returned and throwing an error

rough sapphire
#

try saving

#

and restarting

worn mango
#

yes, it worked

#

that's good

worn mango
rough sapphire
#

they said pywal

round pendant
worn mango
#

Ok

#

while for workspace and project folders how do you organize?

round pendant
#

i dont have big enough projects for this to be a problem, just clearly named modules

green pelican
#

rip cpu

worn mango
#

wait, 2 windows opened, how do I close the one on the right?

round pendant
#

i use the neovim extension so i'd just :q it (q standing for quit)

worn mango
#

Ok done

green pelican
#

the syn flood is crazy

unkempt python
unkempt python
bleak lintel
#

emacs is great

unkempt python
unkempt python
#

But

#

NEVER

#

(Again)

bronze token
#

bro why cant i get this to work :(

bronze token
#

bro why wont rufus work i just wanna use all my space please help

green pelican
#

mwhahhahahah

bronze token
bronze token
#

yk ima reboot take that then i hope it will work

green pelican
#

sure

#

whats going on

bronze token
#

it wont tho (99.99999999percent chance it wont)

scarlet peak
green pelican
#

🤯

green pelican
#

you have the bootable disk

#

you need to plug the usb in and get into your boot screen then pick it

scarlet peak
#

i do i do

bronze token
#

I FUGED UP

green pelican
#

what happened

bronze token
#

SOMEHOW MY MACOS THINGY GOT DELTED NOOOOO

#

NOOO

green pelican
#

wdym

bronze token
#

i was gonna check to see if i could mabye use all my space on there

green pelican
#

did you run the mint installer?

bronze token
green pelican
#

mhm

bronze token
#

rufus wouldnt work bro

green pelican
#

how would your windows partition get deleted then?

#

or mac

bronze token
green pelican
#

was there anything on it?

#

and what did you do to delete it?

bronze token
# green pelican or mac

idk i did delete the d drive i had like nothing on the mac side mabye macos was on that empty space

green pelican
#

it shouldnt have been deleted unless you specifically overwrote that partition by installing mint or you just cooked it with a command or tool

bronze token
green pelican
#

you can most likely reinstall it

bronze token
bronze token
bronze token
green pelican
green pelican
bronze token
#

do you have to buy it is it like windows

bronze token
green pelican
#

i wonder if mac hardware is fucking with rufus.. idk though

green pelican
bronze token
green pelican
#

i would try to make the bootable iso from macOS so you can use a tool native to the machine

green pelican
#

i hope you are enjoying this experience because it will happen again with linux

bronze token
green pelican
#

are they in a partition?

bronze token
#

its gone :(

#

if only you could fully ful screen with macos i never would of installed windows

bronze token
#

i have an i5 intel proccesor atleast i think if thats what its asking but idk

bronze token
bronze token
fast orchid
bronze token
#

ok i give up ima just go to a computer store to unlock this storage that i cant acess

bronze token
#

oh and apparently macos is installed but i just cant get to it

bronze token
#

@pulsar gate sorry for the ping but which of these would stuff like code wars be at

pulsar gate
#

I've never been to codewars

bronze token
brittle void
#

guys, is there a way to make it load even faster?
im importing psreadline, oh my posh, zoxide, winget command not found, terminal icons
and i have some custom psreadline shortcuts for my pwsh too

idle elbow
#

hi hi hi

scarlet peak
#

[System]::Diagnostics.Stopwatch() i think it is

brittle void
vale raven
#

🤨

brittle void
#

do you atleast use zoxide?

vale raven
brittle void
vale raven
#

Sometimes
I use both
I use PowerShell for Windows things like Winget and quick things like quoting CSVs

#

Why are you assuming I don’t use PowerShell at all just because I don’t modify it?

#

I’m literally a Windows sysadmin

brittle void
#

i cant imagine you haven't customized your shell while you use it

#

thats why

sharp jasper
#

not everyone is a customizer

scarlet peak
brittle void
#

guys, does anyone have these column markers in nvim?

scarlet peak
#

|| fastest method for ragebaiting in a programming space ||

brittle void
timid latch
brittle void
fringe rain
solemn tulip
solemn tulip
brittle void
#

thats why it looks like that

solemn tulip
#

so was the thing colorcolumns?

brittle void
#

maybe

#

just now installed that virus

#

so i need time to setup

solemn tulip
#

:set colorcolumns?

brittle void
#

i already have my nvim config

#

i just need to make it import

upper flower
unkempt python
#

Hail nah

turbid heron
scarlet peak
bronze token
#

lol

scarlet peak
bronze token
brittle void
brittle void
upper flower
#

just use vscode

brittle void
#

im a vsc user

#

in pc

#

but i use nvim in my phone

upper flower
#

oh

raven cipher
#

can I ask you guys for something in the topic of socializing

upper flower
#

ye

raven cipher
#

do you guys think that people who seek a woman or a man companion to fulfil the their lust or to not be lonely

upper flower
raven cipher
#

hmm

#

fair enough if that is so

upper flower
raven cipher
#

with which one of "that"

upper flower
#

ur question isnt quite clear

raven cipher
#

okay, in another terms

#

do people try to find a girlfriend or boyfriend to furfil their lustful desire or to not be lonely

upper flower
raven cipher
#

hmm

#

but, if the problem is loneliness, isn't the attempt to find a friend the right choice

upper flower
raven cipher
#

hmm... Ive never lamented the possibility that the motivation came from social media.

raven cipher
#

Social motivated activity, where friends became the major motivator, after that: family

#

I think. for they are more real compared to social media

paper quest
#

What, nobody acknowledges the biological imperatives instilled in us by evolution?

raven cipher
#

Hmm. Depends on the context of the cultrue

paper quest
#

I guess that might be covered by the "lustful desires", huh?

paper quest
#

The real answer is that seeking out partners has conferred an evolutionary advantage, in that you're more likely to survive if you have people to help you, you're more likely to reproduce if you "fulfill your lustful desires" and you're more likely to bring your child to reproductive age if you're two about it. The reason most people stick to one partner is probably social, but it's all rooted in evolution and survival.

raven cipher
#

based on the context of biological neccecity, yes. But, based on culture, it might be tied to certain diety

paper quest
#

I'm not gonna win over any religious friends by saying this, but I believe religion is an explanation invented to fit the human narrative rather than a cause for anything 😉 It's not "God say only one partner, therefore humans tend to be monogamous", it's "humans tend to be monogamous, therefore God said so".

paper quest
#

Fair 😛

raven cipher
#

hmm

upper flower
#

Do u mean like

#

if humans are killing each other, its bcz god said so?

raven cipher
#

there are no indication from that statement that states THAT

upper flower
#

did i misunderstand the last line

paper quest
upper flower
raven cipher
#

I wondered if the theory that we pick who we prefer based on the smell rather than look is true now

raven cipher
#

you can't look at smell

upper flower
raven cipher
#

I can't smell, so no.

upper flower
#

Why not

raven cipher
#

but, okay, people do check for smell

#

idk,

#

it is just what it is

#

The only thing I can smell is rubbing alchohol, or vicks

paper quest
# upper flower Yeah, they intend to put the blame on God when deep inside, they know they're wr...

Hrm. I'll moderate my statement. I wouldn't say that every person invents their own God to justify entirely internal behavior. God certainly is a social construct, just like our behavior is largely a social construct. But that social construct has itself evolved because it confers an evolutionary advantage, and social evolution and biological evolution probably reinforce each other at least to some extent.

raven cipher
#

you know, the smell that hurts your nose

paper quest
upper flower
upper flower
raven cipher
#

I hate perfume,

#

they sting my skin

#

For some reason

upper flower
#

Weird

#

You dont gotta put it on skin just put it on clothes

raven cipher
#

you don't

#

but, I don't think it's neccecary

#

How can you spray a perfume when you don't know what you can't smell

upper flower
raven cipher
#

I don't think you want to eat when you don't know what you are eating

upper flower
raven cipher
#

Alright

#

now im curious

#

do you have a gf

upper flower
raven cipher
#

ah I see

upper flower
#

even if it did allow, from what i've seen it mostly ends in breakup.

paper quest
#

Even if it mostly ends in breakup, I don't think that's necessarily an argument not to do it. Most lives end in death, yet that doesn't prevent us from living.

upper flower
raven cipher
paper quest
upper flower
paper quest
upper flower
paper quest
#

What's the value of a relationship? Is it that it still exists when one of you dies, or is it the experience you had along the way?

upper flower
#

if so i cant make u understand

raven cipher
#

On the other hand of depressing

paper quest
paper quest
#

Is there anything you do in your life that's not a waste of time and also isn't just to please the man in the sky?

raven cipher
#

oh no.

#

I have nothing about this one topic

#

bye

paper quest
#

Oh no, I scared them away 😦

raven cipher
#

bro, I just asked about eartly shit, why do you devolve it into the idea of religion

paper quest
#

It's an interesting discussion!

raven cipher
#

why

upper flower
upper flower
raven cipher
#

no shit, sherlock

paper quest
#

I'm genuinely just trying to understand people's viewpoints here. I don't share your worldview, but that doesn't mean I can't find it interesting 🤔

#

What I'm getting at is, what would it take for you to think that having a relationship is not a waste of time? What would have to come out of it for you to say "yeah, that was worth it"?

#

Because to me, having the experience of a relationship is valuable. That is enough. Even if it might end in a fiery explosion, I'll still have experienced and learned and grown.

upper flower
#

It's a waste of time if:

It distracts me from my purpose in life.

It leads to things not allowed in my religion.

It causes me to lose myself morally or spiritually.

glossy niche
#

what is ur purpose in life

upper flower
brittle void
paper quest
#

Okay, here's a question for you: Say you don't know in advance whether taking an action (e.g. embarking upon a relationship, but it could be anything, really), is going to be "a waste of time" or not, according to your evaluation function. How do you make a decision regarding whether to take the action? On the one hand, you risk "wasting time". On the other hand, you risk missing out on something that might have been a good experience, something that might have helped you mature or get closer to God.

paper quest
brittle void
#

english?

woeful phoenix
#

someone's gotta maintain it...

glossy niche
upper flower