You can use discord from the browser, can you screenshare from that version?
- 0 Posts
- 67 Comments
eluvatar@programming.devto
Programmer Humor@programming.dev•Something something case-insensitive file something...
2·1 year agoDoes Mac suffer the same bugs as windows in this case?
eluvatar@programming.devto
Linux@programming.dev•People who have installed Linux on their parents computer, how did it go? Which distro do you recommend? Any tips?
7·2 years agoPoorly, I setup Mint while I was in town, a couple weeks later it won’t boot, can’t troubleshoot that kind of thing from out of state, so… Yeah
eluvatar@programming.devto
Programmer Humor@programming.dev•Not really sure whether S-expressions or Python indentation-based scoping get more hate...
5·2 years agoThe number of times I move code around and can just press a hotkey to fix indentation though. Not possible with Python.
eluvatar@programming.devto
Programmer Humor@programming.dev•Full Stack Programmer Doing Frontend
3·2 years agoYeah, it’s accurate both ways
Postgres doesn’t need that much ram IMO, though it may use as much as you give it. I’d reduce it’s ram and see how performance changes.
eluvatar@programming.devto
Programmer Humor@lemmy.ml•good luck little buddy, see you in 5 years
1·2 years agoMan I wish OmniSharp didn’t suck. I built an extension with VSCode and got excited about what I could build, looked into OmniSharp again and gave up when it was crashing without me even throwing a big project at it.
eluvatar@programming.devto
Linux@lemmy.ml•Why does distrowatch keep going down every now and then?
131·2 years agoIt’s blinking
eluvatar@programming.devto
Programming@programming.dev•How I reduced the size of my very first published docker image by 40% - A lesson in dockerizing shell scripts
16·2 years agoYeah in a PR I would probably reject this for being too clever. Before clicking I expected the image to start at 100mb or more, but it’s already under 50, who cares at this point?
eluvatar@programming.devto
Programmer Humor@lemmy.ml•What Imperative Programming Feels Like
3·2 years agoI mean it could just always return the same thing…
eluvatar@programming.devto
Selfhosted@lemmy.world•File server with on-demand sync, preserve the filesystem, and runs without external DB?English
1·2 years agoWhy no real db? Those other 2 features make sense, but if the only option you can use sacrifices the 3rd option then it seems like a win. Postgres is awesome and easy to backup, just a single command can backup the whole thing to a file making it easy to restore.
1 is just not true sorry. There’s loads of stuff that only work as root and people use them.
About the trust issue. There’s no more or less trust than running on bare metal. Sure you could compile everything from source but you probably won’t, and you might trust your distro package manager, but that still has a similar problem.
eluvatar@programming.devto
Android@lemmy.ml•Can I install different versions of an App in both Home and Work Profile
5·2 years agoI think it shares the APK, for example when you install an app from the app store the first time it downloads and installs it, but when you install it again from the work profile it doesn’t need to download it.
That said if you are modding the app, if you change the app id (might be called something else), then android might be ok because it thinks they’re different apps entirely avoiding the problem.
eluvatar@programming.devto
Programming@programming.dev•Falsehoods Programmers Believe About Names
54·2 years agoExcept lots of email services won’t take a technically correct email anyway.
eluvatar@programming.devto
Programming@programming.dev•Why isn't there a way to make near-native desktop UIs that's similar in ease to browser and electron UIs?
4·2 years agoQML on the other hand is awesome imo.
eluvatar@programming.devto
Jellyfin: The Free Software Media System@lemmy.ml•Help with offgrid (power but no internet) streamingEnglish
1·2 years agoI use a Chromecast with Google TV, but any Google TV device would work. Run Plex on my computer and it just works.
eluvatar@programming.devto
Programming@programming.dev•Does C# (or any other languages) have an official style guide like python has pep8?
11·2 years agoThere’s
dotnet formatwhich will format your code. You can configure it with editorconfig
I was trying to think of a good real world example, but couldn’t think of anything. But if you were to think of it as Google docs. You could just copy every doc to change it, but if you’ve shared it with people then you will have to share it again. It also takes up a whole lot more space to do that, sure you could delete those old ones but that takes some work too.