Forgot your password?
typodupeerror

Submission + - Hosting.com launches AI application hosting platform (nerds.xyz)

BrianFagioli writes: AI tools have made it almost trivial to build applications, but deploying them safely is still very much a bottleneck. Hosting.com is trying to close that gap with a new platform that combines AI-assisted development, hosting, and built-in security into a single environment. It leans on Cloudflare Enterprise for CDN performance, AMD EPYC for compute, and Nova by WebPros for the development side, with support for apps created in tools like Cursor and Windsurf.

The pitch is convenience, especially for newer builders who can now generate code but may not fully understand how to run it in production. That raises an obvious question. Does bundling everything into one platform actually make things safer, or does it just make it easier to deploy questionable code faster? Either way, as more non-traditional developers start shipping AI-generated apps, platforms like this are likely to become more common.

Comment Why? Please, why? There are so many excellent ... (Score 2) 136

... Fantasy worlds out there that would look epic as a AAA fantasy blockbuster triology. Raymond E. Feist comes to mind. Bernard Hennen, Guy Gavrial Kay, Brandon Sanderson and countless other top-shelf fantasy authors and epic worlds. Can't we just leave LOTR be? It's gotten an excellent film adaption, one that will stand the test of time if it doesn't get diluted with trash like it already partially has. Please stop right now.

I think we may be truly witnessing the dawn of western culture and it effing hurts.

Comment Stupid(?) Astrophysics question: (Score 1) 27

Shouldn't the super-fast rotation of massive black holes counteract at least some of their gravity vertical to it's axis? Could that - at least hypothetically - eventually cause a black hole to break apart into bits of regular non-black-hole matter, if it spins fast enough?

Sorry if I'm sounding silly here, I'm a 5th-grader when it comes to astrophysics but perhaps someone with knowledge could offer some insight?

Submission + - Transporting antimatter on a truck is tricky ...

Qbertino writes: ... but the CERN Project "Antimatter in motion" just did it. For the first time in history researchers at CERN have transported 92 antiprotons on a truck in a specially designed magnetic enclosure. The test-drive went so well that the researchers spontaneously decided to go another round. One hard pothole could cause the antiprotons to exit their magnetic enclosure and be destroyed. The purpose of the experiment was to test the feasibility of transporting antimatter to other facilities in Europe to conduct further antimatter research. German news Tagesschau has a nice report.

Comment Binary to "Human Source Code" for reviewing ... (Score 1) 159

... is likely going to be the mid- to further out future of coding. Presumably de-compiling into some human-only language not intended for re-compiling is going to become more and more of a thing. No need to go through all the hoops of countless programming languages and frameworks just because some naked apes like to each turn their own little software world into a stack-religion.

Some form of containers is going to remain though. Especially to isolate problems and find bugs isolating logical components into different chunks is likely to remain a thing if source code isn't available.

Comment Banned PWAs? Where's the problem? (Score 1) 53

What APIs and functions exactly are being banned? And even if, migrating a PWA to something a little more old-school is trivial. Back in the day we even did async FEBE before XHTTPRequest even existed. Given, (re)loading zero-width frames to transfer data back and forth is quite steam-age Ghetto-style by todays standards, but the upside is it also works in browsers from 1998. 8-)

Submission + - Federal Cyber Experts Thought Microsoft's Cloud Was "a Pile of Shit." (propublica.org)

madbrain writes: Federal Cyber Experts Thought Microsoft’s Cloud Was “a Pile of Shit.” They approved it anyway.

To move federal agencies to the cloud, the government created a program known as FedRAMP, whose job was to ensure the security of new technology.

FedRAMP first raised questions about Microsoft's Government Community Cloud High s security in 2020 and asked Microsoft to provide detailed diagrams explaining its encryption practices. But when the company produced what FedRAMP considered to be only partial information in fits and starts, program officials did not reject Microsoft’s application. Instead, they repeatedly pulled punches and allowed the review to drag out for the better part of five years. And because federal agencies were allowed to deploy the product during the review, GCC High spread across the government as well as the defense industry. By late 2024, FedRAMP reviewers concluded that they had little choice but to authorize the technology — not because their questions had been answered or their review was complete, but largely on the grounds that Microsoft’s product was already being used across Washington.

Comment The Megacorps don't learn, do they? (Score 3, Interesting) 53

One of the big reasons I went with Android and not Apple when the mobile software craze started was that Apple was "We own you and the entire pipeline you use to bring software to end-users" and Google was "We don't care as long as you use our toolkits and services - which are totally FOSS btw."

This new totally-not-the-old-Google registration requirement is a hard turn-off for peer-group opinion leaders like myself. There are still FOSS Android alternatives, yes, so anybody doing Android development isn't suddenly entirely out in the cold, but this is a serious damper for my Google enthusiasm and I'm pretty sure others are thinking the same.

This is why I stuck with Web btw., even though Android Studio, Kotlin and Co. were very enticing. You never know when some corp. is going to pull out the rug from under you. That's why FOSS _and_ cross-platform (i.e. Web) is the only way I roll. Google can go all M1cros0ft and I'd barely miss a beat with any of my software projects.

Maybe this is the beginning of the end for Google? Couldn't say but it would be a shame. Of all Megacorps they were my favorite.

Comment My productivity is up 5x. Minimum. (Score 1) 40

I have multiple AI services in my recently purchased Jetbrains Junie subscription. Right now I'm using codex for my work. It feels like having a pro developer team of 10 API experts at your service and ready to answer any request on your code base or any complex question right away. I've already taken the back seat and let AI do must of the hard work as per my instructions andrequests.

It's absolutely amazing. I've been professionally doing webdev for 25 years now and never had this competent a colleague, mentor or even senior. I Review every change and submit on my behalf. I do sometimes catch surprisingly human slipups (a few collisions with super-strict property typings, plural and singular naming lapses, etc.) but the AI fixes those instantly when I point them out. AI in turn finds mine too and points them out and asks if it can fix them. The context window lasts the whole project and the suggestions AI makes for next steps and improvements are really good and even inspired. Seriously.

The best part is that I can discuss the more abstract aspects of the app. I swear I have never had this consistency of competences when discussing my work and projects with someone else. I do not need anybody else on my "team" anymore. Not for coding that is. True thing.

Here's an excerpt of my ongoing work discussion with AI ( this is real! ):

>>>>>>>
> Could you explain the reasoning behind implementing a Baseline service? Is this a good practice and if so, why?

> Short version: Yes, itâ(TM)s good practice here because you need the same Baseline metadata (file list + meta.name/type) in multiple places (Baseline routing + Mainview). A service is the cleanest way to share that data without duplicating fetch logic or tightly coupling components.

Why it makes sense:

â Single source of truth: one place to load and cache the list of Baselines.

â Decoupling: Mainview and Baseline donâ(TM)t need to know how to fetch or parse the index.

â Less duplication: avoids copy/paste HTTP logic in every component.

â Easier to evolve: if the index format changes, you update one place.

â Easier to test: you can stub the service.

Downsides:

â Slightly more code and indirection.

â If the data is only ever used in one component, a service would be unnecessary.

Given your setup (routing + entry generation), the service is a good fit. If you want, I can keep it simpler by moving the logic into Mainview and passing data down, but that couples the components more tightly.

If AI pans out only half of what we expect, the world will look very different in a few years time.

Slashdot Top Deals

"Now this is a totally brain damaged algorithm. Gag me with a smurfette." -- P. Buhr, Computer Science 354

Working...