Skip to content
View sputnick1124's full-sized avatar

Block or report sputnick1124

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 Loading

  1. spotify-tui spotify-tui Public

    Forked from Rigellute/spotify-tui

    Spotify for the terminal written in Rust 🚀

    Rust

  2. fuzzyc fuzzyc Public

    Stripped down C library for fast Fuzzy Logic (on the order of nano seconds)

    C 4 1

  3. yapflm yapflm Public

    Yet Another Python Fuzzy Logic Module

    Python 1

  4. projecteuler.rs projecteuler.rs Public

    Rust solutions to projecteuler.net problems

    Rust

  5. Simple data logger class for capturi... Simple data logger class for capturing easily plottable files
    1
    #include <iostream>      // std::[cerr|endl]
    2
    #include <iomanip>       // std::setprecision
    3
    #include <limits>        // std::numeric_limits
    4
    #include <fstream>       // std::ofstream
    5
    #include <string>        // std::string
  6. C++ 3D trilinear interpolation C++ 3D trilinear interpolation
    1
    #include <vector>
    2
    #include <iostream>
    3
    #include <algorithm>
    4
    
                  
    5
    class ThreeDLookup {