Posts

Showing posts with the label #GoPongo

How to Stop Android Notifications from Popping up on Your Screen

Android notifications are great, but they’re not perfect. The way that some notifications pop up on the screen can be annoying, especially if they’re not important. Thankfully, you can stop this from happening. Read This Article on How-To Geek ›

Don't Board a Plane Without These Carry-On Essentials

If you’ve ever flown anywhere, you probably know how it feels to get to the airport, only to realize you’re missing an essential item. These must-pack carry-on items will ensure you always have what you need for a comfortable flight. Read This Article on LifeSavvy ›

How to Change the Background in Microsoft Planner

Microsoft Planner is a useful work manager, but out of the box, it’s very plain and impersonal. Give your plans a little more life and color by adding a background from Microsoft’s selection of Designer-chosen images. Read This Article on How-To Geek ›

How to Quickly Locate Your Mouse Pointer on Windows 10

If you often lose your tiny Windows 10 mouse pointer in your football-field-resolution display, there’s a way to quickly locate the wayward arrow by pressing the Ctrl key. Here’s how to turn it on. Read This Article on How-To Geek ›

How to Simplify Docker Compose Files With YAML Anchors and Extensions

Docker Compose lets you manage multiple Docker containers and their associated resources such as volumes and networks. You write declarative YAML files which Compose uses to create your container stack. Read This Article on CloudSavvy IT ›

How to Create a Guest Mode Desktop Shortcut for Chrome or Edge

Chrome and Edge both offer a guest mode that keeps your browsing isolated from your main profiles. If you access guest mode too frequently, you can add its shortcut to your Windows desktop. This makes opening guest mode even easier. Read This Article on How-To Geek ›

What is GAIA-X and Why Are AWS, Google, and Azure Involved?

GAIA-X is a European initiative intended to provide a unified ecosystem of cloud services and data centers governed by EU data laws. So why are American cloud companies rushing to sign up? Read This Article on CloudSavvy IT ›

How to Disable iCloud Photos on Mac

iCloud Photos automatically uploads and syncs all your images between all your Apple devices. It’s a great backup solution, but it might be eating up your Mac’s storage. Here’s how to disable iCloud Photos on Mac. Read This Article on How-To Geek ›

Review: 7 Python IDEs go to the mat

Of all the metrics you could use to gauge the popularity and success of a language, one surefire indicator is the number of development environments available for it. Python’s rise in popularity over the last several years has brought with it a strong wave of IDE support, with tools aimed at both the general programmer and those who use Python for tasks like scientific work and analytical programming. These seven IDEs with Python support cover the gamut of use cases. Some are built exclusively for Python, while others are multilanguage IDEs that support Python through an add-on or have been retrofitted with Python-specific extensions. Each benefits a slightly different audience of Python developer, although many strive to be useful as universal solutions. To read this article in full, please click here

Make the most of R colors and palettes

There are a lot of built-in colors and ready-made palettes for R users — if you know how to find and use them. Here are some of my favorite tips and tools for working with colors in R. How to find built-in R colors There are more than 650 colors built right into base R. These let you use color names instead of hex or RGB codes. The color() function lists all of the color names , but that doesn’t help you see them. To read this article in full, please click here

LLVM 12 arrives with x86, AArch optimizations

LLVM 12, the latest release of the open source LLVM compiler infrastructure platform , published April 14, features optimizations for the x86 target as well as changes to the AArch64 Arm back end. For the x86 target, a new function attribute, tune-cpu, has been added to support -mtune like GCC, allowing microarchitectural optimizations to be applied independently from the target-cpu attribute or TargetMachine CPU, which will be used to select the instruction set. If this attribute is not present, the tune CPU will follow the target CPU. Also for the x86 target, the assembler now supports {disp32} and {disp8} pseudo prefixes to control displacement size for memory operands and jump placements. To read this article in full, please click here

Kotlin 1.5.0 stabilizes unsigned integer types

