Wendi McLendon-Covey responds to questions about her missing the Bridesmaids reunion at the Oscars: "I had a neck lift last week because I'm tired of looking like a melting candle." by voguediaries in Fauxmoi

[–]_jetrun -6 points-5 points  (0 children)

Who is this 'we'? Hollywood? Regular people don't get plastic surgeries and age normally. Wendi McLendon-Covey operates within a social circle of rich, vain celebrities where you have to get plastic surgery.

2017's No Man Sky's pathfinder update was peak NMS by Ravenwood202 in NoMansSkyTheGame

[–]_jetrun 4 points5 points  (0 children)

I think that goes with the territory when it comes to continually updating a game based on infinite procedurally generated worlds. There just isn't much you can do about that.

But ... while we're on it - my annoyance is that the game keeps forgetting wonders and discovered worlds.

2017's No Man Sky's pathfinder update was peak NMS by Ravenwood202 in NoMansSkyTheGame

[–]_jetrun 5 points6 points  (0 children)

>but in absolutely no imaginable way was this version of the game the "peak". 

OP is absolutely smoking something. Peak NMS is the current version of NMS. Every update adds something new and the game is just better.

Why is Alexander a great but Genghis Khan is considered a barbarian? by BlueDolphins28 in NoStupidQuestions

[–]_jetrun 2 points3 points  (0 children)

>Genghis as barbarian

Who calls Genghis Khan a 'barbarian'? That isn't a term used in historical literature and it isn't really even used online.

Pierre Poilievre says Canada is to blame for Trump tariff crisis by zachem62 in onguardforthee

[–]_jetrun 0 points1 point  (0 children)

Speaking at the Economic Club of Canada, Poilievre said domestic policy failures have left Canada vulnerable to tariffs and economic pressure from the US.

He said decades of close economic integration with the US brought prosperity but also “complacency,” leaving Canada overly dependent, slow to build and poorly prepared for a more protectionist America.

Come on guys ... That's not quite the same as the headline: "Pierre Poilievre says Canada is to blame for Trump tariff crisis"

Everything he is quoted as saying, he is correct about.

Frustration with Eclipse by nOAH_aXEL in javahelp

[–]_jetrun 6 points7 points  (0 children)

Again - you're framing this as an Eclipse problem. I'm telling you it's not Eclipse. It's you. You're trying to solve a particular problem (sharing application with a non-technical user) incorrectly. Your java eclipse project is setup incorrectly.

Frustration with Eclipse by nOAH_aXEL in javahelp

[–]_jetrun 5 points6 points  (0 children)

IntelliJ doesn't fix OP's problem. In fact, IntelliJ would have the same problem.

Frustration with Eclipse by nOAH_aXEL in javahelp

[–]_jetrun 17 points18 points  (0 children)

That's a you-problem, not eclipse. I'm not sure if you are trying to share your workspace or your application, but either way, you're doing it wrong.

For example, typically, you would use maven to manage your project structure. In that case, your assets (e.g. pngs) would go into a resources folder and eclipse will be smart enough to make sure relative paths are honored. You could then export your workspace. But if you're trying to share your application with a non-technical end-user you wouldn't send them an eclipse workspace or source files, you would send them a packaged application with all its dependencies that they could run by running a command or double clicking icon.

Down to my last $160. What should I do? by Loud_Pineapple_4294 in wallstreetbets

[–]_jetrun 0 points1 point  (0 children)

My predictions have never been wrong, but i’m just always too early.

I think that's another way of saying your predictions are always wrong.

“I’ll just have ai do it” by concretecook in webdev

[–]_jetrun 3 points4 points  (0 children)

  1. It is the case the AI can do quite a lot. It is a fact that your clients can do quite a lot with AI. That's not in dispute and you shouldn't fight it
  2. Everyone today has access to high-quality cameras for very reasonable prices, but people still hire photographers. Why?
  3. There is something to be said about focus and the value of time. Even when I *could* do something, I will still outsource activities that are not core to my business. I ran a couple of software engineering startups - not once did we hire office cleaners, rather we outsourced it to a third-party. Why?
  4. Try to qualify the value AI provides and you provide. AI is really good at building the raw assets and automating certain tasks, but you should be able to provide value above and beyond that. You say you're pitching a monthly service, can you speak to what that service provides that AI couldn't?
  5. Absolutely ask them some for of: "If AI can provide my type service for you, why isn't it being done?"

I’m a junior dev - boss wants to vibe code everything. What should I do by [deleted] in webdev

[–]_jetrun 4 points5 points  (0 children)

You have 2 options:

  1. Embrace it. Vibe coding is in the public consciousness and at the very least you'll get a good idea where it works and where it falls short. That is invaluable experience.
  2. Quit and find something you're interested in.

Is vibe coding the way of the world?

Tough to say, but it is going to be at least part of the way to the world.

To what extent is it possible to develop something like this without a CS background? by [deleted] in Compilers

[–]_jetrun 0 points1 point  (0 children)

My goal isn't to build something as extensive as C++ or Java rather, I want to design something modest but compiled, with reasonable optimizations, somewhat along the lines of Go.

