Skip to content
View Archina's full-sized avatar
Block or Report

Block or report Archina

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

Pinned

  1. Varzeki/mobot Varzeki/mobot Public

    Alternative administration bot for IRC written in ruby.

    Ruby 4 2

  2. Attempt for an Implementation of the... Attempt for an Implementation of the Observer Pattern in Rust
    1
    use std::vec::Vec;
    2
    use std::rc::{Weak,Rc};
    3
    
                  
    4
    pub trait Observer{
    5
    	fn on_notify( &self ) -> ();
  3. Implementing a simple Stack within Rust Implementing a simple Stack within Rust
    1
    use std::boxed::Box;
    2
    use std::mem;
    3
    
                  
    4
    enum CellarState<S>{
    5
        Empty,