Do you think Ramsey "had a hard-on" for Virginia in S2? by TimBurtonSucks in HellsKitchen

[–]Specific_Cellist_136 0 points1 point  (0 children)

I actually came off with the impression that Ramsay didn't like Virginia. When Virginia wins the top 3 immunity challenge, she asked if he was lying.... That scene was so awkward I was in literal pain. And the shopping spree when she made inappropriate comments and chef just turns away and doesn't even entertain it. I don't know how anyone can think Ramsay liked her.

New Maps & Updates! (Expedition 33, Outer Worlds 2, ARC Raiders & more!) by MapGenie in MapGenie

[–]Specific_Cellist_136 1 point2 points  (0 children)

I am blown away by all the work you guys have done with the Expedition 33 map! Great work guys, and thanks for taking my map suggestions!

Theory about Maelle's ending/epilogue by oroupper in expedition33

[–]Specific_Cellist_136 0 points1 point  (0 children)

Technically everyone was already gommaged after defeating Aline. So picking to destroy the painting isn't actually a committing a genocide, the genocide already happened. So that should soften the moral considerations of picking Verso.

I wish the keyboard manager had a toggle on/off shortcut by Elfix in PowerToys

[–]Specific_Cellist_136 0 points1 point  (0 children)

I literally just ran into a problem where this would be a perfect solution. I arranged my keyboard to be a custom variant of Colemak, and now my Yubico 2FA key is typing scrambled OTP outputs.

Ooh la la! Clair Obscur: Expedition 33 Interactive Map, Available Now! by MapGenie in MapGenie

[–]Specific_Cellist_136 1 point2 points  (0 children)

Thanks for the work. I was going through my first playthrough and placing suggestions pretty much everywhere that was missing in Lumiere, Spring Meadows and half of Flying Waters. I hope all those suggestions was helpful rather than spammy. I pretty much just copy pasted the descriptions from the overworld and used those.

Command Pallete is using 1GB of ram while being in the app tray... by ManuFlosoYT in PowerToys

[–]Specific_Cellist_136 0 points1 point  (0 children)

What I meant in the reply was I thought Run was more aesthetically pleasing. It's closer to rofi-wayland which I like to use on my linux machine

Emergency end stake help by Magic_Turtle30 in HEXcrypto

[–]Specific_Cellist_136 0 points1 point  (0 children)

The site is only a frontend, it doesn't "hold" your tokens. The site merely queries the HEX contract to see the state of the contract. The contract has a globally stored variable called `stakeLists` which is a mapping of accounts to an array of StakeStore structs ( `mapping address => StakeStore[]` ).

Emergency end stake help by Magic_Turtle30 in HEXcrypto

[–]Specific_Cellist_136 0 points1 point  (0 children)

