Archivo del Autor: carlosap
You can now run a GPT-3-level AI model on your laptop, phone, and Raspberry Pi
https://arstechnica.com/information-technology/2023/03/you-can-now-run-a-gpt-3-level-ai-model-on-your-laptop-phone-and-raspberry-pi/?fbclid=IwAR0zfNJo4sW4I0qcTWw5MrjAxmEgqwAL7X_zxMxlEtEnzjFDQ-EuMPGpFgY
How To Install MongoDB 4.4 on RHEL 8 | CentOS 8
In this guide, we will cover the steps to install MongoDB 4.4 on RHEL 8 / CentOS 8. MongoDB is an open source NoSQL database system written in C++ designed to ensure scalability, high performance, and availability. MongoDB common use case is storage and management of Big Data-sized collections of literal documents like text documents, email messages,… Leer más »
install mongodb 4.4 / 5.0 over ubuntu 22.04
iptables OCI ubuntu 22.04 oracle cloud
source: https://docs.oracle.com/en-us/iaas/developer-tutorials/tutorials/apache-on-ubuntu/01oci-ubuntu-apache-summary.htm The Ubuntu firewall is disabled by default. However, you still need to update your iptables configuration to allow HTTP/HTTPS traffic. Update iptables with the following commands.Copy
how to install mongodb raspberry 4 last working version
If you’re planning to run MongoDB 5.0 on your Raspberry Pi 4, you might run into an issue where the main process exits with a «code=killed, status=4/ILL» error. The error message suggests that the CPU microarchitecture of Raspberry Pi 4 is not compatible with MongoDB 5.0 binary packages, which you can verify on the MongoDB… Leer más »
How to Find ILOM IP from Solaris OS
It works on systems > T4-1/Solaris 10 and displays the ILOM IP address
How to assign permissions by schema in SQL Server
To assign permissions to a schema in SQL Server, you must first create a security role and assign permissions to the role. Then, assign the role to the desired user or group of users. Here is an example of code to assign SELECT permissions to a «test_schema» schema: sqlCopy code– Create a security role CREATE… Leer más »
SQL Duplicates Count Query for two or more columns
This query uses a commonly used query (CTE) to group the results and count duplicates in the zip_to_fips table. The first part of the query, the CTE, selects the columns «fips», «cnty_name» and adds an additional column «DuplicateCount» that uses the ROW_NUMBER() function to assign a unique number to each row that has equal values… Leer más »