pull down to refresh
@bitcoinplebdev
651,478 sats stacked
stacking since: #50813longest cowboy streak: 38 verified stacker.news contributor
241 sats \ 1 reply \ @bitcoinplebdev 21 May \ on: Paid 50k Sats for a month’s access to PlebDevs course and feeling robbed devs
Hey @BlokchainB thank you for sharing and I’m super sorry about this issue on the platform!
Your issue with the video not playing is something that I HAVE NOT been able to replicate! I have poured over my video details (and shipped multiple fixes and updates over the last month) and the only insight I have is that sometimes Firefox will still not play videos (I cannot replicate it now though!) This seems to be a CDN issue potentially.
Can you please share with me what browser you are using (and any errors in the console) I believe I had asked for this before?
Also I notice that I just zapped this post 50,000 sats so full refund for you.
Also I want to help with your dev journey specifically with JavaScript (and other plebdevs stuck on this step)
I am currently working on a JS intermediate course (to follow up the starter course)
I am building this with YOU in mind!
I want to help so please keep me accountable to finish this soon and I will deliver it to you for free.
Beyond that I can send you my calendly link in a DM, to let’s get you unblocked from where you’re stuck on JS!
(how should I send this to you?)
I’m sorry I failed you here!
Which lesson? Is it the video not playing? Which browser?
I'm checking now, so sorry it stopped working!
Also I am working on an intermediate JavaScript course that will be the perfect followup and pairing with the starter course
nstart has been working on FROST for nostr keypairs? Or are you talking about nip46 nitro enclaves integration?
Don't wait! We have a working demo of Frostr with 2 signing clients (check out my demo video on the website)
Be careful when testing though, don't use your real nsec until you understand the process!
That's what I'm talking about!
We are working on first Frostr signing integration with nip46 right now.
Nitro Enclaves + key distribution + remote signing is probably close to the ideal for great Nostr key security & ease of use
(this would be also goated for Lightning key distribution, just need VLS)
Yes it is! But you need to create a new keyset to do this
You can create a keyset from an existing nsec or a new one. A keyset is a set of FROSTR "shares" (basically like keys in a multisig) and you need a threshold of these shares to sign a valid note (you choose the threshold)
These shares in the set are inherently interconnected so if you have a 2/3 and you want to make it a 3/5 you need to DESTROY the old 2/3 keyset (or at least the threshold of shares in that keysey) and then CREATE a new 3/5 keyset (with the same nsec)
Demo is here: https://x.com/bitcoinplebdev/status/1905056787771842665
Fixed! @BlokchainB
You can manually mark lesson as completed now in the more options dropdown
Once all lessons in a course are completed the course is marked as complete.

Let me know if you have any more issues with this!
Course Tracking improvements are being worked on right now, sorry about that! Will also have a manual checkbox soon to mark lessons as completed manually so you can check off the course yourself
If you go to the course you should see lessons marked as completed (or not) (if you complete the missing one's you'll get your badge issued)
Amazing thank you so much for the thorough feedback!
I agree with you in general about the JavaScript portion. This is a big jump and ideally I would like to do this in more baby steps (probably 3-4 individual lessons). I am planning on updating / improving the starter course soon (this was the first version and I actually filmed it in a single weekend lol) so a lot of little improvements I want to add!
I'm generally not a fan of quiz's (and it's a lot to build into the platform) but a few people have suggested it so far so I'll consider how it could be done easily.
Coding exercises are something that is a little more realistic and doable. There are repo "submissions" built into the platform so I could lean into this more (requiring submission for most lessons) but also embedding a codepen directly into a lesson is possible as well.
The lesson tracking can be a bit fickle still... In general it should trigger a lesson as completed after 80% of the video has been watched but this doesn't always trigger correctly. I think I will add a manual checkbox to allow you to mark it as completed if the auto lesson tracking doesn't work. I know progress is important and I want to make it encouraging and seamless on the platform! Still a ways to go.
Things will keep improving, thank you again for the support and feedback!
Dude yeah great to meet, and thank you! I wont dox you don't worry haha
I'm following you on Github now so keep pushing commits and let me know if you get stuck again 🫡
Sorry about the trouble... Wanna jump on call today? I think we can figure this out in a few mins probably
This is a super common Git authentication issue! I have to do some googling everytime I go through this process myself, it's kind of annoying...
- First, ensure you've configured Git with your GitHub email and username:
git config --global user.name "Your GitHub Username"
git config --global user.email "your@github.email"
- Create a personal access token (PAT) on GitHub:
Go to GitHub.com → Settings → Developer settings → Personal access tokens → Tokens (classic)
Generate new token
Select repo scope
Copy the generated token
- When pushing, use HTTPS with your token:
git remote set-url origin https://YOUR_GITHUB_USERNAME:YOUR_PAT@github.com/YOUR_USERNAME/YOUR_REPO.git
Finally you can try:
git push -u origin main
If you're still having issues, verify:
- Your GitHub account has write access to the repository
- You're using the correct repository URL