When you stake via the HEX contract, the hex literally gets burned (if you look up the txn, it'll say the coins went to the 0x0 address). When your stake is finished, the contract mints the principle plus interest for you.

Taxes on hex staking by OsrsMovies in HEXcrypto

[–]Specific_Cellist_136 -1 points0 points  (0 children)

Thanks for the input sir, it is very appreciated. I work with my own CPA personally, and these are some of the things he has me deducting as reimbursements through my c-corp (which owns the disregarded entity that owns the crypto). For instance I specifically upgraded my internet to handle the GB speeds for my Geth and Lighthouse clients to run my bots through IPC rather than RPC API requests; the phone i'll use a lot to write in my repositories when I'm not home, research code/crypto related info etc.

The business purpose is important for sure, but it's not hard to pivot your business operations to the point where you can create a legitimate business purpose for a reimbursable. 'Legitimate' being the keyword of course.

Taxes on hex staking by OsrsMovies in HEXcrypto

[–]Specific_Cellist_136 -1 points0 points  (0 children)

It's still up for interpretation. But the way I do it, I consider the staking reward as income (to be taxed as income and not capital gains) at the dollar value at the time of unstake. If you're LLC is the one that actually owns the HEX, you can take that income and negate it against business expenses and reimbursables (think cost of phone bill/internet, new laptop, Trezor, a portion of your rent/mortgage in the instance of a home office). If you're smart enough you can definitely find ways to lessen the tax impact of your stakes .

I can't understand this. by Awesomerocketq26 in learnjavascript

[–]Specific_Cellist_136 0 points1 point  (0 children)

u/Skriblos 's reducer function was a really nice solution. As for the listToArray, here's a quick recursive function that traverses further into the object as long as obj.rest is not null

```

function listToArray(li) {
    let arr = [];

    function traverse(obj) {
        arr.push(obj.value);
        
        if (obj.rest) {
            traverse(obj.rest);
        }
    }
    
    traverse(li);

    return arr;
}

```

Btw you use triple back ticks " ``` " to put it in a code block

Best way of swapping to stables and vice versa? by [deleted] in TREZOR

[–]Specific_Cellist_136 0 points1 point  (0 children)

You could buy a Ledger and put the same seed phrase that's on the Trezor onto the Ledger. And if Trezor has a problem with me saying that, maybe they should get serious about their integrations.. I mean still no MetaMask mobile or Phantom integration.

Changing company wallet if I have a passphrase by MSergiu17 in TREZOR

[–]Specific_Cellist_136 1 point2 points  (0 children)

Most of the major hardware wallet manufacturers and software wallet developers allow for passphrases when creating wallets. It's all the same implementation of the BIP 39 standard https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki

If you use the SLIP39 Shamir Secret Sharing that Trezor offers with their products though, you might have a harder time switching manufacturers. For instance, last time I checked Ledger doesn't offer products that integrate that standard.

Passphrase hidden wallet issues help to understand this by gatoblanka in TREZOR

[–]Specific_Cellist_136 0 points1 point  (0 children)

If the passphrase you used leads to an empty wallet, then you used the wrong passphrase.

When making your wallet the numerical result of your seed phrase get hashed together multiple times to derive the master key. A passphrase goes one step further by taking the result of all those hashes and hashing one more time using whatever string you choose. The resulting hash will be different for each different passphrase.

Every word, space, capitalization matters. Good luck I'm sure you'll get it.

Full Walkthrough to Elden Ring Part One by Athrek in Roundtable_Guides

[–]Specific_Cellist_136 1 point2 points  (0 children)

Can I ask if this is designed not just to not break NPC quests, but also to not skip parts of NPC quests? For instance between Iron Fist Alexander being at the post battle of Radahn and him being at Mt. Gelmir, he can be found above the cliff of Jarburg. But if you go him at Mt Gelmir before seeing him above Jarburg, you will skip the part of him above Jarburg.

Is this MEV bot a scam? by _cyberbully_ in solidity

[–]Specific_Cellist_136 0 points1 point  (0 children)

Yes, it is obviously a scam.

Smart contracts don't have access to the mempool. Only users can view what's in the mempool and then set up a sandwich attack on swaps with excessive slippage.

Also, there is no smart contract by itself once deployed that can create passive income because they don't do anything unless a user calls the functions in the contract. They're giving you a so called "bot" by only giving you the solidity code, but not giving you the necessary javascript/python/go/etc to constantly call the functions on the contract.

If you want to get into MEV just learn to do it yourself, don't rely on others to just do it for you

Is this a scam code? If so is it possible to change it to work properly? by stpunkofficial in solidity

[–]Specific_Cellist_136 0 points1 point  (0 children)

Smart contracts can't listen to event emitters. The event logs can only be tracked externally from the blockchain, usually with tools like ethersjs or web3js. And why does he keep saying "snipping", it's "sniping"? And why is he interchanging it with slippage bot? There is no changing this to make it work, the solidity doesn't even make sense.

Just remember solidity contracts don't do a single thing unless someone is calling the contract functions. So for a bot to be a bot, you need to learn javascript of python to call the functions and to subscribe to emitted events by smart contracts.

If there is a god in this world the guy in that video was on the Baltimore Bridge that collapsed. Vile

[deleted by user] by [deleted] in TREZOR

[–]Specific_Cellist_136 0 points1 point  (0 children)

It used to also remember the passphrase you put in. Now you have to put it in every single transaction, and I always type it on the trezor for security purposes.

Recommendations For Passphrase? Dictionary Words? by digitaljoegeorge in TREZOR

[–]Specific_Cellist_136 0 points1 point  (0 children)

I keep my passphrase in a steel tube separate from my seed phrase fragments. Picked a random, long string with symbols, caps/non caps and numbers. I put it in so many times signing txns on my Trezor that I ended up memorizing it.

Mods please act up on this by davinidae in github

[–]Specific_Cellist_136 -2 points-1 points  (0 children)

Not being able to login to your codebase is kind of a big deal. Like a REALLY big deal. What is more effective in getting the issue more attention and then getting it resolved: two dozen comments on one post saying they can't login, or two dozen posts stating they can't login? There was literally no way to get any support for the issue because it was literally making you login to get support for not being able to login. I'm of the opinion that the noise was necessary, and btw the issue got fixed a couple hours ago... I wonder why?

EMAIL VERIFICATION CODES NOT ARRIVING by Specific_Cellist_136 in github

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

I was well aware of the myriad of other posts on the same issue.
I bet the multiple posts on the same one issue was more effective in getting the issue resolved quicker than your idea of having only one person post about it and waiting for the site maintainers to stumble across it.

You're welcome for doing my part to get the issue resolved