Showing headlines posted by bob

« Previous ( 1 ... 232 233 234 235 236 237 238 239 240 241 242 ... 1156 ) Next »

Datasheet: Mini-ITX and Pico-ITX SBCs

(Circuit Cellar article) Based on the small-sized versions of the ITX motherboard form factor, Mini-ITX and Pico-ITX keep growing in popularity and in embedded market share. This Datasheet section updates readers on this technology trend and provides a product album of representative Mini-ITX and Pico-ITX SBCs.

Student Linux club refurbishes computers to support distance learning

  • Opensource.com (Posted by bob on Jul 22, 2020 7:28 PM EDT)
  • Groups: Linux; Story Type: News Story
This article is co-written by Cam Citrowske, a member of the Penguin Corps. read more

6 ways to contribute to an open source alternative to Slack

  • Opensource.com (Posted by bob on Jul 22, 2020 6:14 PM EDT)
  • Groups: Cloud; Story Type: News Story
Mattermost is a messaging platform built in Go and React for DevOps teams. You can discuss topics in channels, private groups, or one-to-one with rich Markdown formatting and easily share code snippets with syntax highlighting in more than 50 programming languages. You can self-host or deploy on a private cloud to connect in-house systems with plugins, Slack-compatible integrations, and extensive API support. read more

The feature that makes D my favorite programming language

  • Opensource.com (Posted by bob on Jul 22, 2020 10:48 AM EDT)
  • Story Type: News Story
Back in 2017, I wrote about why the D programming language is a great choice for development. But there is one outstanding feature in D I didn't expand enough on: the Universal Function Call Syntax (UFCS). UFCS is a syntactic sugar in D that enables chaining any regular function on a type (string, number, boolean, etc.) like its member function of that type. read more

How to Install LiteCart e-commerce platform on Ubuntu 20.04 LTS

LiteCart is an open-source and lightweight e-commerce platform in written in PHP, HTML 5, and CSS 3. It is simple, easy to use, and has an elegant and simple admin panel. In this tutorial, we will show you how to install LiteCart shopping cart platform on Ubuntu 20.04.

State-of-the-art crypto goes post-quantum

  • Opensource.com (Posted by bob on Jul 22, 2020 12:30 AM EDT)
  • Story Type: News Story
Secrecy is one of the most important functions of computer science. Should electronic secrecy suddenly collapse into total transparency, we could not engage in electronic commerce, we would be unable to communicate privately, our past communications would be globally visible, and we would be critically impacted in myriad ways that would fundamentally change our ability to work and live. Consider the time we spend every day maintaining our secrecy with passwords, lock patterns, wireless fobs, and biometrics that restrict access to protect us and the ramifications of their failure. read more

InitContainers in Kubernetes

  • Howtoforge Linux Howtos und Tutorials (Posted by bob on Jul 21, 2020 7:33 PM EDT)
  • Groups: Linux; Story Type: News Story
Init containers are used to set up custom code that is not present in an app image. Init containers can be used to offer a mechanism to block or delay app container startup until a set of preconditions are met.

SUSE releases major Linux update

  • ZDNet; By Steven J. Vaughan-Nichols (Posted by bob on Jul 21, 2020 6:18 PM EDT)
  • Story Type: News Story; Groups: Linux, SUSE
SUSE just rolled out SUSE Linux Enterprise 15 Service Pack 2 and its latest system management program, SUSE Manager 4.1

Open source cross-platform development with TotalCross

  • Opensource.com (Posted by bob on Jul 21, 2020 1:03 PM EDT)
  • Story Type: News Story
There's a question that pops up quite frequently at TotalCross—in our day-to-day work, after presentations, in Reddit discussions, and sometimes even in our Telegram channel. Let's answer it once and for all: No, TotalCross Virtual Machine is not another Java Virtual Machine. This article explains the differences between the two, how TotalCross interacts with Java, and how to know which is best for your application. read more

Manage network connections from the Linux command line with nmcli

  • Opensource.com (Posted by bob on Jul 21, 2020 9:20 AM EDT)
  • Groups: Linux; Story Type: News Story
The nmcli command lets you tap into the power of the NetworkManager tool directly from the Linux command line. It's an integral part of the NetworkManager package that makes use of an application programmer's interface (API) to access NetworkManager's functionality. read more

RISC-V based PolarFire SoC debuts on open-spec, $499 dev kit

  • LinuxGizmos.com; By Eric Brown (Posted by bob on Jul 21, 2020 6:52 AM EDT)
  • Story Type: News Story; Groups: Linux
