this post was submitted on 22 Jun 2024
291 points (98.7% liked)

Programmer Humor

19149 readers
1220 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
(page 2) 50 comments
sorted by: hot top controversial new old
[–] kuberoot@discuss.tchncs.de 3 points 2 months ago (1 children)

This is from before my times, but... Deploying an app by uploading a pre built bundle? If it's a fully self-contained package, that seems good to me, perhaps better than many websites today...

[–] dan@upvote.au 2 points 2 months ago* (last edited 2 months ago)

That's one nice thing about Java. You can bundle the entire app in one .jar or .war file (a .war is essentially the same as a .jar but it's designed to run within a Servlet container like Tomcat).

PHP also became popular in the PHP 4.x era because it had a large standard library (you could easily create a PHP site with no third-party libraries), and deployment was simply copying the files to the server. No build step needed. Classic ASP was popular before it, and also had no build step. but it had a very small standard library and relied heavily on COM components which had to be manually installed on the server.

PHP is mostly the same today, but these days it's JIT compiled so it's faster than the PHP of the past, which was interpreted.

[–] Qubbe@programming.dev 2 points 2 months ago

FTP Explorer all the way! Preferred that to filezilla... I mean it didn't support sftp but I liked it.

[–] bravesilvernest@lemmy.ml 2 points 2 months ago (1 children)
load more comments (1 replies)
[–] Seasm0ke@lemmy.world 1 points 2 months ago

Cries in REST API

[–] bigboismith@lemmy.world 1 points 2 months ago (3 children)

This is how I deployed web servers in school like 3 years ago.

[–] expr@programming.dev 1 points 2 months ago

Yeah it's not all that uncommon in school, just increasingly uncommon in industry.

load more comments (2 replies)
[–] laserm@lemmy.world 1 points 2 months ago

I deploy my apps with SFTP command line .

[–] Anticorp@lemmy.world 1 points 2 months ago

True story, bruh.

load more comments
view more: ‹ prev next ›