veer66

joined 2 years ago
 

The video offers a practical example of using Ubuntu for web development, reminiscent of the Rails screencasts popular two decades ago. Back then, many software developers I met still believed the iBook G4 was primarily for desktop publishing, not software development.

 

dhh is the creator of Ruby on Rails. He has extensively used Mac for decades. A few months ago, as far as I remember, he mentioned something like switching to Windows and WSL.

 

By Kenichi Sasagawa - Easy IS-LISP maintainer

 

cl-llama.cpp is llama.cpp's Common Lisp wrapper by Carlos Ungil. It allows us to use LLMs locally via Common Lisp. I modified it to use the updated llama.cpp API, and improved how it prints the output.

 

I suppose this is an important library to use Common Lisp in building RAG apps.

[–] veer66@lemmy.one 1 points 1 year ago (2 children)

Stored procedure and Datalog are not what I'm looking for. However, I should consider them seriously, since they may be more practical.

[–] veer66@lemmy.one 1 points 1 year ago* (last edited 1 year ago)

b but has nice

Thank you. This is exactly what I'm looking for.

link

[–] veer66@lemmy.one 1 points 1 year ago* (last edited 1 year ago)

Yes, I've used this.

[–] veer66@lemmy.one 1 points 1 year ago (2 children)

properly parametrized and escaped and all that

I'm not sure if what I use is proper enough in your sense. So, can you elaborate more?

[–] veer66@lemmy.one 5 points 1 year ago

RK3588 is used in many Linux devices, but I'm not sure if Rockchip is in the BDS list. I don't know which factory was RK3588 from.

[–] veer66@lemmy.one 1 points 1 year ago

I heard that Linux gets new patches for Loongson, but I didn't try it yet.

[–] veer66@lemmy.one 4 points 1 year ago

Yes, it is stable.

[–] veer66@lemmy.one 2 points 1 year ago
  #[allow(unused_assignments)]

Thank you. This works!

[–] veer66@lemmy.one 1 points 1 year ago (2 children)

It doesn't work, at least, on rustc 1.75.

[–] veer66@lemmy.one 2 points 1 year ago (4 children)

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:

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

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

To put it like this:

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

It doesn't work.

[–] veer66@lemmy.one 9 points 2 years ago

Because of the Redhat incident, I started to see people asking for community-based distros without a corporate that dominates the community. And, Mageia is one of them. So, I hope it will be more popular.

[–] veer66@lemmy.one 14 points 2 years ago
  • KDE is the default. So, for KDE users, Mageia with KDE was tested.
  • Mageia comes with Drake tools for configuring almost everything. IMO *drakes look quite friendly. Since they have been around for 20+ years, they must be stable.
  • Each release will be supported for 18 months, which is longer than Fedora.
view more: ‹ prev next ›