*Memory MatrixWritings, notes, and data PagesCategories
Tags
|
A Caution of Claude AIThe Claude AI terms of service at Anthropic, as of 14 October 2024, say that
Claude’s terms further state
Machine learning includes linear regression. Other Machine Learning algorithms include Logistic Regression, decision trees, random forests, support vector machines, K-Nearest Neighbors, & Bayes Algorithms. It seems to me, that as of 14 October 2024, no one seeking to handle any data science can legitimately use Claude. They are driving toward Claude working as the replacement of human co-workers according to some of the latest marketing. If the users are forbidden from using the results of the services to strengthen their own work, it seems like it will produce a walled garden without machine learning expertise within the businesses. Greek lettersThis is a list of Greek letters and their names. α alpha
Create a systemd service for YaCyCreate file /usr/lib/systemd/system/yacy.service and add this content:
Then use systemctl enable yacy.service. Hydrogen InfrastructureZero Hedge reported on California launching a hydrogen hub infrastructure for hydrogen refueling infrastructure. https://www.zerohedge.com/political/california-launch-hydrogen-hub-expand-zero-emission-technology. The California government’s official press release on the Hydrogen Hub was released 17 July 2024 at https://www.gov.ca.gov/2024/07/17/california-launches-world-leading-hydrogen-hub/. Clean Technica produced an article about the Hydrogen Hub grant program that covers multiple states. This blog will follow Nikola and Hyla, which are available online at https://www.nikolamotor.com/ and https://www.hyla.co/. Nikola produces the TRE FCEV. General Motors has a partnership with the U.S. Department of Energy and Honda for Hydrogen development. Hyundai has the XCIENT fuel cell truck. Kenworth has the T680. Like the Hyundai the T680 places the fuel tanks behind the driver from floor to ceiling. The Kenworth is a partnership with Toyota with Toyota producing the fuel cell power plant and Kenworth producing the trucks. All of these are limited to around 400-450 miles of range, with the exception of one of the XCIENTS which listed 400km, which is 248 miles. Hyundai has a class 8 truck in partnership with a company called Plus, and they claim to be fully autonomous. Volvo has fuel cell trucks with a range of up to 1000 km. International Trucks has a hydrogen fuel cell technology designed for routes 300+ miles in testing. They use the General Motors fuel cell platform, and OneH2 mobile hydrogen production and fueling technology to bring the fuel station to the customer in a manner similar to Hyla. Mistral Instruct using the above as Local Documents input:
Addendum 9/21/24: Ford has a hydrogen vehicle in the works with an outsourced power train, but it was not included at the time of original writing. Simon Says and use MojeekThe Simon Says blog has been online for a long time. Here is an entry from 2008 about ripping CDs on a Mac. In a way this site shows what is wrong with the web. Twenty years ago blogs and websites had favorites and blog rolls. Through this people discovered many great sites. Around 2012 WordPress removed the Link Manager from the default WordPress and the blog-sphere began to fade away because the links began to fray. From there, Google began to limit search results to the chosen few. Recently Bing search has begun allowing scrolling to many different search results again. I went to page 16 the other day just to see. To use a Search Engine like it’s 2009, which was way better than now, use Mojeek. I hope they don’t break it. That’s how I found that 2008 entry about ripping CDs on a Mac. That is a discovery that one would never find on Google. It was like stepping into a time machine. Shrink Firefox Interface
VirtualBox Disk ConversionTo convert a dynamic VirtualBox disk to a Fixed disk, run the following command: vboxmanage clonemedium disk /path/disk.vdi /path/newdisk.vdi -variant Fixed using –variant Standard would create a dynamic disk. Then open the virtual machine and remove the existing disk and attach the new disk. Then use the media manager to delete the unused media. Use the following command to list registered virtual disks: vboxmanage list hdds Browser ExtensionsChromium: Joplin Web Clipper, Zotero Connector, floccus bookmarks sync, uBlock Origin, Quick Javascript Switcher, SingleFile, uMatrix Firefox: floccus bookmarks sync, Joplin Web Clipper, Search by Image, uMatrix, Undo Close Tab, Zotero, uBlock Origin
[x] Removed some Firefox/LibreWolf extensions [+] Added Zotero and uBlock Origin, which have been long used, but neglected with regards to appearing in this list. Debian 12 PATH and X11A few quirks with Debain 12 include that path not being set in similar fashion to Fedora, Ubuntu, and other distributions. One must regularly set
In Gnome, applications will open on the server instead of the client when using X11 forwarding. This will occur even though xcalc opens on the client normally. The way to avoid this is to add the following to .bashrc unset XDG_RUNTIME_DIR unset GDK_BACKEND The general rule is compress, then encrypt.1, 2 Move /var to new diskTo add a new virtual disk and move the existing Linux partition to the new disk use the following process. The process assumes standard partitions without the use of Logical Volume Manager (LVM). 1. Backup the existing VM. One good way to do that is to clone the Virtual Machine and use the procedure on the new Virtual Machine. 2. Create the partition and format it. $ mount /dev/sbd /mnt $ shopt -s dotglob $ rsync -aulvXpogtr /var/* /mnt $ nano /etc/fstab Add this line, replacing sdb and ext4 as necessary: /dev/sdb /var ext4 defaults,noatime,nofail 0 2 Then $ mv /var/ /var.old Reboot and enjoy the new drive. Install Java 21 in Debian 12Minecraft Java edition lost compatibility with Java 17 between 1.20.4 and 1.20.6. Version 1.20.4 works with Java 17, and 1.20.6 no longer works with Java 17. Several guides appear online for installing downloaded packages of the 64-bit runtime from Oracle or other sources. Since Debian offers 32-bit server operating systems in the present day, the package manager versions are the easiest option if one uses the 32-bit version of Debian. One of the reasons to use the 32-bit version of Debian is for use with older versions of Minecraft such as 1.10 and 1.12. The older versions’ ecosystem contain an incredible number of mods. The older versions require 32-bit java runtimes and the easiest way to handle that is to use a 32-bit operating system and then one can have newer versions of Java alongside older versions of Java and then one can run any version of Minecraft and Minecraft Forge that they desire. Edit /etc/apt/sources.list to contain the following lines: deb http://deb.debian.org/debian testing main deb-src http://deb.debian.org/debian testing main Then, run the following commands. apt-get update apt-get install openjdk-21-jre java –version https://wiki.debian.org/DebianTesting contains a good reference guide for using Debian Testing, including details on upgrading to the next distribution. The approximate Java lifecycle can be found at https://www.oracle.com/java/technologies/java-se-support-roadmap.html. |