You are here

Info World

Subscribe to Info World  feed Info World
Updated: 4 hours 22 min ago

Node.js 22 arrives, backs ECMAScript modules

Wed, 04/24/2024 - 16:42

Node.js 22, the latest version of the popular JavaScript runtime, has arrived, featuring require() support for ECMAScript modules, an improved WebSocket client, and an updated version of the Google V8 JavaScript engine.

Announced April 24, version 22 of the event-driven, asynchronous runtime can be downloaded from Nodejs.org. The release adds require() support for synchronous ECMAScript module graphs under the flag: --experimental-require-module. If this flag is enabled and the ES module meets a couple of requirements, require() will load the requested module. Additionally, Node.js 22 includes an experimental feature for the execution of scripts from package.json with the CLI flag: node --run <script-in-package-json>.

To read this article in full, please click here

Categories: Technology

Snowflake’s open-source Arctic LLM to take on Llama 3, Grok, Mistral, and DBRX

Wed, 04/24/2024 - 08:34

Cloud-based data warehouse company Snowflake has developed an open-source large language model (LLM), Arctic, to take on the likes of Meta’s Llama 3, Mistral’s family of models, xAI’s Grok-1, and Databricks’ DBRX.

To read this article in full, please click here

Categories: Technology

OpenAI ramps up enterprise support with a focus on security, control, and cost

Wed, 04/24/2024 - 06:57

OpenAI, known for its large language model ChatGPT, is making a strong push for the enterprise market. In what could intensify competition among enterprise AI players, the company announced a slew of new features designed to give businesses more control, enhance security, and offer cost-effective options when integrating OpenAI’s AI technologies in their operations.

“We’re deepening our support for enterprises with new features that are useful for both large businesses and any developers who are scaling quickly on our platform,” OpenAI said.

To read this article in full, please click here

Categories: Technology

Wasmer unveils Python to Wasm compiler

Wed, 04/24/2024 - 03:00

WebAssembly runtime maker Wasmer has unveiled py2wasm, a Python-to-WebAssembly compiler that transforms Python programs to the WebAssembly (aka Wasm) binary instruction format.

Using a fork of the Nuitka Python compiler, py2wasm converts Python programs to Wasm, allowing them to run without interpreter overhead. Introduced April 18, py2wasm addresses a situation in which the performance of Python programs in WebAssembly has been less than ideal, Wasmer founder and CEO Syrus Akbary wrote in a blog post. Akbary said that py2wasm gets about 70% of native Python speed, and is about 2.5x to 3x faster than the Python interpreter.

To read this article in full, please click here

Categories: Technology

How RAG completes the generative AI puzzle

Wed, 04/24/2024 - 03:00

Generative AI entered the global consciousness with a bang at the close of 2022 (cue: ChatGPT), but making it work in the enterprise has amounted to little more than a series of stumbles. Shadow AI use in the enterprise is sky high as employees are making day-to-day task companions out of AI chat tools. But for the knowledge-intensive workflows that are core to an organization’s mission, generative AI has yet to deliver on its lofty promise to transform the way we work.

To read this article in full, please click here

Categories: Technology

Intro to Extism: A WebAssembly library for extendable apps and plugins

Wed, 04/24/2024 - 03:00

WebAssembly was originally designed to give in-browser web applications a way to run portable, sandboxed, high-performance binaries. As WASM matures beyond the browser, new uses for the technology are emerging. Using WASM to build programmability and extensibility into applications is one use case that is gathering steam.

The Extism software library lets you write programs that can interface with extensions written in WebAssembly. Extism handles the data and function-calling interface between code written in your host application and the WASM extensions. This lets you focus on writing the functionality in your application and extensions, rather than dealing manually with WASM's data types or calling conventions.

To read this article in full, please click here

Categories: Technology

5 ways to use JavaScript promises

Wed, 04/24/2024 - 03:00

Promises are a central mechanism for handling asynchronous code in JavaScript. You will find them in many JavaScript libraries and frameworks, where they're used to manage the results of an action. The fetch() API is one example of promises at work. As a developer, you might not be familiar with creating and using promises outside of an existing product, but it's surprisingly simple. Learning how to create promises will help you understand how libraries use them. It also puts a powerful asynchronous programming mechanism at your disposal.

Asynchronous programming with promises

In the following example, we're using a Promise to handle the results of a network operation. Instead of making a network call, we just use a timeout:

To read this article in full, please click here

Categories: Technology

Oracle JDK Mission Control 9 adds dark theme, configurable JVM browser

