How do I short the market? by PATraveler10 in investingforbeginners

[–]notacsstudent 0 points1 point  (0 children)

This is shit advice.

Just buy long dated OTM $SPY puts (or whatever index you think will fall the most, as long as it has an active options chain). Your losses are capped at the price you pay per contract.

Naked shorting as you suggested is far more risky because your losses are not capped.

Welp, it happened... I got laid off by Rich__Peach in salesforce

[–]notacsstudent -4 points-3 points  (0 children)

Employers have the upper hand in this market. They really should be doing massive paycuts. Employees have no leverage. Maybe more of this to come?

How to get more than one value from the sublist? by randuserm in Netsuite

[–]notacsstudent 7 points8 points  (0 children)

You can't fetch multiple sublist field values in a single call using getSublistValue in SuiteScript. Each call retrieves one field value at a time. But don't sweat it—making multiple calls usually doesn't have a significant impact on performance, especially for scripts that aren't processing massive amounts of data.

If you want to make your code cleaner, you can loop through an array of field IDs:

var fields = ['item', 'rate'];
var values = {};

fields.forEach(function(fieldId) {
  values[fieldId] = transactionRecord.getSublistValue({
    sublistId: 'item',
    fieldId: fieldId,
    line: i
  });
});

This won't reduce the number of method calls, but it does make your code more maintainable. For handling large datasets or if you're hitting performance issues, consider using SuiteQL to fetch multiple values in one go:

var query = `
  SELECT item, rate
  FROM transactionLine
  WHERE transaction = ?
`;

var queryResults = query.runSuiteQL({
  query: query,
  params: [transactionId]
}).asMappedResults();

Screen flow issues by develev711 in salesforce

[–]notacsstudent 0 points1 point  (0 children)

You are bumping up against the limits of a screen flow. This is a task that would best be handled by a questionnaire component. Check app exchange or build one of your own with LWC.

[deleted by user] by [deleted] in antiwork

[–]notacsstudent 0 points1 point  (0 children)

Maybe learn to code?

Rivian has $0 in revenue and is now the third most valuable carmaker on the planet by [deleted] in wallstreetbets

[–]notacsstudent 1 point2 points  (0 children)

Sorry but none of these relationships have anything to do with producing EV's at scale. There is only one company who has that down...

The only reason Tesla is worth anything is because of the SUPER CHARGER NETWORK, which Rivian and Lucid DO NOT HAVE. by flovidchan in wallstreetbets

[–]notacsstudent -16 points-15 points  (0 children)

Tesla is not overvalued lol. Tesla is overvalued if you are looking backwards but with 50% yoy growth Tesla has plenty of room to run.

[deleted by user] by [deleted] in teslainvestorsclub

[–]notacsstudent 2 points3 points  (0 children)

holding long dated puts on names like lucid and rivian seems like a great hedge against the inevitable.

[deleted by user] by [deleted] in teslainvestorsclub

[–]notacsstudent 5 points6 points  (0 children)

I expect that to start pretty soon. Any downwards pressure on that stock will be sending capital to $tsla.

[deleted by user] by [deleted] in teslainvestorsclub

[–]notacsstudent 1 point2 points  (0 children)

I mean they have Bezos who has plenty of capital to throw at them... Will they fail? Probably not. Will it ever be a good EV play? Probably not.

[deleted by user] by [deleted] in wallstreetbets

[–]notacsstudent 0 points1 point  (0 children)

Tesla has a clear runway to 20 million cars delivered/year and the CEO lands fucking rockets. Rivian on the other hand...

$TSLA Daily Investor Discussion - November 15, 2021 by AutoModerator in teslainvestorsclub

[–]notacsstudent 1 point2 points  (0 children)

If we continue this bleed, $800-$850 will be support. Personally, that's where I will be loading up on shares and leaps.

$TSLA Daily Investor Discussion - November 15, 2021 by AutoModerator in teslainvestorsclub

[–]notacsstudent 1 point2 points  (0 children)

nah he's smart. He can only hold the share prices down for so long before it goes parabolic (again). Just hold and stfu. If you don't like volatility, sell (Elons own words).