Meli's links
Nuage de tags
Mur d'images
Quotidien
Flux RSS
  • Flux RSS
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filtres

Liens par page

  • 20 links
  • 50 links
  • 100 links

Filtres

Untagged links
page 1 / 2
28 résultats taggé git  ✕
Découvrez les modules CPAN et le langage PERL - Quick-Tutoriel.com https://quick-tutoriel.com/decouvrez-le-langage-perl-et-les-modules-cpan/
13/04/2025 07:12:34
QRCode
archive.org
thumbnail

Avec cet article sur PERL, j'étoffe un peu plus la rubrique Supervision Réseau de Quick-tutoriel, qu

perl dev git tuto linux sysadmin bash script cpan perlmod
Note: Gaming & Linux /shaare/7Yjptg
09/03/2025 05:56:30
QRCode
archive.org

Wine

ExplicationComplete, Wiki de sebsauvage

MICE, Souris/Mouse

ckb-next
harpoond
piper

gaming linux wine proton steam list git wiki
Note: Youtube /shaare/DxOR5w
07/03/2025 06:38:40
QRCode
archive.org

SelfHost/ServicesFOSS

https://github.com/mendel5/alternative-front-ends?tab=readme-ov-file#youtube

Services en ligne :

https://youtubemp3free.com/en/

Outils #

CMD :

https://github.com/yt-dlp/yt-dlp

GUI :

https://freetubeapp.io/

youtube git service Software tools Download FOSS SelfHosting
Announcing the Data.gov Archive | Library Innovation Lab https://lil.law.harvard.edu/blog/2025/02/06/announcing-data-gov-archive/
20/02/2025 07:16:25
QRCode
archive.org
thumbnail

Today we released our archive of data.gov on Source Cooperative. The 16TB collection includes over 311,000 datasets harvested during 2024 and 2025, a complete archive of federal public datasets linked by data.gov. It will be updated daily as new datasets are added to data.gov.

This is the first release in our new data vault project to preserve and authenticate vital public datasets for academic research, policymaking, and public use.

We’ve built this project on our long-standing commitment to preserving government records and making public information available to everyone. Libraries play an essential role in safeguarding the integrity of digital information. By preserving detailed metadata and establishing digital signatures for authenticity and provenance, we make it easier for researchers and the public to cite and access the information they need over time.

In addition to the data collection, we are releasing open source software and documentation for replicating our work and creating similar repositories. With these tools, we aim not only to preserve knowledge ourselves but also to empower others to save and access the data that matters to them.

For suggestions and collaboration on future releases, please contact us at publicdata@law.harvard.edu.

This project builds on our work with the Perma.cc web archiving tool used by courts, law journals, and law firms; the Caselaw Access Project, sharing all precedential cases of the United States; and our research on Century Scale Storage. This work is made possible with support from the Filecoin Foundation for the Decentralized Web and the Rockefeller Brothers Fund.

https://github.com/harvard-lil/data-vault

doge Archive censure git python Data
GitHub - pluja/awesome-privacy: Awesome Privacy - A curated list of services and alternatives that respect your privacy because PRIVACY MATTERS. https://github.com/pluja/awesome-privacy
19/02/2025 17:25:38
QRCode
archive.org
thumbnail

Awesome Privacy - A curated list of services and alternatives that respect your privacy because PRIVACY MATTERS. - pluja/awesome-privacy

tools tools git apps privacy Creative-Commons list
Mail-in-a-Box https://mailinabox.email/
19/02/2025 09:37:59
QRCode
archive.org
thumbnail

Take back control of your email with this easy-to-deploy mail server in a box.

https://github.com/mail-in-a-box/mailinabox

git mail SelfHosting SelfHosting Creative-Commons linux
GitHub - k4zmu2a/SpaceCadetPinball: Decompilation of 3D Pinball for Windows – Space Cadet https://github.com/k4zmu2a/SpaceCadetPinball
19/02/2025 09:20:34
QRCode
archive.org
thumbnail

Decompilation of 3D Pinball for Windows – Space Cadet - k4zmu2a/SpaceCadetPinball

android apk game pinball git
GitHub - ading2210/linuxpdf: Linux running inside a PDF file via a RISC-V emulator https://github.com/ading2210/linuxpdf
19/02/2025 08:59:29
QRCode
archive.org
thumbnail

Linux running inside a PDF file via a RISC-V emulator - ading2210/linuxpdf

Doom pdf

linux pdf python RISC-V emulator git steganographie
GitHub - mfat/systemd-pilot: Desktop application for managing systemd services https://github.com/mfat/systemd-pilot
19/02/2025 08:56:28
QRCode
archive.org
thumbnail

Desktop application for managing systemd services. Contribute to mfat/systemd-pilot development by creating an account on GitHub.

linux sysadmin python systemd git
GitHub - santinic/audiblez: Generate audiobooks from e-books https://github.com/santinic/audiblez
19/02/2025 08:40:02
QRCode
archive.org
thumbnail

Generate audiobooks from e-books. Contribute to santinic/audiblez development by creating an account on GitHub.

ebooks git audio python
Running Alpaca.cpp (LLaMA) on Android phone using Termux · Ivon's Blog https://ivonblog.com/en-us/posts/alpaca-cpp-termux-android/
09/02/2025 21:42:07
QRCode
archive.org
thumbnail

中文版

Running LLaMA, a ChapGPT-like large language model released by Meta on Android phone locally.

I use antimatter15/alpaca.cpp, which is forked from ggerganov/llama.cpp.

Alpaca is the fine-tuned version of LLaMA which was released by Stanford University. The alpaca.cpp could run on CPU only mode.

1. Environment

#

  • Device:Xiaomi Pocophone F1
  • Android 13
  • SoC:Qualcomm Snapdragon 845
  • RAM: 6GB