Microchip is crowdfunding a $499, open-spec “PolarFire SoC Icicle Kit” that runs Linux on its FPGA-enabled, SiFive U540 based PolarFire SoC and offers 2x GbE ports plus CAN, mikroBus, PCIe x4, and RPi 40-pin expansion. It’s rare to see a major tech vendor like Microchip launch a product on a crowdfunding site, but then again […]

Open source and health leaders join forces to fight coronavirus

  • ZDNet | open-source RSS; By Steven J. Vaughan-Nichols (Posted by bob on Jul 21, 2020 4:23 AM EDT)
  • Story Type: News Story; Groups: Community, Linux
The Linux Foundation has launched a new initiative to use open-source technologies to help public health authorities (PHAs) combat COVID-19: Linux Foundation Public Health.

Analyzing systemd calendar and timespans

  • Opensource.com (Posted by bob on Jul 21, 2020 1:54 AM EDT)
  • Story Type: News Story
In my previous seven articles in this series about systemd, and especially in the most recent article, time and date have come up in multiple contexts. systemd uses calendar time, specifying one or more moments in time to trigger events (such as a backup program), as well as timestamped entries in the journal. It can also use timespans, which define the amount of time between two events but are not directly tied to specific calendar times. read more

How to Install GitLab with Docker on Ubuntu 20.04 LTS

  • Howtoforge Linux Howtos und Tutorials (Posted by bob on Jul 21, 2020 12:40 AM EDT)
  • Groups: Ubuntu, Linux; Story Type: News Story
In this tutorial, we will show you how to install GitLab using the Docker and Docker Compose. Also, we will be using the Ubuntu 20.04 as our primary operating system, and install docker from the official Ubuntu FocalFossa repository.

Spam Classification with ML-Pack

  • Fedora Magazine (Posted by bob on Jul 20, 2020 8:57 PM EDT)
  • Groups: Fedora; Story Type: News Story
Howto for using ML-Pack for spam classification on Fedora. Ml-Pack is a small footprint C++ Machine Learning Library.

How to create Multi-Container Pods in Kubernetes

  • Howtoforge Linux Howtos und Tutorials (Posted by bob on Jul 20, 2020 6:28 PM EDT)
  • Groups: Linux; Story Type: News Story
Pods usually have a single container i.e. single container pods are the most common use case and it is not necessary to have a single container in the pod. One of the reasons to use a multi-container pod is simpler communication between containers. In this article, we will create a pod with 2 containers inside it. This example will help to understand the creation of a pod with multiple containers.

An introduction to mutation testing in Python

  • Opensource.com (Posted by bob on Jul 20, 2020 2:45 PM EDT)
  • Groups: Python; Story Type: News Story
You have tests for everything; maybe you even have a badge in your project repository stating 100% test coverage. But what are these tests helping you do? How do you know? read more

Imagine surviving WW3, rebuilding computers, opening up GitHub's underground vault just to relive JavaScript

  • The Register; By Thomas Claburn (Posted by bob on Jul 19, 2020 9:23 AM EDT)
  • Story Type: Editorial; Groups: Microsoft
We've heard of a code freeze but this is ridiculous: Microsoft finishes burying repos in Norwegian archipelago. Microsoft's GitHub on Thursday said that earlier this month it successfully deposited a snapshot of recently active GitHub public code repositories to an underground vault on the Norwegian archipelago of Svalbard.…

Whats the difference between DevSecOps and agile software development

  • Opensource.com; By Sam Bocetta (Posted by bob on Jul 19, 2020 7:11 AM EDT)
  • Story Type: Editorial; Groups: Community
There is a tendency in the tech community to use the terms DevSecOps and agile development interchangeably. While there are some similarities, such as that both aim to detect risks earlier, there are also distinctions that drastically alter how each would work in your organization.

Open source accounting software developed by accountants

  • Opensource.com (Posted by bob on Jul 19, 2020 12:37 AM EDT)
  • Story Type: News Story
Over the last six months, I have been working on GoDBLedger, an open source accounting system that I feel addresses some of the issues that plague current accounting software solutions. Even in my first year as a graduate accountant, the software frustrated me because I have seen what good software can be like and how much it can improve your productivity. read more

« Previous ( 1 ... 232 233 234 235 236 237 238 239 240 241 242 ... 1156 ) Next »