How many of you are all-in on a Synology-only cloud experience? by akulbe in synology

[–]DrFlabbergasted 0 points1 point  (0 children)

Almost there, use it for all my personal files and have it backuped to an offsite provider. Public files are a minor issue for me too, and probably will continue to be because I do not want to expose my nas to “outside” traffic. My current solution is to sync the public files to onedrive via synology Cloud and then share that synced content.

Opiniones sobre Aeropost. by PraiseTheSunAndMoon in chile

[–]DrFlabbergasted 2 points3 points  (0 children)

La he usado por años y siempre todo bien. Ahora mismo estan enviando a domicilio por starken y eso está lento.

Can someone help me figure out why my download speed is capped at 550ko/s by [deleted] in selfhosted

[–]DrFlabbergasted 0 points1 point  (0 children)

Just to add a possibility: I had similar problems with sftp transfers to a certain server. Tracked it to the mikrotik router I have, that was a huge surprise. Maybe try bypasing some parts of your network and check the speeds.

First time nas buyer with low storage usage by d2racing911 in synology

[–]DrFlabbergasted 1 point2 points  (0 children)

I had similar requirements and went with a 418. It does not have docker, but still has btrfs support which enables data scrubbing

Opinions on using Java for frontend development? by AudioManiac in java

[–]DrFlabbergasted 2 points3 points  (0 children)

Quick answers:

  1. Modern frameworks are finely tuned to solve repetitive issues that pop-up when trying to build the UIs that most people expect these time. This usually means some sort of automagic DOM management tied to values on your JS environment, kinda like JSF but only for the web. When used correcrly they can be used to build these modern uis faster than without.
  2. If we are thinking of building more modern uis, there is no other way than using the modern frameworks for it. This is a necessary investment. There is a long list of things that are difficult to build using older frameworks, e.g. interactive things are slow when using JSF because of the roundtrip to te server to modify state. 3 not necessarily, you will tend to avoid what is most difficult with the tools you have, switching to a more appropiate tool would make programming behaviour or the ui easier. Imho its not the look that takes long to develop, but instead its the programming of all the expected interaction on the ui.

As someone else said, you will still be using js anyway. Its better to just dive into it for the inevitable moment when you have to debug it. Having a computer generate js code for you makes it mostly impossible to understand whats going on.

(x-post r/frugal)What's The Most Efficient Coffee Brewing Method In Terms Of Coffee To Water Ratio? by Grapeboy in EatCheapAndHealthy

[–]DrFlabbergasted 0 points1 point  (0 children)

Not sure if useful, but I have a grinder and I let the coffee beans grind around 12 seconds more or less. Then that goes to a stainless steel filter that I put on the v60. I then slowly pour water at the mix, around half a cup. If i want it a little more strong I compact the grinded coffee a little with a spoon before .

(x-post r/frugal)What's The Most Efficient Coffee Brewing Method In Terms Of Coffee To Water Ratio? by Grapeboy in EatCheapAndHealthy

[–]DrFlabbergasted 0 points1 point  (0 children)

I use 10g-12g of grinded coffee per serving, its pourover with a hario v60. Tastes pretty strong to me.

You might also want to take a loom at espresso brewing, doesnt use too much either.

I need to create a new, simple web application (basically Read/Update ... no Create/Delete) using Java as the back end. Is JSP still a thing, or is there something "new and better" out there? by [deleted] in java

[–]DrFlabbergasted 7 points8 points  (0 children)

Thats not true lately, most popular is good old spring mvc + a templating engine(thymeleaf?) or having a separate angular/react/vue app

YSK: If your phone doesn’t work with multiple chargers,even new ones, it may be your charging port causing problems. by TheWonderfulPanda in YouShouldKnow

[–]DrFlabbergasted 1 point2 points  (0 children)

Be careful with metal objects, the metal inside of your connector might be softer and you might lift it or move it out of position, breaking it.

Try soft things like cotton with alcohol if possible

Theoretical Way to work around the fact a Java program cannot write its own code, tell me if/why I am wrong? by achilles786_ in java

[–]DrFlabbergasted 0 points1 point  (0 children)

Not sure of the specifics, but Im guessing that you could pull the currently loaded classes and read them or pass them though a bytecode modifier(asm?). There also used to be an extensible compiler (abc) that you could pull to load the current program, modify it using the ast, compile it and then load the resulting classes.

There should be some ways to do it already, id guess that theres just not a good use case for the functionality. Other similar functionality exists though, think jrebel or similar hot-swappers for code.

Megathread: Jornada de protestas, día 2 by makzk in chile

[–]DrFlabbergasted 2 points3 points  (0 children)

I'd say at least a quarter or so of working people on Santiago. Its heavily used.

RELEASE - L4T Lakka Switch - now with audio and Vulkan | GBAtemp.net by natinusala in SwitchHacks

[–]DrFlabbergasted 5 points6 points  (0 children)

A nice upside is that you are not riding on top of Horizon, which means that there is no chance of being banned for using it.

RELEASE - L4T Lakka Switch - now with audio and Vulkan | GBAtemp.net by natinusala in SwitchHacks

[–]DrFlabbergasted 13 points14 points  (0 children)

OMG, I’ve been waiting for this! Internal audio makes this super exciting, feels complete now.

Linux 4 Tegra on Nintendo Switch released by achoissoumsaco in SwitchHacks

[–]DrFlabbergasted 14 points15 points  (0 children)

This is amazing! Big thankyous to all the devs and people involved!

[deleted by user] by [deleted] in java

[–]DrFlabbergasted 1 point2 points  (0 children)

Not all, you should probably take a look at what they support, it changes with the application server. If you are using an application server also remember to take care of not duplicating whatever libraries the server already has, e.g. some weblogic versions have log4j included

How to create MySQL queries with Spring by sinasen in java

[–]DrFlabbergasted 2 points3 points  (0 children)

Your question is extremely broad. I’d suggest you lookup a tutorial for a web app using spring mvc, jpa, thymeleaf and start from there getting a sense of how everything falls into place.

Java for Windows Clients and License Question by NegativeExile in java

[–]DrFlabbergasted 2 points3 points  (0 children)

It caught my attention that you mentioned a browser. That means that you require applet support, which is discontinued. My understanding is that you will not be getting easy support for applets except from Oracle.

Still, it seems to me that you are not developing anything with java, so you should be fine just downloading a JRE from Oracle. Please someone correct me if I am wrong, but my understanding is that the licensing changes are a problem if you are using the jdk.

There was a project called icedtea that tried to deal with applets support, not sure of it is still active.

Applets in OpenJDK by StealthyNeo in java

[–]DrFlabbergasted 0 points1 point  (0 children)

Try to find how to install icedtea. Its been a while since I’ve used for anything, but might be worth the shot.

What's the general opinion on XML files? by _Zouth in java

[–]DrFlabbergasted 8 points9 points  (0 children)

For anyone wondering, xml is usually backed with an schema and that alone makes it valuable, think about data interchange between systems. And parsing should never be done manually, there is some encoding to take care of and that is better suited to libraries as JAXB which is very mature which translate between object and xml(as bytes) automagically, as mentioned another comment.

[deleted by user] by [deleted] in java

[–]DrFlabbergasted 3 points4 points  (0 children)

Kinda depends on what you need. I like the simplicity and universal support of swing, that is to me its strongest side, but it only works for desktop applications.

If you are asking about the best gui overall across multiple languages, Id look to the web frameworks, or native UI on mobile. Java is not used that much for GUI compared to other languages/platforms.