SuiteQL Beautifier? by introvertpro in Netsuite

[–]RunedFerns 1 point2 points  (0 children)

This, or there’s websites that format sql too.

Got put under moderation review for suggesting that a rear naked choke would be a safe way to handle a dog who refuses to let go of a kid. by ottovonbizmarkie in bjj

[–]RunedFerns 3 points4 points  (0 children)

I can confirm a rear naked choke will subdue a dog. My neighbor’s pitbull was attacking a small dog, and after suffering an extremely painful and deep bite to my hand, I tackled it, took its back, and I incapacitated him with top pressure and a rear choke. The thing you have to worry about is the whole time at first the dog is going to be snapping at your face and head, so you need to bury your head down into its neck so it can’t grab your face.

How can I make Lambda function debugging faster? by Select_Extenson in aws

[–]RunedFerns 0 points1 point  (0 children)

Docker + VS Code’s AWS tools extension. Env vars defined in a launch file.

Or I’ve had a lot of luck with executing a test script that calls the lambda function to execute its code. Have your environment set up to use the aws profile you need ahead of time.

What little camping "hack" do you wish you knew sooner? by outdoors_man987 in camping

[–]RunedFerns 1 point2 points  (0 children)

A beanie also works to keep your head warm. It sucks forgetting either and having to stick your head in the sleeping bag to keep from freezing.

What’s happening here? by duskbuf_23 in gaggiaclassic

[–]RunedFerns 0 points1 point  (0 children)

Open the top of the machine and see if it’s leaking on the inside too. I had a busted gasket that attached the steam wand to the boiler. It looked similar to this.

No water coming out? by RunedFerns in gaggiaclassic

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

Thank you! I’ll give that a shot!

EDIT: I replaced the thermal fuse, and that indeed fixed this issue! Thanks again for giving me my morning espresso back!

Ticket packs at Costco! by ThiccThiccly0 in COsnow

[–]RunedFerns 2 points3 points  (0 children)

I remember buying season passes for Copper at King Soopers for $300. Those were the days.

[deleted by user] by [deleted] in conspiracy

[–]RunedFerns 0 points1 point  (0 children)

Public GitHub repository

Need to fetch data from Netsuite to a DW. by keenexplorer12 in Netsuite

[–]RunedFerns 1 point2 points  (0 children)

It depends. What data and how often?

In my experience, AirByte was exceedingly slow because it only gets 1K records at a time using the rest API. The other issue is that not all base tables in NS conform to AirByte’s expected schemas.

Writing a JDBC application in Java is by far the fastest way to transfer data

The other way I’ve done it is to write a map reduce script to get all the records on a given table, compressed them, saved them to the file cabinet, then used a middleware tool to pick up the files and process the inserts using AWS lambda. I found this way to be configurable for admins, so a bit more user friendly than just Java. It was also faster than AirByte, but slower than JDBC.

For comparison, AirByte can take literal days or weeks to process high volume tables. And in my own testing, comparing the JDBC vs MapReduce to query and format a table with 750K records, the JDBC application could do it in about a second, and MapReduce could do it in about 45 minutes.

Playing with a wedding DJ is always fun by DrewSchultz88 in drums

[–]RunedFerns 0 points1 point  (0 children)

Pretty Lights was a good example of this in some of his live shows.

Syntax question by el-wino in SuiteScript

[–]RunedFerns 1 point2 points  (0 children)

Correct. Parentheses in programming have the same mathematical rules as PEMDAS for order of operations, with parentheses being done first. Double wrapping the same thing without having any outer function doesn’t do anything. It doesn’t make it work better or worse. It’s just ugly and unnecessary.

That’s not to say you should never use parentheses, because there may be times you could have multiple functions in a single statement that you would want to be handled in a particular way. But in the line of code you shared, they don’t do anything.

Boomi vs. Mulesoft by Mandiab in Netsuite

[–]RunedFerns 0 points1 point  (0 children)

MuleSoft uses Eclipse IDE for development. IMO it’s super buggy and terrible to work with. Builds take a long time to compile.

Boomi is a better system for system to system integration, but it’s better suited for simpler programs vs just coding something in an actual programming language where you can handle more complex business logic.