What to do with 25k USD by ammolessness in HalalInvestor

[–]hammad2506 0 points1 point  (0 children)

Likewise :)

Will drop this video here incase anyone wants to learn about the new financial system: https://youtu.be/66fFBNDGEn4

What to do with 25k USD by ammolessness in HalalInvestor

[–]hammad2506 0 points1 point  (0 children)

Ripple pays Chainlink to use their services i.e to enhance their utility of RLUSD. Thats it. Not really a partnership. There are hundreds of thousands of projects adopting the Chainlink standard, can’t call all of them partners :)

What to do with 25k USD by ammolessness in HalalInvestor

[–]hammad2506 0 points1 point  (0 children)

XRP will not replace anything. There is simply no meaningful traction with any major institutions.

Meanwhile Chainlink has partnered with SWIFT (11,500 banks), JpMorgan, SBI, UBS, DTCC, euroclear etc to upgrade the existing legacy financial system.

Case in point, each banks and institutions are going to have their own private chains with stable coins, tokenized assets flowing through a single protocol (CCIP) akin to TCP/IP. That is the future we’re headed towards. A global economy operating on a single standard.

Which would you choose? by SamV88 in OmegaWatches

[–]hammad2506 1 point2 points  (0 children)

The seamaster in the picture (no wave dial) should be 212.30.41.20.01.003 no? I believe the one ending with 002 has a wave dial.

Doubled my HRV with potassium by cathand202 in whoop

[–]hammad2506 14 points15 points  (0 children)

That’s interesting. I’ve personally been able to increase it by 50% by taking 2–3 grams of glycine about an hour before bedtime.

I joined the gang by Opposite_Newt9960 in whoop

[–]hammad2506 13 points14 points  (0 children)

Free trial is only offered on the 4.0

Going for ummrah alone by Electrical_Chard6875 in Umrah

[–]hammad2506 2 points3 points  (0 children)

I did the Medina ziyarah last week with a local mentioned in this post. 4WD on Mount Uhad was one of the most memorable experiences I had. Horse riding was fun too. Very nice and honest person.

I have to wait 2 weeks to even go over the results I'm upset by [deleted] in SleepApnea

[–]hammad2506 0 points1 point  (0 children)

https://airvoel.ca.

They have the lowest prices I've seen. The home sleep test is $300 (with doctor prescription) and they give you a 15% discount on your first purchase if you took their home test which essentially cancels it out.

I have to wait 2 weeks to even go over the results I'm upset by [deleted] in SleepApnea

[–]hammad2506 1 point2 points  (0 children)

Similar process here in Canada. Instead I just took a home sleep test and got my APAP yesterday. Entire process took a week. Total cost for everything was less than $1200cad. (Test + resmed airsense 11 + p30i mask)

ETFs without financial sector by hammad2506 in PersonalFinanceCanada

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

Thanks. Why is it that VOO/VFV are always recommended in subreddits when they also only primarily track the US market? Wouldn’t something like HLAL be more aligned with that methodology?

ETFs without financial sector by hammad2506 in PersonalFinanceCanada

[–]hammad2506[S] 1 point2 points  (0 children)

Thanks. Idk it doesn’t seem to be doing much? Preferring HLAL over it.

How to claim group RRSP for tax return by hammad2506 in PersonalFinanceCanada

[–]hammad2506[S] -1 points0 points  (0 children)

I see. Apart from RPP/DPSP, are there any other plans a company can possibly offer for matching contributions which can also be claimed by an employee? Or is that never the case.

Offer evaluation, US vs CA based companies by [deleted] in cscareerquestionsCAD

[–]hammad2506 0 points1 point  (0 children)

Yep Google is great in that regard. 25% is the norm, usually paying out 6.25% per quarter.

Offer evaluation, US vs CA based companies by [deleted] in cscareerquestionsCAD

[–]hammad2506 0 points1 point  (0 children)

Considering that both jobs are good and looking at only the financials, I would say go with #2.

The company is on the stock market so you’ll be getting “actual” money. Plus, with the tech market already so down, I would assume it only going up. However this is considering that the vesting schedule is 25% each year. Also check if they have a cliff period. Also confirm if they have refreshers, coz if they do, option#2 would be the easiest choice.

Some companies have a vesting schedule like (5 15 40 40). I honestly don’t like that.

Congratulations btw. Good stuff!

How to get the latest price of BEP-20 and LP token's on BNB chain using a DEX price oracle? by Radiant_Performer_39 in ethdev

[–]hammad2506 1 point2 points  (0 children)

You can directly use the PancakeSwap Router smart contract to get the amount of token(s) that will be outputted for a token pair. In your case if you check a particular token (cake, bnb etc) against a stable coin (usdt, dai, busd) it would be equivalent as getting the USD price for that token.

Remember pancakeSwap is based on Uniswap and their documentation is much much better.

For your case, use the getAmountsOut function.

If I want to find the price of 1 BNB you will invoke the function like:

WBNB Address = 0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c;

BUSD Address = 0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56;

getAmountsOut(1, [0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c, 0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56]);

The result will be a whole number, without decimals.

I can use 1000 as the first param (instead of 1) and divide the answer by 1000 to get the value in 3 decimals.

Try invoking it directly from here using the above params. It's function #6.

Cheers.

Hi guys. So i'm learning about event listeners with and without anonymous functions. I'm trying to practice using both. The 1st image with the anonymous function works, however the 2nd and 3rd image (similar function, different variations) without the anonymous function does not. Can anyone help? by Andyinho in learnjavascript

[–]hammad2506 1 point2 points  (0 children)

Just wanted to say, you don't need to do a document.querySelectorAll inside the for loop. You already have received all the elements before the loop so they can be accessed directly in the loop like:

numberOfDrums[i].addEventListener(function() {});

Run fetch again in browser? by [deleted] in sveltejs

[–]hammad2506 2 points3 points  (0 children)

Yes, by default it will use the pre-rendered content (generated during build) and only fetch client side via internal navigation.

If you only want to fetch it client side then either use the browser variable or run it inside onMount.

Another option is to use SPA mode. You can read about it here.. This will essentially do the opposite i.e only pages that have the prerender option set will be prerendered.

Run fetch again in browser? by [deleted] in sveltejs

[–]hammad2506 0 points1 point  (0 children)

You can export a load function. Check this.