Shaare your links...
2008 links
interesting links Home Login RSS Feed ATOM Feed Tag cloud Picture wall Daily
Links per page: 20 50 100
◄Older
page 1 / 2
35 results for tags BSD x
  • mpmath - Python library for arbitrary-precision floating-point arithmetic
    mpmath is a free (BSD licensed) Python library for real and complex floating-point arithmetic with arbitrary precision. It has been developed by Fredrik Johansson since 2007, with help from many contributors.
    Tue May 17 15:57:41 2022 - permalink -
    - https://mpmath.org/
    algorithm BSD FOSS mathematics numerical Python
  • Game of Trees (Got)
    Game of Trees (Got) is a version control system which prioritizes ease of use and simplicity over flexibility.

    Got is still under development; it is being developed on OpenBSD and its main target audience are OpenBSD developers.

    Got uses Git repositories to store versioned data. Git can be used for any functionality which has not yet been implemented in Got. It will always remain possible to work with both Got and Git on the same repository.
    Thu Sep 23 15:11:57 2021 - permalink -
    - https://gameoftrees.org/
    BSD FOSS git tool version-control
  • saltpack - a modern crypto messaging format
    Need to encode, transmit, or store encrypted or signed data? saltpack is a streamlined, modern solution, designed with simplicity in mind. It is easy to implement & integrate. We've made few crypto decisions and instead leave almost all of the heavy lifting to the NaCl library.

    saltpack is a binary message format, encoded using the MessagePack format. Messages are broken up into reasonable (1MB) chunks, over which regular NaCl operations are performed. We have taken pains to address many of the shortcomings of current message formats: (1) only authenticated data is output; (2) repudiable authentication is used wherever possible; (3) chunks cannot be reordered or combined with other transmissions; (4) the public keys of senders and recipients can be hidden; and (5) message truncation is detectable.

    Implementations in Go and Python are available at https://saltpack.org/implementations  The format is used by https://keybase.io/
    Tue Jun 1 22:14:50 2021 - permalink -
    - https://saltpack.org/
    BSD cryptography FOSS security software tool
  • The Amsterdam Compiler Kit
    The Amsterdam Compiler Kit is a cross-platform compiler and toolchain suite that is small, portable, extremely fast, and extremely flexible. It targets a number of low-end machines including the Z80, 8086 and 80386, but there are many other code generators available. It supports several languages, including ANSI C, Pascal and Modula-2, and contains integrated runtime libraries including a libc.

    The maintainer, David Given states "I, dtrg, cannot honestly recommend using the ACK for production code unless as a stop-gap measure or unless the other benefits of the ACK (e.g. having a very lightweight turnkey toolchain is valuable to you) outweigh the code quality."
    Fri Apr 2 23:54:59 2021 - permalink -
    - http://tack.sourceforge.net/
    BSD C compiler pdp-11 pi raspberry π
  • gokrazy is a pure-Go userland for your Raspberry Pi 3/4 appliances
    For a long time, we were unhappy with having to care about security issues and Linux distribution maintenance on our various Raspberry Pis.
    Then, we had a crazy idea: what if we got rid of memory-unsafe languages and all software we don’t strictly need?
    Turns out this is feasible. gokrazy is the result.
    Wed Mar 24 20:01:16 2021 - permalink -
    - https://gokrazy.org/
    BSD Go pi raspberry software π
  • Pikchr: Documentation
    Pikchr (pronounced "picture") is a PIC-like markup language for diagrams in technical documentation. Pikchr is designed to be embedded in fenced code blocks of Markdown or similar mechanisms of other documentation markup languages.
    Pikchr source code is released under a zero-clause BSD license.
    Fri Oct 9 15:15:26 2020 - permalink -
    - https://pikchr.org/home/doc/trunk/homepage.md
    BSD FOSS graphical-programming pic software
  • NomadBSD - live BSD system
    NomadBSD is a persistent live system for USB flash drives, based on FreeBSD®. Together with automatic hardware detection and setup, it is configured to be used as a desktop system that works out of the box, but can also be used for data recovery, for educational purposes, or to test FreeBSD®'s hardware compatibility.
    Tue Jul 28 02:09:00 2020 - permalink -
    - https://nomadbsd.org/index.html
    BSD FOSS software
  • command line tool for DSP
    csdr is a command line tool to carry out DSP tasks for Software Defined Radio.
    It can be used to build simple signal processing flow graphs, right from the command line.
    Found on Oona Räisänen's blog http://www.windytan.com/p/about.html.
    Fri Jul 10 00:37:46 2020 - permalink -
    - https://github.com/ha7ilm/csdr
    BSD signal-processing software Unix
  • LambdaNative cross-platform development environment
    LambdaNative is an open-source (BSD licensed) cross-platform development environment written in Scheme (Gambit-C), supporting Android, iOS, BlackBerry 10, OS X, Linux, Windows, OpenBSD, and NetBSD. Some cross-compiler support for Raspberry Pi (Carlson-Minot) and OpenWrt (Sitara) also exists. See also https://www.lambdanative.org/
    Sun Jun 28 16:14:31 2020 - permalink -
    - https://github.com/part-cw/lambdanative/wiki
    Android BSD Scheme software
  • The Power Of CTRL+T – The Blog
    On FreeBSD, OS X but not on Linux, C-T sends SIGINFO which produces information of the current process. Other interesting articles on the blog include
    https://blog.danielisz.org/2017/03/18/the-unix-system-family-tree-research-and-bsd/
    https://blog.danielisz.org/2018/02/10/raspbsd/
    https://danielisz.wordpress.com/2018/02/11/raspberry-pi-and-freebsd/
    Fri Jun 19 16:58:43 2020 - permalink -
    - https://blog.danielisz.org/2018/06/21/the-power-of-ctrlt/
    blog BSD tool Unix
  • Intel(R) Intelligent Storage Acceleration Library
    ISA-L is a collection of optimized low-level functions targeting storage applications. ISA-L includes:
       Erasure codes - Fast block Reed-Solomon type erasure codes for any encode/decode matrix in GF(2^8).
       CRC - Fast implementations of cyclic redundancy check. Six different polynomials supported.
           iscsi32, ieee32, t10dif, ecma64, iso64, jones64.
       Raid - calculate and operate on XOR and P+Q parity found in common RAID implementations.
       Compression - Fast deflate-compatible data compression.
       De-compression - Fast inflate-compatible data compression.
    BSD 3-Clause "New" or "Revised" License.
    According to https://github.com/catid/cm256, ISA-L uses a O(N^3) Gaussian elimination solver for decoding. The CM256 decoder solves the linear system using a fast O(N^2) LDU-decomposition algorithm from "Pivoting and Backward Stability of Fast Algorithms for Solving Cauchy Linear Equations" (T. Boros, T. Kailath, V. Olshevsky), which was hand-optimized for memory accesses.
    See also https://github.com/catid/leopard for a fast O(N log(N)) RS erasure decoder.
    Mon Jun 15 15:26:37 2020 - permalink -
    - https://github.com/intel/isa-l
    BSD coding compression correction CRC cryptography error FOSS
  • Modern interactive LLVM-based Fortran compiler
    LFortran is a modern open-source (BSD licensed) interactive Fortran compiler built on top of LLVM. It can execute user’s code interactively to allow exploratory work (much like Python, MATLAB or Julia) as well as compile to binaries with the goal to run user’s code on modern architectures such as multi-core CPUs and GPUs.
    Mon Feb 24 23:44:00 2020 - permalink -
    - https://lfortran.org/
    BSD compiler Fortran FOSS LLVM software
  • D. Souflis, J. Shapiro - TinyScheme Home
    TinyScheme is a lightweight Scheme interpreter that implements as large a subset of R5RS as was possible without getting very large and complicated. It is meant to be used as an embedded scripting interpreter for other programs. As such, it does not offer IDEs or extensive toolkits although it does sport a small top-level loop, included conditionally. A lot of functionality in TinyScheme is included conditionally, to allow developers freedom in balancing features and footprint.
    Thu Feb 13 18:47:55 2020 - permalink -
    - http://tinyscheme.sourceforge.net/home.html
    BSD FOSS Scheme software
  • restic · Backups done right!
    Encrypted, deduplicated backup tool, runs on Linux, *BSD, OS X and Windows.
    Wed Nov 6 15:49:28 2019 - permalink -
    - https://restic.net/
    backup BSD cryptography FOSS tool
  • Yet another tiny Unix machine
    Found via a post on the TUHS mailing list
    https://minnie.tuhs.org/pipermail/tuhs/2019-September/018465.html
    Thu Sep 12 09:53:03 2019 - permalink -
    - https://www.olimex.com/Products/Duino/PIC32/PIC32-RETROBSD/open-source-hardware
    BSD FOSS hardware software TUHS Unix
  • About – HelenOS
    HelenOS is a portable microkernel-based multiserver operating system designed and implemented from scratch. It decomposes key operating system functionality such as file systems, networking, device drivers and graphical user interface into a collection of fine-grained user space components that interact with each other via message passing. A failure or crash of one component does not directly harm others. HelenOS is therefore flexible, modular, extensible, fault tolerant and easy to understand.
    Fri May 3 15:15:31 2019 - permalink -
    - http://www.helenos.org/wiki/About
    BSD FOSS operating-system software
  • mpsh
    mpsh is an experimental command interpreter for Unix systems written by Dave Fischer at the Center for Computational Aesthetics and distributed under the 3-clause BSD license.
    Fri Jan 25 16:51:15 2019 - permalink -
    - https://www.cca.org/mpsh/
    BSD FOSS shell software Unix
  • Rump Kernels
    Rump kernels enable you to build the software stack you need without forcing you to reinvent the wheels. The key observation is that a software stack needs driver-like components which are conventionally tightly-knit into operating systems — even if you do not desire the limitations and infrastructure overhead of a given OS, you do need drivers.
    Found on Kooda's blog https://www.upyum.com/en/post/2.xhtml
    Mon Dec 3 12:13:11 2018 - permalink -
    - http://rumpkernel.org/
    BSD operating-system
  • cl-6502 - A Readable CPU Emulator
    cl-6502 is a Common Lisp emulator, assembler and disassembler for the MOS 6502 processor.
    Fri Aug 31 15:56:09 2018 - permalink -
    - https://github.com/kingcons/cl-6502
    6502 BSD common-lisp FOSS lisp literate-programming
  • NuttX Real-Time Operating System - NuttX Real-Time Operating System
    NuttX is a real-time operating system (RTOS) with an emphasis on standards compliance and small footprint. Scalable from 8-bit to 32-bit microcontroller environments, the primary governing standards in NuttX are Posix and ANSI standards. Additional standard APIs from Unix and other common RTOS's (such as VxWorks) are adopted for functionality not available under these standards, or for functionality that is not appropriate for deeply-embedded environments (such as fork()).
    Tue Jun 5 14:44:30 2018 - permalink -
    - http://www.nuttx.org/
    BSD FOSS operating-system
Links per page: 20 50 100
◄Older
page 1 / 2
Shaarli 0.0.41 beta - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.