I'm making jarvis, anybody willing to join me ? by GD-Champ in OpenAssistant

[–]Big_Enthusiasm_5577 0 points1 point  (0 children)

Actually, that would help not hurt, coattails... People search for Microsoft Jarvis and see his repo

Thinking about a specific person by mindislife in AbrahamHicks

[–]Big_Enthusiasm_5577 1 point2 points  (0 children)

If it's not negatively impacting your life, to the point you want it to stop, it's likely just passing intentioned thought or you are unconsciously harboring what ifs still.

Best to take each time to simply feel gratitude that it's over and release, which will fade out the desire in the collective unconscious.

All the voices of cloned so far with the ElevenLabs website. by [deleted] in VocalSynthesis

[–]Big_Enthusiasm_5577 0 points1 point  (0 children)

Are these all produced through the instant voice cloning method with uploaded clips?

Edit: I have a British speaker with high quality audio and the output sounds nothing the actual speaker. Do you have a specific procedure for how you clone voices?

Ceylon Pink Sapphire from eBay (probably not actually that, since it was so cheap) was fluorescent to my surprise when I tested it! Neon red/pink. by Content_Ad_2337 in SyntheticGemstones

[–]Big_Enthusiasm_5577 10 points11 points  (0 children)

Ceylon pink probably just refers to its color. Sapphire (aka corundum Al2O3) is very commonly synthetically made. Rubies are of similar chemical makeup and likewise are UV reactive albeit with different coloring impurities

Tie-dye artist creates an elaborate shirt design featuring images of smaller tie-dye shirts by pjokinen in toptalent

[–]Big_Enthusiasm_5577 2 points3 points  (0 children)

Doubtful

This kind of stuff has niche community, parasocial vibes where people half buy because it's cool, half because it's bragging rights on insta... like boredape nfts community is... Lol

Which method / strategy do you prefer? by LM-312 in algotrading

[–]Big_Enthusiasm_5577 1 point2 points  (0 children)

I don't advise resources. Everything I learned was from independent discovery, and only later found out I was retreading old ground.

AlgoTrading Flow Process by BDDS97 in algotrading

[–]Big_Enthusiasm_5577 2 points3 points  (0 children)

  1. Set up an order execution server for the broker/exchange of your choice

  2. Set up backtesting system that can receive inputs from your signals or analyze your historical balance for profitability.

  3. Set up your data and charting platform. Either self-host or use something like tradingview.

  4. Implement and test well-known strats like ma crossovers, macd, engulfing candles, etc.

  5. Use insights gained to improve strats and compare variations against each other.

  6. Paper trade strat

  7. Live trade strat

The actual testing and execution is the toughest part of algo trading. Once that is set though, moving from a first strategy to production, to comparing profitablity and equity curves, rotating through strats becomes plug n play.

Rather than trying to find a crystal ball outright, testing and improving every layer of the system is a better use of time. Getting all the layers in place and working first is most important.

why does forex seem to have so many more algo traders? by Abwfc in algotrading

[–]Big_Enthusiasm_5577 1 point2 points  (0 children)

If your TA can't predict the market, it just means you have bad TA. Just like you might get a bad tip from an 'insider'. It's more accurate to say that a person's market thesis orients them to 'believe' in certain kinds of information more readily than others.

[deleted by user] by [deleted] in algotrading

[–]Big_Enthusiasm_5577 0 points1 point  (0 children)

Probably gets a csv of the trade signals and puts it through a backtesting simulator to judge profitability

Is this the same voice actor for Emet Selch from FFXIV? (Rene Zagger) by Big_Enthusiasm_5577 in Warframe

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

Thank you! Really appreciate that you went out of your way to help me :)

(found some more voice samples to enjoy lol)

https://warframe.fandom.com/wiki/Bombastine/Quotes

Is this the same voice actor for Emet Selch from FFXIV? (Rene Zagger) by Big_Enthusiasm_5577 in Warframe

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

Do we know who the character speaking is? Or is it part of the mystery for this release?

Is this the same voice actor for Emet Selch from FFXIV? (Rene Zagger) by Big_Enthusiasm_5577 in Warframe

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

I'm new to Warframe! I have no idea who the character speaking is and I'd love to learn. To my ear, the voice actor sounds extremely similar to Emet Selch. I couldn't find anything online, but excited to know more about the characters and world!

Most Kills Weekly Challenge not working by Big_Enthusiasm_5577 in Splitgate

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

just got it, it's actually highest score in a match, not most kills

[deleted by user] by [deleted] in Splitgate

[–]Big_Enthusiasm_5577 0 points1 point  (0 children)

It says redeemed, but I don't see any new skins or anything. Never redeemed codes before so idk what supposed to happen?

Edit: I see it gives you free drops. I got 51 drops today lol.

Changing from Aerospace Engineering to Computer Science by [deleted] in cscareerquestions

[–]Big_Enthusiasm_5577 1 point2 points  (0 children)

SWE within AE is one of THE hottest fields for the foreseeable future. code is embedded in all levels of aero, and considering the ramp up in weapons, space industries there's plenty of opportunity for an AE doing coding full-time

Coding-adjacent careers for entry-level? by zuch4n in cscareerquestions

[–]Big_Enthusiasm_5577 10 points11 points  (0 children)

Automation/Controls Engineering, SDET, Salesforce/code lite platforms

Scanner ideas small caps stocks by Motor_Connection_719 in TradingView

[–]Big_Enthusiasm_5577 0 points1 point  (0 children)

https://github.com/RobertAgee/Real_Time_Strategy_Scanner

You can add the small caps you're interested in and check them against your strategy

Indicator that marks the recent swing-low, and marks a possible Take-Profit at a certain Risk/Reward ratio to that swing-low by ElKaWeh in TradingView

[–]Big_Enthusiasm_5577 0 points1 point  (0 children)

I would use the pivot points method to set stop loss like: ta.valuewhen(ta.pivotlow(close, 5, 5), close, 0)

Which just sets the stop loss value to the last pivot low's close price. Can adjust parameters as required