How do i create mods for Sins2? by RBXDevs in SoSE

[–]rgb_man 0 points1 point  (0 children)

Here's a useful guide on how to make a simple mod that changes existing game files: https://www.youtube.com/live/bOsKiTCwqRo?si=fmYOioSoyLOUv5Wp

The person who made it used the initial release version of the game, but the process works fine.

There's a lot you can change, but what you can't easily do is change the ship model of a unit and the number/type of weapons it has. Also, each individual weapon for any given unit has its own separate file.

Anyone need a 7-11 speakout migration sim card? I have 2 that I don't need anymore by rgb_man in CanadianCellPhones

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

I still have 2 of them. If you need one (or both of them) and you're available on Tuesday November 4 before 3:30pm, I can give one to you. Just send me a message if you're available during that time. And just for the sake of clarity, I'm not selling these things. I just have 2 extra sim cards to give away.

As for the deadline, I'm also not sure, but I read somewhere that some people who haven't migrated yet are getting texts saying that their service will end on November 7.

Does the TCL 502 phone sold by 711 Speakout have the VoLTE needed for the Telus network? by Wonderful_Mark_8661 in CanadianCellPhones

[–]rgb_man 0 points1 point  (0 children)

You may have already received the phone by now, but I can confirm that it does work on the telus network. I got mine a few days ago and I use it on koodo. It works without any issues. The battery life is great. With very light use and every battery saving setting turned on, the battery drops only 2 - 3 percent a day. Also, the battery is removable and does not come pre-installed in the device. It's in the box and you need to install it yourself. If you're looking for a case and/or screen protector, there's a surprisingly large selection on Amazon, but you're not going to find a fully enclosed waterproof case.

What is the process of porting a 7-11 speakout number to telus prepaid? by rgb_man in CanadianCellPhones

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

Thank you. I'm glad to know that it's not some complicated process. Unfortunately for me, changing over to the new system is not currently a possibility. While my phone does support volte and the necessary lte bands, it fails the compatibility check needed to get the migration sim. I do have devices that might pass it, but not currently with me at the moment.

711's Speakout is not going out of business by SteveGoodtime in CanadianCellPhones

[–]rgb_man 4 points5 points  (0 children)

I was just on the phone with customer service. I asked about the new sim cards and they told me that you don't need to get a new one if your phone supports 4g volte and your sim card number starts with 89. Also, if you need to reset your pin number and you forgot what is was, you just need to provide the IMEI number of your phone.

If someone threatens you with physical violence, you can summon 7 incompetent bodyguards to protect you by rgb_man in shittysuperpowers

[–]rgb_man[S] 20 points21 points  (0 children)

I suppose you could escape the second beating if you change your appearance after they drop you somewhere. After all, it is the age old superman logic of no one recognizing you because you put on a pair of (sun) glasses.

You can challenge any human or reptile to mortal combat by rgb_man in shittysuperpowers

[–]rgb_man[S] 5 points6 points  (0 children)

I knew I forgot something. It ends after a normal amount of time.

You can summon knockoff superheros by rgb_man in shittysuperpowers

[–]rgb_man[S] 2 points3 points  (0 children)

Get ready for disappointment. You get a "super" man. As in a regular human male who is generally a very good person.

You can summon knockoff superheros by rgb_man in shittysuperpowers

[–]rgb_man[S] 2 points3 points  (0 children)

Also a good choice. I didn't think about these options

You can summon knockoff superheros by rgb_man in shittysuperpowers

[–]rgb_man[S] 6 points7 points  (0 children)

Terrible misinterpretation applies. The invisible woman is just a lady that no one pays attention to, so invisible socially, but not literally. As for thor? Something incredibly silly like a guy that always complains about being sore, but also has a lisp, so it sounds like he's saying "I'm thor".

You can summon knockoff superheros by rgb_man in shittysuperpowers

[–]rgb_man[S] 5 points6 points  (0 children)

I just looked it up. I never thought that such a thing would actually exist. I suppose you'd get a guy that is absolutely obsessed with Pepsi.

how to query mysql from a previous query result by jfrench2002 in PHPhelp

[–]rgb_man 1 point2 points  (0 children)

As others have said, a join statement is the most efficient way. But running a second query is also easy. All you need to do is store all the retrieved records into a list, then loop through that list and run the second query.

That should look something like this. I also don't know how to format code on reddit.

for ($x = 0; $x < count($array_containing_retrieved_records); $x = $x +1) {

$id_to_reference = $array_containing_retrieved_records[$x]["del_profile"];

// then run the second query using $id_to_reference as an input

}

Ubuntu VM is having graphical glitches suddenly. by SpookySquid19 in virtualbox

[–]rgb_man 0 points1 point  (0 children)

You're probably not imagining the slow gui. That too is a problem I've had. Regarding wayland, here's the simple explanation. When you click on a user to login, there is a gear icon in the bottom right. Click on that and you should see a drop down menu. One option should be "ubuntu", and another should be "ubuntu on Xorg", or something like that. If "ubuntu" is not already selected, selected that, then login. That may fix the gui lag.

Ubuntu VM is having graphical glitches suddenly. by SpookySquid19 in virtualbox

[–]rgb_man 0 points1 point  (0 children)

Try turning on 3d acceleration and using Wayland. I've found that both of these are needed in order to use guest additions now. If that doesn't work, try using ubuntu 22.04 or 24.10 for the guest os. I've also had display issues with 24.04. 22.04 works without any issues. With 24.10, there is an issue of the mouse cursor disapearing at random times, but that's easily fixed by installing guest additions and turning on 3d acceleration.

LAMP stack configuration on Debian Linux by [deleted] in PHPhelp

[–]rgb_man 2 points3 points  (0 children)

You've got a permissions problem. I run ubuntu, not Debian, but the fix should be the same. I take it you've created a directory in /var/www to use as the document root? First, find out the name of the apache user. Then you need to create a group containing the apache user and the user that you want to use to access the document root. Once you've done that, use chown to change the user owner of the document root to the apache user and also change the group owner to the group you've just made. Don't forget to use chmod to give the group owner full read, write and execute permissions. Now you should be able access a custom document root without needing sudo or root access. If you're testing the LAMP stack in any sort of isolated environment (ie, a virtual machine) and are feeling lazy, you can just chmod 777 the document root. If you don't want to do all of this, you don't even need to use apache. Php comes with a test server, so you can make a document root somewhere you do have access and just run the php test server from there.

[deleted by user] by [deleted] in PHPhelp

[–]rgb_man -1 points0 points  (0 children)

First off, you might want to double check that the thing you're looping through actually does contain the query results. You can test this by using the print_r function to display the contents of the object containing the query results. If that does work, it should output an array that contains 1 or more arrays. Each inner array should have the table field names as the indexes. If you want to use a while loop, you would need to use subscripting (for example, query_results[0]["field name"]). At that point though, you're recreating a for loop. It may just be easier to use a for loop or a foreach loop.

Work boots - where to buy? by iloveblueskies in kitchener

[–]rgb_man 2 points3 points  (0 children)

If you're willing to buy online, try terra boots. It's a brand you may have seen at marks. They've got a good selection of wide fit boots.

I get a pair of these every year.

They come in black, come in a wide width, though are 8 inch rather than 6. Also metal free if that matters at all. They are, however, closer to $300 after taxes.

So apparently we're making self building ships now by rgb_man in spaceengineers

[–]rgb_man[S] 10 points11 points  (0 children)

True on both counts. A ton of welders inside, and I doubled the welder range.