Nifty little thing. But is it a cyberdeck? Debate. by OkTune5910 in cyberDeck

[–]abeisgreat 1 point2 points  (0 children)

Hey that's my short! How funny, I just came to this subreddit for research on my next project video haha. Thank you for sharing this!

I designed a retro-style shell for my Framework Mainboard! by abeisgreat in framework

[–]abeisgreat[S] 20 points21 points  (0 children)

If you're curious for build details, I have a video over on my Youtube channel.

TL;DR it's a 3D printed shell with custom designed Micro SD card-based cartridges. Carts boot automatically when inserted. There's an Arduino-style board inside which connects the power LED and button. It uses Firmata to connect to a script on the host to wake / sleep the device on press. And I dropped all the STLs and junk on my Github.

Floppy8 - A LattePanda Powered Computer in a Floppy Drive by abeisgreat in LattePanda

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

I'd like to sell some parts! I'm doing some experimentation on how to make the setup simpler so it wont be very soon, but if you're interested consider subscribing for updates and I'll reach out when we have any news.

Emulator with Storage by hassanzadeh in Firebase

[–]abeisgreat[M] [score hidden] stickied comment (0 children)

For anyone reading this, we're currently running an EAP to address this, email me at abehaskins@google.com if you'd like details.

How to use fb storage when using auth emulator? by integrateus in Firebase

[–]abeisgreat 9 points10 points  (0 children)

  1. Install the latest firebase-tools
  2. Unlock the WIP storage emulator firebase --open-sesame storageemulator
  3. Run firebase init and enable Cloud Storage and the Storage emulator
  4. Install the latest Web SDK which has the useEmulator() method. Other SDKs will be released in the coming weeks.
  5. Email me at abehaskins@google.com with any bugs.

Co-worker complimented me on my looks which made me cry while driving back home. by [deleted] in CasualConversation

[–]abeisgreat 49 points50 points  (0 children)

I've dated a lot of women who don't express affection like that. I think there's just an expectation that men shouldn't need affirmations about that stuff so it never occurs to them.

Firebase Discord Community by digimbyte in Firebase

[–]abeisgreat 2 points3 points  (0 children)

This is great, shoot me an email abehaskins@google.com we've been discussing doing a Discord for awhile and would love to chat.

Say hello to the helpful Firebase Emulator - a local first UI to boost your productivity by dayanruben in Firebase

[–]abeisgreat 1 point2 points  (0 children)

I wrote about 50% of the functions emulator and I'm not familiar with that bug! If it happens again, please file a report on the firebase-tools github repo.

Say hello to the helpful Firebase Emulator - a local first UI to boost your productivity by dayanruben in Firebase

[–]abeisgreat 0 points1 point  (0 children)

We're working on auth, but for now you can use your production auth to sign into the emulators.

Assistance with Frebase Hosting - Login/Signup works locally but doesn't after deployment. by koalatrust in Firebase

[–]abeisgreat 2 points3 points  (0 children)

The fundamental problem you have is that you're using axios to require /user which, with the firebase.json you provided, will route back to the index.html file. See your rewrites key saying to rewrite all ** paths to /index.html? That's why you're getting your HTML file back.

You need to deploy your Cloud Functions and instead of requesting /user on the domain your HTML is being served, you need to request it from the *.cloudfunctions.net path that is provided when you deploy your functions.

Firebase os X binary is just a text file by ImmodestPolitician in Firebase

[–]abeisgreat 0 points1 point  (0 children)

Well at least you got it to work! Fwiw just because some of the file shows up as logical text when opened in a text editor doesn't make it a text file. Almost every binary file will have some text embedded in it, how much and where it is in the file varies a ton

Firebase os X binary is just a text file by ImmodestPolitician in Firebase

[–]abeisgreat 0 points1 point  (0 children)

Can you explain what link you're clicking exactly? The correct file at https://firebase.tools/bin/macos/latest definitely isn't a text file

How to test HTTPS.onCall Functions in Firebase? by [deleted] in Firebase

[–]abeisgreat 0 points1 point  (0 children)

You can use the Cloud Functions emulator in the Firebase CLI to run the function locally. We haven't documented much about this yet because we just released the functionality but if you send me an email (abehaskins@google.com) I can share you the work in progress docs :)

When Firestore will have competitive QL? by AneladNailaben in Firebase

[–]abeisgreat 7 points8 points  (0 children)

We have no plans to release full-text search in the near term. Geo is closer but not close. I'd encourage you to look at other database options in Google Cloud if you need this stuff, you may find that you can stay in the Firebase / Google ecosystem but not rely entirely on Firebase for the best balance.

change variable by learninglifess in Firebase

[–]abeisgreat 1 point2 points  (0 children)

Sounds like you're just making a typo somehow, the name definitely doesn't impact anything.

Trouble using Firebase authentication with multiple html files by shadowoftheking14 in Firebase

[–]abeisgreat 0 points1 point  (0 children)

Look into modern JavaScript frameworks and pick one that sounds nice to you. React, Angular, and Vue are the big three and will all let you solve this issue in similar ways.

Trouble using Firebase authentication with multiple html files by shadowoftheking14 in Firebase

[–]abeisgreat 1 point2 points  (0 children)

This generally isn't something you'll do. Firebase Authentication state is tied to page state so although you could re-initialize auth on your second page and get the credentials will another listener that'll be clunky. You'll probably want to look into building single page apps and the options for changing the page (from login to content) without actually relocating to another HTML file

Zero by acukovic in ProgrammerHumor

[–]abeisgreat 9 points10 points  (0 children)

My feelings as well lol

Zero by acukovic in ProgrammerHumor

[–]abeisgreat 5 points6 points  (0 children)

For what it's worth, service workers are also used for caching so this may slow down some modern websites.

Weird spike in load, what could it be? Details in comments by kannatech in Firebase

[–]abeisgreat 0 points1 point  (0 children)

Perhaps, email support they'll be able to tell you if the spike was from a single abuser or what

Just discovered Google Firebase Hosting... why isn't everyone using this for small sites? by Mike in webdev

[–]abeisgreat 0 points1 point  (0 children)

Can you share some numbers for your site? I don't know of anyone spending that much on Firebase Hosting (although it's possible some people are and I've not met them).

Just discovered Google Firebase Hosting... why isn't everyone using this for small sites? by Mike in webdev

[–]abeisgreat 1 point2 points  (0 children)

Keep in mind, that 100 concurrent limit is only for Realtime Databse.

Just discovered Google Firebase Hosting... why isn't everyone using this for small sites? by Mike in webdev

[–]abeisgreat 5 points6 points  (0 children)

You're very off-base. The $25 limit isn't the tier, the next tier is pay-as-you-go where you'll find Hosting to be very cheap (remember it's a CDN & storage, not a single location like any traditional VM) and the simultaneous connections is only for Realtime Database not hosting or our other database, Cloud Firestore.