Kotlin 1.5.0, an upgrade to JetBrains’ statically typed language , has moved to a release candidate stage and is now feature-complete. Highlights include unsigned integer types and an improved testing library. With Kotlin 1.5.0, unsigned integer types, available in beta since Kotlin 1.3, are classified as stable, making them safe to use in real projects and available without opt-in. Unsigned integer types include UInt, ULong, UByte, UShort, and related functions. The standard library’s unsigned integer API is useful for dealing with non-negative integer operations. The newly stable APIs include unsigned integers, ranges and progressions of unsigned integer types, and functions that operate with unsigned integer types. Arrays of unsigned integers are still in beta. To read this article in full, please click here

3 usability standards for web and mobile applications

Ask an application or full-stack developer about the types of testing they perform on their applications, and they are likely to report on unit testing, API testing, and hopefully SAST (static application security testing) and other security testing. The QA automation engineers are likely to mention functional test automation, cross-browser and -device testing, mobile app testing, and performance testing. Devops engineers aim to enhance CI/CD (continuous integration/continuous development) pipelines with continuous testing , and SREs focus on the observability of applications and microservices. To read this article in full, please click here

Microsoft Visual Studio 2022 preview is coming soon

Microsoft has big plans for the next major release of its signature Visual Studio IDE . Among the promised improvements, Visual Studio 2022 promises to be 64-bit, faster, more lightweight, and more approachable. Due in a first public preview this summer, Visual Studio 2022 will be built for a range of users spanning from learners to experienced developers building industrial-scale solutions. Visual Studio 2022 will be a 64-bit application, no longer limited to about 4GB of memory in the main devenv.exe process. Moving to 64-bit will reduce component memory usage and optimize Visual Studio’s 32-bit design. To read this article in full, please click here

How to use SortedDictionary, SortedList, and SortedSet in C#

SortedDictionary, SortedList, and SortedSet are collection classes that store key-value pairs and can be sorted based on the keys. A SortedSet is a collection that is maintained in sorted order. A SortedList is a collection that lets you retrieve the keys and/or values using indexes. A SortedDictionary lacks indexes but offers faster insertion and removal of unsorted data than a SortedList. This article talks about SortedDictionary, SortedList, and SortedSet, how they differ, and how we can work with them in C#. To work with the code examples provided in this article, you should have Visual Studio 2019 installed in your system. If you don’t already have a copy, you can download Visual Studio 2019 here . To read this article in full, please click here

Python is devouring data science

Back in 2015 I wrote that “Python’s data science training wheels increasingly lead to the R language,” suggesting that the more serious companies get about data science, the more they’ll want the heft of R. Boy, that perspective hasn’t aged well. In fact, as a recent Terence Shin analysis of more than 15,000 data scientist job postings suggests, Python adoption keeps growing even as the more specialist R language is in decline. This isn’t to suggest that data scientists will drop R anytime soon. More likely, we’ll continue to see both Python and R used for their respective strengths. To read this article in full, please click here

Node.js 16 introduces Apple Silicon support

Node.js 16 was released on April 20, adding Apple Silicon binaries and additional stable APIs to the popular JavaScript runtime. The release is the first to ship with prebuilt binaries for Apple Silicon . While Node.js will provide separate tarballs for the Intel and Arm architectures, the MacOS installer will be shipped as a “fat” (multi-architecture) binary. Node.js 16 follows the October 2020 release of Node.js 15 . To read this article in full, please click here

Microsoft open sources C# standards work

Microsoft is moving standardization of its object-oriented, type-safe C# language to a public repository of the .NET Foundation, providing a public space for ongoing work on the standard. Everything from language innovation and feature design through implementation and standardization will now take place in the “open,” with conversations public. This will make standardization work easier, Microsoft said. The dotnet/csharpstandard repo on GitHub will be the working space for the ECMA C# standard committee. To read this article in full, please click here

3 multicloud architecture mistakes

The optimization of a multicloud architecture, simply put, is the ability to configure the technology to optimize the architecture for the business requirements, as well as to minimize costs. For each dollar spent on cloud technology, you want the maximum value coming back to the business. The truth is that few cloud architectures are fully optimized. I’ve talked about the bias towards complexity as a primary culprit. However, the root cause is waiting to think about architecture optimization until it’s deployed and in operation. By then, it’s too late. To read this article in full, please click here

5 perspectives on modern data analytics

You can’t navigate business challenges without the right instruments. Done right, analytics initiatives deliver the essential insights you need, as these five articles explore.