10000 forum users celebration - special event

No, just the UI, not the backend. I want to say Marlin though.

1 Like

No idea what that means.


UGH I have to use Linux SCP

Oh gosh.

2 Likes

it is certainly better than the previous 40GB selected :joy:

it is best for you to have one device just for dev

and on another device …OS for personal use

or dual boot with two OS where one is for dev and the other personal

because so much “garbage” destroys/slows down Windows when you have a huge IDE with a ton of subcomponents and envs, dozens of service, startups items, updates, as well as the fact that your device is immediately much more susceptible to attacks (security)…

2 Likes

Eh, to be honest I’ll keep it on windows for now.

Besides, with linux I now will have to deal with my different disk drives and such. It’s all confusing.

I think it was only 20 GB, so yeh.

Plus, I split it onto 2 drives (the reason it isn’t all on the other is because VS 2022 requires you to have some on the system drive).

1 Like

who said you have to have linux?
dual boot with two win10 /11

you will see :joy:

when then something will go crazy
so you can’t uninstall a .NET package or update it
because something went crazy…

come on TWU22 - listen with headphones to things from my post above

If it’s going to go crazy then no thanks

image

AAAAAAAH

3 Likes

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH

Also >:)
image

2 Likes

Welcome back to “Can you find my mistake and tell me how to fix it!”

The working (insecure code):

$sqlQuery = "SELECT * FROM `user_account` WHERE `user_id`='.$Info['key'].' AND `user_username`='.htmlspecialchars($_POST['username']).'";

$sqlcheck = mysqli_query($connect, $sqlQuery);

$AccountInfo = mysqli_fetch_assoc($sqlcheck);

	if(mysqli_num_rows($sqlcheck)==1){
    ...

The new (broken) code:

	$sqlcheck = $connect->prepare("SELECT * FROM user_account WHERE user_id =? AND user_username =?");
	$sqlcheck->bind_param('ss', $Info['key'], $_POST['username']);
	$sqlcheck->execute();
	$sqlcheck->fetch();
	$sqlcheck->close();

	$AccountInfo = mysqli_fetch_assoc($sqlcheck);

	if(mysqli_num_rows($sqlcheck)==1){
    ...

I have a feeling that the mysqli_ functions at the bottom are causing the error.

Thanks!

Fetch associative:

Num rows:

Yes, if you are going to go object-oriented style, the. You must stay that way, which means procedural will not work (basically aka. they are not backwards compatible).

Use virtualbox, or other equivalent software.
Just make sure you have enough storage on your desktop/laptop

4 Likes

I have 1.6 TB available on my separate drive, but why do I need a lot of storage?

It is huge software. I used it for a while, and the updates are 1-2gb almost every other day.

And projects accumulate and become large, especially ones in C and its “variants”.

OOPS wrong software (I was blabbing about Visual Studio).

If you want a vm to actually do something, try to give it more than 100gb of storage. There’s 15 vms and your storage is gone.

4 Likes

In case you need to create multiple instances of virtual machines.
(40 VMs with 40GB storage each will take up 1.6 TB of storage space)

4 Likes

OH, the VM has their own storage space, right right.

I have that. Just installed 2022, but I rarely use it. I might plan on using it for systems dev :slight_smile:

1 Like

Not my image

2 Likes

Creepy or Cool?
  • Creepy
  • Cool
0 voters

Both creepy and cool.

What is funny though, is the wifi name I saw last night!

Somewhat inappropriate but not too much but if you don't wanna see then don't click I'm doing this just to be modest don't worry it's not that bad

wut...

MMM yes, gotta love how people make some indecent and yet laughable wifi names.

Have any of you ever seen (or even had) any good wifi names out there?

1 Like

I have seen numerous! These are off the top of my head, the names may vary a bit, but you get the point.

  • “Knock knock the police are here”
  • “Shut up”
  • “Your neighbor”
  • “Internet”
  • “Back door” (who needs wifi for their back door?)
    Etc.
4 Likes

“Shed WiFi”
“Stop watering my lawn”
“JEFFF!” (Or maybe it was “JEFFFF!”)
“Not a wifi network”
“Guess teh password” (Yes, “the” was spelled wrong)

3 Likes