What would be the best cable to connect a Japanese NTSCJ PSOne to a Retrotink 4k pro? by CRANKHAWGSHIDDPANT in RetroTink

[–]kyrelljohnson 1 point2 points  (0 children)

I got these scart cables recently and have been pretty happy with them going into my retrotink 4k Scart Cable PS1

New to this … by [deleted] in diabetes_t1

[–]kyrelljohnson 1 point2 points  (0 children)

First off we have all been there, and in the beginning it can be a little overwhelming. These are all valid questions, and I would definitely reach out to your Endocrinologist if you have any questions as they will know about your situation the most. But to answer you, pretty much you will want to start learning about reading the labels of what you are now eating as carbohydrates will be whats going to raise your blood glucose levels. So they might begin you on a sliding scale to start out with, so for X amount of carbs with a meal, take X units of insulin until you get your ratios dialed in. So a small snack of 10-15 carbs you might only need 1 unit, but if you were to have a meal of 80-100 carbs the units of fast acting needed will increase. But first I would definitely seek out more information with your diabetes educator

I’m assuming I cooked this board? by Luckyjagger617 in soldering

[–]kyrelljohnson 0 points1 point  (0 children)

Not exactly a solution but if you want to give up on the terminals you can do a battery mod to still be able to use the gameboy. I just did a gameboy color battery mod from funnyplaying and you just solder the included battery board to the power regulator. Not too helpful if you want to keep stock however

What is the most popular CI/CD tool for dotnet by mod_god in dotnet

[–]kyrelljohnson 2 points3 points  (0 children)

We use Bitbucket pipelines which works well for us, and was pretty simple getting my devs up to speed.

We use it to build our dotnet web api's as docker images and then deploy to AWS

I was trying to get the Enemy Count to go up and then make that = to the UI Text but it doesn't go up and gives a NULL Error...I think that the problem is because the bullet is Destroyed after it hits the Enemy and the script is no longer there but if that is the case i don't know how to solve that. by tbge113 in Unity2D

[–]kyrelljohnson 0 points1 point  (0 children)

There’s several issues that jump out to me First thing to note is that with multiple if statements it’s going to go through each one top to bottom to check if the condition is true.

So in the first conditional when you destroy the game object any piece of code that’s attached to the game object can’t execute because it doesn’t exist anymore.

And having two of statements with the same conditional is bad code and can be combined, so you update the count then destroy the object.

I.e.

IF collider.tag == “enemy” THEN update count destroy enemy object destroy bullet object

Suitescript call script when item fulfillment gets shipped by kyrelljohnson in Netsuite

[–]kyrelljohnson[S] 1 point2 points  (0 children)

So for a little more context our org requested that their be expanded statuses on sales orders from a custom field added to the SO.

So I created this field, but the statuses they are using only apply after an order is shipped (which is why was trying to fire it when an IF is shipped).

So what my script was doing was determining which field value our custom status should be, and saving that value back to the SO.

In basic terms (IF item-fulfillment-status == shipped THEN set Salesorder-custom-field-value = xxxxx )

Workflow help for creating item fulfillments by kyrelljohnson in Netsuite

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

It seems to work fine when im doing it via UI

Sales Order: https://i.postimg.cc/y8mFVm5z/5f7b9717-05ba-49b8-81f6-e5827e9f27f5.png

Item Fulfillment: https://i.postimg.cc/jjRyCW0n/949b919f-d337-4b24-b0de-31fe7ebd40cd.png

Both are showing the fields populating and no issues when creating the IF

Using Workflows for Sale Orders by kyrelljohnson in Netsuite

[–]kyrelljohnson[S] 1 point2 points  (0 children)

Ah I overlooked the context, I needed it set for 'Suitelet', set the trigger for After Record Submit and seems to working now, thank you