2. Compile alpaca.cpp

#

Please install Termux first. Then choose one methods from below to compile Alpaca.cpp on your device.

Alpaca requires at leasts 4GB of RAM to run. If your device has RAM >= 8GB, you could run Alpaca directly in Termux or proot-distro (proot is slower). Devices with RAM < 8GB are not enough to run Alpaca 7B because there are always processes running in the background on Android OS. Termux may crash immediately on these devices.

Or you could root your phone and setup a chroot environment. Then mount a swapfile to get more RAM on your device.

2.1. Compile Alpaca.app in Termux

#

  1. Install these packages
pkg install clang wget git cmake
  1. Download Android NDK
wget https://github.com/lzhiyong/termux-ndk/releases/download/ndk-r23/android-ndk-r23c-aarch64.zip
unzip android-ndk-r23c-aarch64.zip
export NDK=~/android-ndk-r23c-aarch64

https://github.com/lzhiyong/termux-ndk/releases

  1. Complile Alpaca.cpp and download the model
git clone https://github.com/rupeshs/alpaca.cpp.git
cd alpaca.cpp
mkdir build-android
cd build-android
cmake -DCMAKE_TOOLCHAIN_FILE=$NDK/build/cmake/android.toolchain.cmake -DANDROID_ABI=arm64-v8a -DANDROID_PLATFORM=android-23 -DCMAKE_C_FLAGS=-march=armv8.4a+dotprod ..
make -j8
wget https://huggingface.co/Sosaka/Alpaca-native-4bit-ggml/resolve/main/ggml-alpaca-7b-q4.bin
  1. Run it
./chat

2.2. In Chroot

#

  1. Install Chroot Ubuntu and log in to Ubuntu.

  2. If your devices has RAM lower than 8GB, it is recommened to mount a SWAP file.

dd if=/dev/zero of=/swapfile bs=1M count=8192 status=progress
chmod 0600 /swapfile
mkswap /swapfile
swapon /swapfile
  1. Install dependencies, compile the program, and download the model.
apt install build-essential wget
git clone https://github.com/antimatter15/alpaca.cpp
cd alpaca.cpp
make chat
wget https://huggingface.co/Sosaka/Alpaca-native-4bit-ggml/resolve/main/ggml-alpaca-7b-q4.bin
  1. Run it.
./chat

2.3. In Proot

#

  1. Install Proot Debian and log in to Debian.
proot-distro login debian --shared-tmp
  1. Install dependencies, compile the program, and download the model.
apt install build-essential wget
git clone https://github.com/antimatter15/alpaca.cpp
cd alpaca.cpp
make chat
wget https://huggingface.co/Sosaka/Alpaca-native-4bit-ggml/resolve/main/ggml-alpaca-7b-q4.bin
  1. Run it.
./chat

3. Usage

#

  1. Now you can start chattig with Alpaca.

  2. It will takes Alpaca 30 seconds to start answering your questions.

  3. What can you do with Termux? Well, this looks like the answers from Termux official website :)

](https://links.melissandre.dev//en-us/posts/minecraft-java-edition-termux-proot/)

AI IA termux android git Tuto
▷ HTML to Markdown Converter https://htmlmarkdown.com/
09/02/2025 20:59:44
QRCode
archive.org
thumbnail

Convert ✓ HTML to Markdown effortlessly with our ✓ online tool, ensuring ✓ CommonMark compliance and ✓ local data processing for privacy.

https://github.com/mixmark-io/turndown

html markdown webservice tools git js javascript
GitHub - mikeroyal/PipeWire-Guide: PipeWire Guide. Learn about how PipeWire gives your Linux system a Professional Audio/Video Processing workflow. https://github.com/mikeroyal/PipeWire-Guide
09/02/2025 20:44:44
QRCode
archive.org
thumbnail

PipeWire Guide. Learn about how PipeWire gives your Linux system a Professional Audio/Video Processing workflow. - mikeroyal/PipeWire-Guide

pipewire audio linux git guide daw tools
ShellCheck – shell script analysis tool https://www.shellcheck.net/
09/02/2025 10:29:31
QRCode
archive.org

ShellCheck finds bugs in your shell scripts

linux tools git shell script dev webservice app cmd gpl
Firefox /shaare/Ol2ZGA
09/02/2025 10:23:23
QRCode
archive.org

Firefox Profilemaker

firefox git linux app apps config browser
Accueil - Software Heritage https://www.softwareheritage.org/?lang=fr
09/02/2025 09:57:45
QRCode
archive.org
archive git data
Getting Started | asdf https://asdf-vm.com/guide/getting-started.html
07/02/2025 07:18:41
QRCode
archive.org

Manage multiple runtime versions with a single CLI tool

asdf tools git linux dev
Image-to-Image Translation with Conditional Adversarial Networks https://phillipi.github.io/pix2pix/
06/02/2025 06:38:35
QRCode
archive.org
thumbnail
python ai git paper pix2pix IA
Open Source Tools & Data for Music Source Separation — Open-Source Tools & Data for Music Source Separation https://source-separation.github.io/tutorial/landing.html
06/02/2025 06:23:40
QRCode
archive.org
guitare Git Creative-Commons music
GitHub - TUVIMEN/torge: A shell script for searching for links on torrent sites https://github.com/TUVIMEN/torge
05/02/2025 10:36:00
QRCode
archive.org
thumbnail

A shell script for searching for links on torrent sites - TUVIMEN/torge

Git torge gpl libre torrent download linux bash shell script
page 1 / 2
266 links
Shaarli - Le gestionnaire de marque-pages personnel, minimaliste, et sans base de données par la communauté Shaarli - Theme by kalvn