Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)VE
Posts
31
Comments
26
Joined
2 yr. ago

Linux @lemmy.ml

Are there any Flatpak packages that utilize Tcl/Tk?

Linux @lemmy.ml

Where should I request Fedora Silverblue to include all Noto fonts in the image?

Official India community on Lemmy @lemmy.run

Which mobile banking app is the most popular in India?

Lisp @programming.dev

SBCL: New in version 2.4.7, 2024-07-27

Lisp Community @lemmy.ml

Blueprint for Distributed Parallel Lisp

Lisp @programming.dev

Blueprint for Distributed Parallel Lisp

DevOps @lemmy.ml

Is it normal for companies these days to solely rely on Amazon RDS backup without another backup strategy?

DevOps @programming.dev

Is it normal for companies these days to solely rely on Amazon RDS backup without another backup strategy?

Lisp Community @lemmy.ml

Exploring Distributed Parallel Computing with Easy-ISLisp

Lisp @programming.dev

Exploring Distributed Parallel Computing with Easy-ISLisp

Lisp Community @lemmy.ml

Challenging the Future: Building Distributed Parallel Lisp with Easy-ISLisp

Lisp @programming.dev

Milestone: Easy-ISLisp ver4.0 Released with Enhanced Parallel Features

Linux @programming.dev

For the Love of Linux – REWORK podcast / DHH

  • People claiming Linux isn’t a viable alternative cause you can’t run it without using the command line.

    Even in 2024, many people begin using GNU/Linux with Arch Linux or Ubuntu with apt-get, then later they complain that Linux is not for average users. Maybe the community needs more GUI only tutorials.

  • Linux @lemmy.ml

    OMAKUB: Opinionated Ubuntu Setup in 1 Command

    Lisp @programming.dev

    Prime Factorization By Parallel Lisp

    Linux @lemmy.ml

    Linux as the new developer default at 37signals

    Lisp @programming.dev

    Parallel Prime Number Detection in Lisp

    Common Lisp @lemmy.ml

    Why can I find a list of remote Common Lisp jobs?

    Lisp Community @lemmy.ml

    Utilizing Multi-core with Parallel Lisp

    Common Lisp @lemmy.ml

    cl-llama.cpp demo

  • Clippy didn't tell anything about the macro.

     
        
    warning: dereferencing a tuple pattern where every element takes a reference
      --> src/lib.rs:13:9
       |
    13 |         &Some(ref cons_rc) => {
       |         ^^^^^^^^^^^^^^^^^^
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference
       = note: `#[warn(clippy::needless_borrowed_reference)]` on by default
    help: try removing the `&` and `ref` parts
       |
    13 -         &Some(ref cons_rc) => {
    13 +         Some(cons_rc) => {
       |
    
      

    To put #[allow(this_linting_rule)] like this:

     Rust
        
        [ $x:expr, $( $y:expr ),* ] => {
        #[allow(unused_assignments)]
        {
    
      

    I got error[E0658]: attributes on expressions are experimental.

    To put it like this:

     Rust
        
    #[macro_export]
    #[allow(unused_assignments)]
    macro_rules! list {
        () => {
        None
    
      

    It doesn't work.