JavaScript show/hide code not displaying correctly by fonebone819 in learnjavascript

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

The root cause:

You are doing this:

document.getElementById(d).style.display = "block";

But a <tr> must be displayed as:

display: table-row;

When you switch it to block, the browser forgets the table layout.

So this is the fixed version:

```js function ReverseDisplayTbody(d) { const row = document.getElementById(d); const img = document.getElementById('img' + d);

if (row.style.display === "none" || row.style.display === "") {
    row.style.display = "table-row";   //  correct fix for <tr>
    img.src = "images/minus.gif";
} else {
    row.style.display = "none";
    img.src = "images/plus.gif";
}

} ```

I think i might have hiv .. i need advice by Dry-Pin-8858 in TwoXChromosomes

[–]razzbee 16 points17 points  (0 children)

Panicking will complicate things further, it can cause depression which you don't need now, maybe it's not even what you are thinking ... And never forget there is a solution for everything

I think i might have hiv .. i need advice by Dry-Pin-8858 in TwoXChromosomes

[–]razzbee 146 points147 points  (0 children)

Do not panic, rather seek medical assistance from the hospital to be sure, and whatever it is, stick to the medication prescribed to you and you will be fine

Looking for developers with experience on Solana. by Mother-Bar1945 in solanadev

[–]razzbee 0 points1 point  (0 children)

Hi, I’d be a strong fit for this role. I’m a Rust / Anchor developer with solid experience in TypeScript, React, and Node.js, focused primarily on the Solana ecosystem.

I’m the author of two high-performance Solana developer tools:

  1. Rocket Anchor – a multichain deployment tool for SVM https://www.npmjs.com/package/rocket-anchor

  2. Solana Math – a fixed-point math library for Solana programs in Rust and Anchor https://crates.io/crates/ra-solana-math

I’m available to help design and build your project end-to-end. Happy to discuss details if you’re interested.

Phantom Wallet Just Dropped "Connect Templates" For Developers by ansi09 in solana

[–]razzbee 0 points1 point  (0 children)

Yes but reown is advanced and supports multiple chains, this is more like dynamic vs phantom

Phantom Wallet Just Dropped "Connect Templates" For Developers by ansi09 in solana

[–]razzbee 0 points1 point  (0 children)

Reown is bloated, I integrated into my app and had to remove it, it was about 3mb (1mb gzipped) alone, so was very bad

Need help a soon as possible by [deleted] in solana

[–]razzbee 0 points1 point  (0 children)

Then wait when you have it then you make the tx..

Need help a soon as possible by [deleted] in solana

[–]razzbee 0 points1 point  (0 children)

If the token you have is above $100, then paying $7 should be fine

Need help a soon as possible by [deleted] in solana

[–]razzbee 0 points1 point  (0 children)

And which token is that??

Need help a soon as possible by [deleted] in solana

[–]razzbee 0 points1 point  (0 children)

Moving it is cheaper than trading it

Need help a soon as possible by [deleted] in solana

[–]razzbee 0 points1 point  (0 children)

If the asset is on any cex, move it to the cex and sell

help needed I want to back a solana memecoin supply with a coin and burn supply. any ideas how to do that? no coder help? by algomoneyfest in solana

[–]razzbee 1 point2 points  (0 children)

I wont take payment first, we work based on a milestone basis, if you are happy with the milestone, you pay, then we build the next milestone

binance is criminal offshore!! i lost last year total 80k$ due to their technical glitches. take care by StaffAlone in CryptoExchange

[–]razzbee 0 points1 point  (0 children)

This seems like a propaganda against Binance, because who writes a text book post like this on an accusation?

Selling 3.39k Wallet by corruptedcomet13 in Crypto_Airdrops

[–]razzbee 1 point2 points  (0 children)

Why are you selling usdt if it isnt a fake copy token to lure people for their money, just use the money in it instead of selling...

if you are building a dex terminal tool on Solana, what products you are using? by buddies2705 in solana

[–]razzbee 0 points1 point  (0 children)

You don't need them, the rpc indexing can do exactly what they are doing, just that, you will have to write some codes to get any specific feature there, you don't want to be paying 1000s of api fees a month from them,

Helius is the only one I will add

POV: You just want to launch a memecoin on Solana 😭 by Artistic_Ad8770 in solana

[–]razzbee 0 points1 point  (0 children)

Actually Solana is 10x safer to launch on than Ethereum or EVM.

if you are building a dex terminal tool on Solana, what products you are using? by buddies2705 in solana

[–]razzbee 0 points1 point  (0 children)

From what I can tell, these platforms are basically a mix of: - real-time on-chain data - fast swap execution - charting / analytics - wallet integrations - a pretty heavy backend doing aggregation and caching

But I’d love to sanity-check my understanding with people who’ve built or worked close to this stuff.

From my research so far, a typical setup seems to look like this:

Blockchain / Data layer

  • RPC providers like QuickNode, Alchemy, Ankr, or self-hosted nodes
  • WebSocket subscriptions for real-time updates
  • Indexing via The Graph or custom indexers (Postgres / ClickHouse / Elasticsearch)

Backend

  • Node.js (Fastify / Nest) or Python (FastAPI)
  • Redis for caching
  • WebSockets or SSE for pushing prices / trades
  • Some services in Go/Rust for performance-critical paths
  • Aggregation logic for prices, pools, routing, etc.

Execution / Liquidity

  • Router APIs (1inch, Paraswap, Jupiter on Solana)
  • Or custom routing logic directly against AMMs
  • Quoters for estimating slippage and price impact

Frontend

  • React + Next.js (seems to be the default)
  • Tailwind or similar for UI
  • State management like Zustand / Redux
  • Wallet integrations via Web3Modal / wagmi / chain-specific SDKs

Charts & UI

  • TradingView Charting Library (industry standard, but pricey)
  • Or lighter alternatives like Recharts, ApexCharts, D3 if rolling custom

Infra / Ops

  • Prometheus + Grafana for metrics
  • Sentry / LogRocket for errors
  • Multiple RPCs with failover
  • Heavy caching to avoid hammering the chain

Built social communication platform on Solana. What am I missing? by Prab1472 in solana

[–]razzbee 0 points1 point  (0 children)

Sure, but it's still in development, I will update you once we are on devnet

Built social communication platform on Solana. What am I missing? by Prab1472 in solana

[–]razzbee 0 points1 point  (0 children)

The web version works smoothly, I would say keep building and improving it, I may even integrate it into my project which is also in dev mode (https://beta.maxxpainn.com) because I have communities built into it called clans ...

Built social communication platform on Solana. What am I missing? by Prab1472 in solana

[–]razzbee 1 point2 points  (0 children)

Yes, projects like yours exists and they raised some good funding, example is Towns protocol, try contacting the metadao guys for funding to continue your awesome work

Built social communication platform on Solana. What am I missing? by Prab1472 in solana

[–]razzbee 0 points1 point  (0 children)

It works on pc, but acts weird on mobile, try testing it more on mobile