Skip to content
View JarKz's full-sized avatar

Block or report JarKz

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
JarKz/README.md

Hi there, I'm Pavel!


Anurag's GitHub stats Top Langs

Thank you for visiting my profile, see you next time!

Pinned Loading

  1. this-repository-is-based Public

    This repository is based

    Rust 2

  2. noti-rs/noti Public

    Modern desktop notification daemon

    Rust 7

  3. Python implementation of https://en....
    1
    import sys
    2
    from copy import copy
    3
    
                  
    4
    Matrix = list[list[int]]
    5
    
                  
  4. dotfiles Public

    My dotfiles

    Nushell 2

  5. Flat linked list for any values, bas...
    1
    #[derive(Debug)]
    2
    pub struct Node<T> {
    3
        value: T,
    4
        next: Option<usize>,
    5
    }
  6. Simple implementation of LinkedList<...
    1
    use std::{
    2
        marker::PhantomData,
    3
        ops::{Index, IndexMut},
    4
        ptr::NonNull,
    5
    };