Comment on
Voice comments
Reply in thread
Let's turn github into Instagram. Every snippet of code has to be attached to a picture or video...
Comment on
Voice comments
Reply in thread
Let's turn github into Instagram. Every snippet of code has to be attached to a picture or video...
Comment on
Paid subscriptions without DRM - the open source way
Advertising any kind of payment / subscription that does not go through the store through which the app has been distributed, is prohibited by apple and google (not 100% sure about google, but fairly certain).
Comment on
Does the tracing crate support logs rate limiting?
This would most certainty be part of the used subscriber. I'm not sure if any of the existing subscribers support it, but in the worst case you can write your own subscriber that wraps an existing one.
Comment on
First time macOS user, what are the essential apps?
Reply in thread
What can it do that macos built-in screenshots and preview can't do?
Comment on
Image share Web vs PWA
It's a Firefox thing. The context menu in pwa mode is different from the normal one. This is most likely a bug.
A workaround I sometimes use, is to go to the notification drawer, click the silent pwa notification to copy the URL of the current page, share the copied URL with firefox and finally use the normal context menu.
Comment on
First-person maze with enemies: I need a start.
Regarding 3d models, you can:
Since you ask for the easiest solution, just use CSGMeshes for your maze and a cube or sphere mesh for your enemies.
Comment on
[Question] [Solved] Persistent variables in tool script
You need to export them from your script.
Comment on
How to handle application storage in rust?
It depends on how you want to store your data. Every OS has a standard for where applications should store their data. You should store your data at the appropriate path. If you have structured data against which you want to run queries you could use a sqlite DB (the sqlx crate supports sqlite) instead of just a bunch of config files.
Comment on
Image share Web vs PWA
Reply in thread
No there is no way to customize the menu. I found an old bug that mentions adding a share option to the context menu. It is probably worth it to either kick this old bug, mentioning what is still missing, or to create a new bug describing the current issue.
Comment on
Vogayer + Android Users which browser are you using for its PWA?
Reply in thread
The problem is that firefox for some reason uses TLS 1.2 when pulling icons but vger.app only support's TLS 1.3.
Comment on
First time macOS user, what are the essential apps?
Reply in thread
I'm curious. What workflow do you have that requires window snapping? I'm asking because I have no use for window snapping and I'm trying to understand why people require it.
Comment on
Feature request: Pre-load thumbnails
Lazy-loading is exactly the opposite of pre-loading 😅
Comment on
unscrollable video fields on iOS 17.1 & Voyager 1.17.1
Reply in thread
Im not at all familiar with the processes of WebKit, but the commit that was the result of the PR which is referenced in the linked bug, is not part of any release tag yet. So it's unlikely that this change is available in any stable software that is built with WebKit (I.e. safari)
Comment on
Disconnecting a signal from inside the listener
Where is the definition of your signal? Would be best to compare that with your usage-site.
Also, in Godot 4 you don't have to reference signals as strings, they exist as properties on your class. You should be able to reference the signal as i.e. TilemapMovement.movement_finished.connect(...)
Comment on
what does your android / iphone home screen look like
I have built my own launcher that consists of two rows of apps on the bottom of the screen which are auto populated with my most used apps. Additional there is a "swipe down to search" view for all other apps. Nothing else.
Comment on
What is your ringtone?
This is my ringtone: https://m.youtube.com/watch?v=Ljqe4Nj7nBA&pp=ygUKbG9zdCB3b29kcw%3D%3D
And this is my notification sound: https://github.com/mozilla-b2g/gaia/blob/master/shared/resources/media/notifications/notifier_dropplet.opus
Comment on
Problems with borrowing Traits
What's the specific error that you are seeing?
Comment on
Would love to see this selection grow based on the many entries we saw earlier
Reply in thread
It should be possible to implement this for PWAs though. I.e. let the service worker respond with a custom manifest . it might just take some time until the browser picks up the change and updates the icon.
Comment on
I made a UserScript to embed redgif videos in Voyager
Reply in thread
It's super easy. Having a goal like this is the perfect opportunity to learn how to use git, make PRs and what the difference between TypeScript and JavaScript is.