
Scout Game Review & Airdrop
If you haven't heard about Scout Game, you should know that if you are a developer, or you want to support mostly Web3 developers, or you would like to discover cool projects, you should probably check out this website. The project is relatively new; it's been around since 2024, and it showcases mostly Web3 developers. I've been one of its first users, and I saw it evolve, and was rather active on it. It has some interesting game mechanics where you can use points to buy cards that represent ...

Railway - impression
After V. Buterin gave some funds to the Railway project, I was curious to try it. I am a sucker for all anything that boosts privacy. That is why I w...

Clear EVM Wallet
I made this wallet in the course of two weeks based on Ethers, Ionic and Vue. Right now, it is built solely as a chrome extension wallet, but I used ...
<100 subscribers



Scout Game Review & Airdrop
If you haven't heard about Scout Game, you should know that if you are a developer, or you want to support mostly Web3 developers, or you would like to discover cool projects, you should probably check out this website. The project is relatively new; it's been around since 2024, and it showcases mostly Web3 developers. I've been one of its first users, and I saw it evolve, and was rather active on it. It has some interesting game mechanics where you can use points to buy cards that represent ...

Railway - impression
After V. Buterin gave some funds to the Railway project, I was curious to try it. I am a sucker for all anything that boosts privacy. That is why I w...

Clear EVM Wallet
I made this wallet in the course of two weeks based on Ethers, Ionic and Vue. Right now, it is built solely as a chrome extension wallet, but I used ...
Share Dialog
Share Dialog
To start, I'll say what party town is, in a nutshell: it's a tool to get some of your execution out of the main thread and into a worker. It's doing that by communicating between the worker and the main thread, which will primarily execute DOM updates.
More in-depth, this concept works by you marking the scripts as `not javascript` then those scripts are forwarded to the worker. If those scripts are external, they must be passed through a proxy that will get around CORS.
Now most common use for PartyTown is for analytics scripts because they are heavy and can negatively affect performance; even the improved version of google tag manager has a large footprint. In fact, it could easily be the case that will cut 2-4% of your score. Now for that alone, and if you want to provide your user the highest amount of privacy, I feel that analytics should not be used. But it may well be the case that you might need to use them for two main reasons; first, you see that data as absolutely critical, or second case which is mostly the case for me, you require that data by other services for gaining access to services that are otherwise not accessible.
Check out the whole article at:
To start, I'll say what party town is, in a nutshell: it's a tool to get some of your execution out of the main thread and into a worker. It's doing that by communicating between the worker and the main thread, which will primarily execute DOM updates.
More in-depth, this concept works by you marking the scripts as `not javascript` then those scripts are forwarded to the worker. If those scripts are external, they must be passed through a proxy that will get around CORS.
Now most common use for PartyTown is for analytics scripts because they are heavy and can negatively affect performance; even the improved version of google tag manager has a large footprint. In fact, it could easily be the case that will cut 2-4% of your score. Now for that alone, and if you want to provide your user the highest amount of privacy, I feel that analytics should not be used. But it may well be the case that you might need to use them for two main reasons; first, you see that data as absolutely critical, or second case which is mostly the case for me, you require that data by other services for gaining access to services that are otherwise not accessible.
Check out the whole article at:
No comments yet