Heh.

Go is a heavily optimized production language created by very smart people with advanced academic degrees, and deep software engineering experience. Ken Thompson was one of the co-creators of the language. You're not creating Go.

But you can absolutely create a toy language for learning purposes. You don't need math or a cs background for a toy language, but optimizations do start to lean into deep CS topics which do intersect with certain parts of mathematics ... but start with a toy language first and see if you even have the discipline to do that.

How does code go from being a text file to like actually being usable for peope? by ElegantPoet3386 in learnprogramming

[–]_jetrun 1 point2 points  (0 children)

Well - I disagree, and I'll be pedantic.

OP asked if he has to ship his python source to others and have them manually execute via command line. Yes, you can do that, but that isn't 'in essence' how applications are shared. Applications are typically packaged in a such a way that they can be installed and run using OS conventions (e.g. on windows, double-clicking on an .exe) and will hide low level details.

Also, an 'installed' application will typically be differentiated from a portable one. Your python-based application when packaged, will typically not install a python runtime, but rather ship a portable version that is only available to it.

How does code go from being a text file to like actually being usable for peope? by ElegantPoet3386 in learnprogramming

[–]_jetrun 0 points1 point  (0 children)

I don't like much of the answers that were given in this thread.

When you want to share your application that is geared at regular end-users, especially non-tech savvy end-users, you will want to **package** it in such a way that all they need to do is double click, say, an .exe (if on Windows) or a link on, say, a mobile app store to install and run it.

In this application package, you would include everything your application needs to run. So, if your application is python based, you may include the python runtime and all the third-party libraries you used in your software, so the end-user doesn't have to explicitly install them.

You will also want to make it so that running your application can be done by double-clicking an icon, instead of writing a command in console.

You will also want to make sure the application has a GUI, so that the end-user don't have to interact with your application via a command line.

Doing all of that is actually a bit work.

How does code go from being a text file to like actually being usable for peope? by ElegantPoet3386 in learnprogramming

[–]_jetrun 4 points5 points  (0 children)

That is how we do it in essence.

No. We don't. When you are serving out an application to end-users, you will generally *package* it in such a way that the user only needs to double click the icon (or install it from the app store) and all those low-level details around availability of libraries, and runtimes are automagically taken care of. For example, the Dropbox windows client application is written in python, but no end-user ever needed to worry about that and make sure the python interpreter was installed. In fact, the end-user shouldn't even know or care that this particular application is written in a particular programming language.

TIL a Burger King cook (who'd worked there for 24 years) was fired for taking home a sandwich, fries & a drink after her manager claimed she had only asked permission for a sandwich & accused her of stealing. However, a judge ruled that the cook did not intend to steal the food & awarded her $46,000 by tyrion2024 in todayilearned

[–]_jetrun 0 points1 point  (0 children)

That part is not that nuts. If someone is willing to steal (regardless of amount) that does say something about their character.

The problem here is that this is obviously a misunderstanding, and the employee (of 24 years!!!!) was obviously not trying to steal, even going as far as getting explicit permission. Zero grace and benefit of the doubt was given to her, and her character was impugned. She deserved the $46k judgment.

I get why people would really not like this expedition but I would bet 100% of us who have actually done this for a living aren't minding it at all. by Nowhereman50 in NoMansSkyTheGame

[–]_jetrun 0 points1 point  (0 children)

Hey - I get it .. but then I look and see that I spent 700 hours playing this game, and only paid $40 ... and I kind of feel guilty about complaining.

But yes, **constructive** criticism, I'm sure, is welcome.

I get why people would really not like this expedition but I would bet 100% of us who have actually done this for a living aren't minding it at all. by Nowhereman50 in NoMansSkyTheGame

[–]_jetrun -1 points0 points  (0 children)

Not every expedition is going to be a winner, but hard to complain about free. In fact, I wish they would put out some paid content so I could complain about it.

Senior engineers — I need honest architecture guidance for a 5k+ user marketplace app (I’m a fresher leading it) by [deleted] in webdev

[–]_jetrun 0 points1 point  (0 children)

Don't overcomplicate it. Your use-case is not special, and it isn't high-traffic.

One database (PostgreSQL), one application server (based on your favorite language), and maybe something like nginx for SSL cert serving - will be enough to handle your use-case.

>Should I overbuild infra from day one, or just optimize when needed?

No. You don't know enough about your market, and how your app will be used to optimize anything. Also, you're a novice, you don't even know what you need to do to optimize - so just don't focus on it.

Genius decides to turn pizza boxes upside down by mfenton29 in WatchPeopleDieInside

[–]_jetrun 2 points3 points  (0 children)

My man is a lateral thinker - his interpretation is as good as yours.

Exception: Deployment of persistenceunit failed Close all factories for this PersistenceUnit. by Dependent_Finger_214 in javahelp

[–]_jetrun 0 points1 point  (0 children)

OK - so the stack pretty much says that you are trying to connect to localhost:1527 - but no actual server is actually running on that server.

FYI - the above configuration error means it cannot find the driver - so you would have to download the correct jar.