Showing: 38 RESULTS
Code Process Python

✅ Pyspark + Java

Tutorial: Checking Minimum Required Version of Java Jar in PySpark Application Disclaimer: This tutorial demonstrates various methods of checking the minimum required version of a Java jar in a PySpark application. The provided code examples serve for illustrative purposes and may not be robust in real-world scenarios. Method 1: Direct Package Version Check on Python …

Git Process

🖥️ Install GitUI on Debian

GitUI is written in Rust, so you need to install Rust support for your Linux distribution and its Package manager Cargo. In the terminal, use the following commands: sudo apt update sudo apt install curl sudo apt install gcc cmake curl –proto ‘=https’ –tlsv1.2 -sSf https://sh.rustup.rs | sh cargo install gitui

Code Process Python

🖥️ Building a Python Package

Building and Deploying Python Packages: A Comprehensive Tutorial for Experts Introduction Developing and distributing Python packages is a crucial aspect of software development. This tutorial will guide you through the process of creating a Python package, configuring it with setuptools, and deploying it using pip. We’ll cover topics such as project structure, setup.py and setup.cfg …

Data Database

🖥️ Marklogic Tutorial

Marklogic Documents Add Documents Using Javascript: From Files declareUpdate(); // Mandatory to edit resources in MArklogic xdmp.documentLoad(“path/file.json”); // Keep Uri as path/file.json xdmp.documentLoad(“path/file.json”, {“uri”: “NewUriPath”}); // Change Uri to NewUriPath /*Load Bulk documents*/ const pathToDocs = “/home/Docs”; const docResults = xdmp.filesystemDirectory(pathYoDocs); docResults.forEach(fucntion(doc){ xdmp.documentLoad(doc.pathname, {“uri”:”/patents/”+doc.filename})}); Using Javascript: Document created in memory ( form, response to api, …

Code Data Data Engineering Database Security

🔑 Understanding ABAC vs. RBAC with Code Examples

ABAC : Attribute-Based Access Control RBAC : Role-Based Access Control Access control is a crucial aspect of security in software applications. Two popular models for implementing access control are Attribute-Based Access Control (ABAC) and Role-Based Access Control (RBAC). In this tutorial, we’ll delve into the concepts of ABAC and RBAC, and provide code examples to …

C++ Code

🖥️ CMake Tutorial

Introduction CMake is a tool for controlling the build process, which creates scripts to turn C++ source code into a specific project. Examples: Generates vcxproj files for Microsoft Visual Studio 2017, toolchain, and MSVC 19 Generates project for MinGW If you want to know how to setup a complete C++ project, go to Cpp Dev …

Data Database

📦 Marklogic

Marklogic For a recap on what-is-marklogic-server, see this article. Documents Add Documents Using Javascript: From Files ‘use strict’; declareUpdate(); // Mandatory to edit resources in MArklogic xdmp.documentLoad(“path/file.json”); // Keep Uri as path/file.json xdmp.documentLoad(“path/file.json”, {‘uri’: ‘NewUriPath’}); // Change Uri to NewUriPath /*Load Bulk documents*/ const pathToDocs = ‘/home/Docs’; const docResults = xdmp.filesystemDirectory(pathYoDocs); docResults.forEach(fucntion(doc){ xdmp.documentLoad(doc.pathname, {‘uri’:’/patents/’+doc.filename})}); Using …

Process

🖥️ Handling External Dependencies Update

I. Overview Navigating large-scale projects invariably involves managing external dependencies. The onus falls on the developer and project overseer to continuously seek updates and decide their applicability. This guide provides insights into the aspects of updating external packages. II. Advantages of Updating Unlocks the potential to incorporate new features into your existing project. Addresses issues …