Skip to content
View fritschy's full-sized avatar
  • Black Forest, Germany
Block or Report

Block or report fritschy

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. filterer filterer Public

    An experiment in implementing simple filtering expressions

    Rust

  2. zebot2 zebot2 Public

    ZeBot-NG, second generation of my IRC bot

    Rust

  3. r6502 r6502 Public

    Kind of a 6502 emulator...

    Rust 1

  4. Not so smallpt rust port... Not so smallpt rust port...
    1
    #![allow(non_snake_case)] use std::{collections::HashMap as HM,f64::consts::*,io
    2
    ::Write,ops::*, sync::mpsc::channel, thread::spawn,time::Instant as I};enum S{U(
    3
    f64,usize,Vec<V3>),F}#[derive(Copy, Clone)]#[repr(C)]struct V3(f64,f64,f64);impl
    4
    Add for V3{type Output=Self; fn add(self,o:Self)->Self{V3(self.0+o.0,self.1+o.1,
    5
    self.2+o.2)}}impl Sub for V3{type Output=Self;fn sub(self,o:Self)->Self{V3(self.
  5. particles particles Public

    barnes-hut n-body "gravity" simulation

    C++ 1

  6. mampf mampf Public

    A parser combinator experiment

    Rust