Tue, 04/23/2024 - 13:30

Oracle has released JDK Mission Control (JMC) 9, an update to the tool kit for monitoring, managing, profiling, and troubleshooting Java applications that adds a dark theme and makes the frequency of JVM checks configurable.

The most significant change is that JMC now must use JDK 17 or later to run.

JMC 9 was unveiled on April 21. Binaries can be downloaded from oracle.com. While JMC 9 requires JDK 17 or later, it still can read Java Flight Recorder (JFR) recordings from JDK 7u40 or later. JMC and the JFR profiling and event collection framework together offer a tool chain to collect runtime information for after-the-fact analysis.

To read this article in full, please click here

Categories: Technology

Microsoft unveils Phi-3 family of small language models

Tue, 04/23/2024 - 12:00

Microsoft has introduced a new family of small language models (SLMs) as part of its plan to make lightweight yet high-performing generative artificial intelligence technology available across more platforms, including mobile devices.

The company unveiled the Phi-3 platform in three models: the 3.8-billion-parameter Phi-3 Mini, the 7-billion-parameter Phi-3 Small, and the 14-billion-parameter Phi-3 Medium. The models comprise the next iteration of Microsoft’s SLM product line that began with the release of Phi-1 and then Phi-2 in rapid succession last December.

To read this article in full, please click here

Categories: Technology

Microsoft unveils Pi-3 family of small language models

Tue, 04/23/2024 - 12:00

Microsoft has introduced a new family of small language models (SLMs) as part of its plan to make lightweight yet high-performing generative artificial intelligence technology available across more platforms, including mobile devices.

The company unveiled the Phi-3 platform in three models: the 3.8-billion-parameter Phi-3 Mini, the 7-billion-parameter Phi-3 Small, and the 14-billion-parameter Phi-3 Medium. The models comprise the next iteration of Microsoft’s SLM product line that began with the release of Phi-1 and then Phi-2 in rapid succession last December.

To read this article in full, please click here

Categories: Technology

Java proposal would add exception case to switch

Tue, 04/23/2024 - 09:30

The readability, maintainability, and usability of switch statements and expressions in Java would be improved by a proposal to allow exceptions to be handled in the switch block.

The current OpenJDK proposal, “Exception handling in switch (Preview),” would be part of the Standard Edition of Java, although no specific version Java SE has been designated yet as the recipient. Specifically, the proposal calls for enhancing switch so that exceptions thrown by the selector (the e in switch (e) …) can be handled in the switch block.

Goals of the plan, which was created January 12 and updated April 19, include improving readability and maintainability by allowing switch to concisely handle all possible outcomes of evaluating the selector, and streamlining the use of APIs that throw checked exceptions, when used by the selector of a switch statement or expression.

To read this article in full, please click here

Categories: Technology

AWS moves Amazon Bedrock’s AI guardrails, and other features to general availability

Tue, 04/23/2024 - 06:06

Amazon Web Services (AWS) is moving some features of its generative AI application-building service, Amazon Bedrock, to general availability, the company said on Tuesday.

These features include guardrails for AI, a model evaluation tool, and new large language models (LLMs).

To read this article in full, please click here

Categories: Technology

The cloud is not a slam dunk platform for generative AI

Tue, 04/23/2024 - 03:00

As I’ve been saying for the past year or so, cloud conferences have become generative AI conferences, as have data center conferences, databases conferences, and you name it. It’s clearly more than just a trend—it’s a game-changing push. But we’ve seen this happen enough times in the past 30 years to know nothing is guaranteed to be a true trend. Remember “push technology?” Exactly.

As enterprises rush headlong into generative AI, selecting an appropriate infrastructure is critical for optimal performance and cost-effectiveness. Comparing cloud computing and traditional on-premises solutions reveals some interesting things when cloud platforms host generative AI applications. These weaknesses may mean public cloud computing platforms are not a slam dunk when it comes to the best place for generative AI systems to live. Let’s explore this.

To read this article in full, please click here

Categories: Technology

The dawn of intelligent and automated data orchestration

Tue, 04/23/2024 - 03:00

The exponential growth of data, and in particular unstructured data, is a problem enterprises have been wrestling with for decades. IT organizations are in a constant battle between ensuring that data is accessible to users, one the one hand, and that the data is globally protected and in compliance with data governance policies, on the other. Added to this is the need to ensure that files are stored in the most cost-effective manner possible, on whichever storage is best at that point in time.

