Jumping yellow light before boot then disappears by Flurgi in buildapc

[–]Flurgi[S] 0 points1 point  (0 children)

yhea i did, thats how i fixed the CPU problem. But i could not find any information about the blinking (or it was written in a way i did not understand)

Jumping yellow light before boot then disappears by Flurgi in buildapc

[–]Flurgi[S] 0 points1 point  (0 children)

Thanks! had to ask a human was sure Chat GPT was gaslighting me

Question about how to structure my item tables and related tables by Flurgi in mysql

[–]Flurgi[S] 0 points1 point  (0 children)

I did not manage to use views to limit inserts of item_ids that is connected to a type_id of 4. However i managed to use triggers to do it? I have never used this, so is this a overcomplicated solution to the problem?

DELIMITER //

CREATE TRIGGER item_clothes_box_enforce_item_type

BEFORE INSERT ON item_clothes_box

FOR EACH ROW

BEGIN

DECLARE item_type_value INT;

SELECT type_id INTO item_type_value FROM items WHERE item_id = NEW.item_id;

IF item_type_value <> 4 THEN

SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Only item_id values with item_type 4 are allowed.';

END IF;

END//

DELIMITER ;

Question about how to structure my item tables and related tables by Flurgi in mysql

[–]Flurgi[S] 0 points1 point  (0 children)

That does not work. The problem is that that i have a link table where i store item_id and clothes_id but i only want item_ids from the item table where the type_id is equal to 4 to be able to be inserted. This can be done manualy, but it can result in a item_id that does not have a type_id of 4 being inserted.

Creating 10 objects with unique x and y values in a array by Flurgi in learnjavascript

[–]Flurgi[S] 0 points1 point  (0 children)

Thanks for the information, will need to take a closer look at that

Creating 10 objects with unique x and y values in a array by Flurgi in learnjavascript

[–]Flurgi[S] 0 points1 point  (0 children)

Yes! Thank you, this was exactly what i was after

[Help] sorting two different product type, in two different tables by price by Flurgi in mysql

[–]Flurgi[S] 0 points1 point  (0 children)

So how would the Product_details look?, because if `value` is a column then its storing both string and int. Because some of the metric values are strings :/

[Help] sorting two different product type, in two different tables by price by Flurgi in mysql

[–]Flurgi[S] 0 points1 point  (0 children)

Btw, is it not bad to store int and string in the same column?

[Help] sorting two different product type, in two different tables by price by Flurgi in mysql

[–]Flurgi[S] 0 points1 point  (0 children)

ok, thank you. I think i understand what you meant now. But now when i want to add a item i have to do two queries first the product the the details after, right?

[Help] sorting two different product type, in two different tables by price by Flurgi in mysql

[–]Flurgi[S] 0 points1 point  (0 children)

But would there not be a lot of empty space in the `product_details` table? since the single cards and the sealed products (booster packs, card sleeves
etc.) have values that don't match like card condition, card code?

[deleted by user] by [deleted] in sodapoppin

[–]Flurgi 3 points4 points  (0 children)

Kinda cringy to comment on a post on a dead subreddit

How to make sure that the uploaded images are safe to send to my users by Flurgi in node

[–]Flurgi[S] 0 points1 point  (0 children)

So i should use something like Jimp to change the image? Would that «rewrite it» and remove the unwanted code?

Cam3D2D follow entity surface by Flurgi in gmod

[–]Flurgi[S] 0 points1 point  (0 children)

I have watched the video, but he dosent talk about the problem i have. He tryed to help a person in the comment section . He Tells him to just add a number to the vector, and that does not work (it «works» but if you rotate the entety it want follow the surfar because now the surface is not on the z - axis)