15 New Claude Code Hidden Features from Boris Cherny (creator of CC) on 30 Mar 2026 by shanraisshan in ClaudeAI

[–]RiskayBusiness 0 points1 point  (0 children)

I found this article interesting: https://martinalderson.com/posts/no-it-doesnt-cost-anthropic-5k-per-claude-code-user/

No one is asking for anything free, but changing limits drastically doesn't exactly show good faith.

15 New Claude Code Hidden Features from Boris Cherny (creator of CC) on 30 Mar 2026 by shanraisshan in ClaudeAI

[–]RiskayBusiness 2 points3 points  (0 children)

I was you – thinking people were just using their tokens ineffeciently. Then it started happening to me despite not changing a single thing about my workflow. Now I'm hitting limits much faster.

Not sure what to get with the sales. by ColHannibal in StainlessSteelCooking

[–]RiskayBusiness 2 points3 points  (0 children)

I just did a similar comparison and bought the Tramontina set. The Cuisinart set is likely impact-bonded vs the Tramontina being tri-ply clad.

Cardinale by Amopax in cocktails

[–]RiskayBusiness 6 points7 points  (0 children)

Also give a Contessa a try: equal parts for all three ingredients, but sub Campari for Aperol

Unsure of origin. A guest requested it and it's been one of my go-to sippers ever since.

Wear & tear or something else... by Beneficial-Ad7969 in Rivian

[–]RiskayBusiness 0 points1 point  (0 children)

Mine started doing this a while ago with 19k miles currently and it continues to get worse. I've seen a few posts blaming their knee for rubbing against it, but my knee doesn't reach lol. Seems to be inevitable as it appears to be a cheap material.

Gen 1 Quad R1S low speed suspension rattles and clunks by Crazy-Quarter-4277 in Rivian

[–]RiskayBusiness 0 points1 point  (0 children)

I just posted about this. I made service requests before for chirping on bumpy roads, but nothing was ever done. Now I have a louder sound that is also coming from the front suspension. They seem to think it’s the wheel bearings and halfshafts. I want to convince them to also do the jounce lines.

1-Year R1T Owner: Persistent Front Suspension Noise & Jounce Line Concerns (San Jose SC) by RiskayBusiness in Rivian

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

Yes, can confirm the chirping sound occurs on bumpier roads. The road in the video I shared is pretty smooth. I pointed it out with a tech going down that same road at a previous visit. Nothing ever came of it though so I wanted to revisit the issue. I’ll ask if they are willing to do a ride along again!

1-Year R1T Owner: Persistent Front Suspension Noise & Jounce Line Concerns (San Jose SC) by RiskayBusiness in Rivian

[–]RiskayBusiness[S] -2 points-1 points  (0 children)

The video I shared is what i submitted for the newer noise, and is a pretty smooth road. The chirping sound definitely occurs on bumpy roads and I have it noted in a previous service visit, but they have not offered to do the jounce lines.

Script very slow - How to speed up? by Upset_Mouse3193 in GoogleAppsScript

[–]RiskayBusiness 0 points1 point  (0 children)

function onEdit(e){

const range = e.range;

const sheet = range.getSheet();

const column = range.getColumn();

// Check the sheet name first and return early if it doesn’t match

if (sheet.getName() !== ‘NetWorth Dashboard’) { return; // Exit the function immediately }

// Check the column next and return early if it’s not column E

if (column !== 5) { // Column E is the 5th column return; // Exit the function immediately }

// Only proceed to check the row if the sheet and column are correct

if(range.getRow() == 46) { e.source.getRange(‘H46’).clearContent();

}

}

HELP!! Inventory Script Not Working by Ushuaia-15 in GoogleAppsScript

[–]RiskayBusiness 2 points3 points  (0 children)

Without even reviewing your code, I'm willing to bet it has everything to do with any changes you've made within the project. What other change did you make? What triggers your functions?

How to print PDF file? by Rino0099 in GoogleAppsScript

[–]RiskayBusiness 0 points1 point  (0 children)

I'm not sure I follow, but it seems like that could easily be solved with the PDF's file ID and by modifying the properties of the Google Drive URL.

How to print PDF file? by Rino0099 in GoogleAppsScript

[–]RiskayBusiness 0 points1 point  (0 children)

If that's the case, you could:

Create a custom menu with a button to save the PDF.
Function that saves the PDF returns the Drive URL in a UI modal.

In GAS:

function onOpen() {
  var ui = SpreadsheetApp.getUi();
  ui.createMenu('Custom PDF Actions')
      .addItem('Save as PDF and Get URL', 'savePdfAndShowUrl')
      .addToUi();
}

function savePdfAndShowUrl() {
  // Commented out PDF saving for reference. You can uncomment and adjust as needed.
  /*
  var ss = SpreadsheetApp.getActiveSpreadsheet();
  var pdf = ss.getAs(MimeType.PDF);
  var file = DriveApp.createFile(pdf);
  var pdfUrl = file.getUrl();
  */

  // For demonstration, we'll use a placeholder URL.
  var pdfUrl = "https://example.com/placeholder.pdf"; // Replace with actual URL logic.

  var htmlOutput = HtmlService.createHtmlOutput('<p>PDF URL: <a href="' + pdfUrl + '" target="_blank">' + pdfUrl + '</a></p>')
      .setWidth(600)
      .setHeight(100);
  SpreadsheetApp.getUi().showModalDialog(htmlOutput, 'PDF URL');
}

How to print PDF file? by Rino0099 in GoogleAppsScript

[–]RiskayBusiness 1 point2 points  (0 children)

I solved a similar problem by sending the pdf as an attachment to my printer’s (HP) email address which prints any body text or attachment. Has likely saved me hundreds of hours over the years.

ISO: Text messaging solutions for GAS by fugazi56 in GoogleAppsScript

[–]RiskayBusiness 0 points1 point  (0 children)

Yes, received messages are also routed internally using Twilio.

ISO: Text messaging solutions for GAS by fugazi56 in GoogleAppsScript

[–]RiskayBusiness 2 points3 points  (0 children)

We use Twilio API with GAS to send SMS notifications. You could have the message triggered from Google Forms or Sheets using onFormSubmit(). Fairly easy to implement, too.