The problem is there is no such thing as a one-size-fits-all storage platform that can serve as the shared repository for all of an organization’s data, especially across multiple locations. Instead, there are myriad storage choices available from as many vendors, each of which is best suited for a particular performance requirement, access protocol, and cost profile for each phase of the data’s life cycle. Users and applications simply want reliable, persistent access to their files. But data policies inevitably require files to move to different storage platforms or locations over time. This creates additional cost and complexity for IT and disrupts user workflows. 

To read this article in full, please click here

Categories: Technology

Why we suck at estimating software projects

Tue, 04/23/2024 - 03:00

Okay, so I’m just going to go ahead and say it:

It is impossible to accurately estimate a software project of any significance.

Now, a non-trivial number of you are going to read that sentence and think I’m nuts.  And maybe I am. But someone has to just say what we all know to be true but don’t want to admit.

Look, there have been countless books written, innumerable conferences held, untold consulting hours purchased, and endless blog posts written on how to be better at estimating software projects. I get it. We all work earnestly to give our best effort in an attempt to placate hungry bosses who want to know when a new feature will be ready. We all set deadlines based on a conference date and not when the software will actually be ready.

To read this article in full, please click here

Categories: Technology

Focusing on the wrong open source issues

Mon, 04/22/2024 - 03:00

If you follow open source topics on X/Twitter, you can be forgiven for believing the biggest issue in open source today is companies relicensing their open source code under different licenses. Thierry Carrez, the vice chairperson of the OSI, for example, recently issued a dire warning: “single vendor is the new proprietary.” Sounds terrible, right? I mean, once you forget that the vast majority of software that you and I use every day on our phones, laptops, servers, etc., is proprietary. (Yes, with plenty of open source buried inside and effectively “relicensed.”)

To read this article in full, please click here

Categories: Technology

7 innovative ways to use low-code tools and platforms

Mon, 04/22/2024 - 03:00

Some developers and business leaders believe that low-code is only for small, lightly used applications such as replacing spreadsheets and building dashboards. “These tools, in general, aren’t well suited to more advanced applications,” says Steve Jones, devops advocate at  Red Gate Software. With heavier use and more complex data manipulation requirements, he says, “they often start to fail and cause workload and performance issues.”

I've used low-code and no-code platforms for over two decades and have written extensively about them, including articles on how generative AI is changing low-code, using low-code to accelerate application modernization, and how no-code drives innovation. I've also discussed the eight signs your low-code platform is overpromising and underdelivering on business needs.

To read this article in full, please click here

Categories: Technology

Android 15 reaches beta

Fri, 04/19/2024 - 14:34

Google has released the first beta of the Android 15 mobile OS for developers and early adopters. This version of the Android operating system emphasizes productivity, user privacy and security, and making apps more widely visible and accessible.

The beta was released on April 11 and a final release is expected sometime in August. Apps targeting Android 15 are displayed edge-to-edge by default, so they no longer need to explicitly call Window.setDecorFitsSystemWindows (false) or enableEdgetoEdge to show content behind system bars. Android builders recommend still calling enableEdgetoEdge() to get the edge-to-edge experience on earlier Android operating systems.

To read this article in full, please click here

Categories: Technology

Meta eyes LLM dominance with new Llama 3 models

Fri, 04/19/2024 - 04:45

Facebook, Instagram, and WhatsApp parent Meta has released a new generation of its open source Llama large language model (LLM) in order to garner a bigger pie of the generative AI market by taking on all model providers, including OpenAI, Mistral, Anthropic, and Elon Musk’s xAI.

“This next generation of Llama demonstrates state-of-the-art performance on a wide range of industry benchmarks and offers new capabilities, including improved reasoning. We believe these are the best open source models of their class, period,” the company wrote in a blog post, adding that it had set out to build an open source model(s) that is at par with the best performing proprietary models available in the market.

To read this article in full, please click here

Categories: Technology

AWS Snowmobile drives into the sunset

Fri, 04/19/2024 - 03:00

Amazon Web Services (AWS) has slowly and silently phased out its Snowmobile service—an offering launched at its annual AWS re:Invent conference in 2016 to help enterprises move data from their on-premises servers to the cloud provider’s data centers to accelerate their migration to the public cloud.

The Snowmobile service, essentially an eighteen-wheel truck and trailer or “big rig” with 100 petabyte data storage and network connectivity, was commissioned by AWS then-CEO Andy Jassy (now CEO of Amazon) to help enterprises who wanted to transfer vast amounts of data, measured in the petabytes or exabytes.

To read this article in full, please click here

Categories: Technology

Pages