Skip to content
View macromaniac's full-sized avatar

Highlights

  • Pro

Block or report macromaniac

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. simple linear regression example usi... simple linear regression example using keras
    1
    import numpy as np
    2
    from keras.layers import Dense, Input
    3
    from keras.models import Model
    4
    
                  
    5
    x = Input((1,))
  2. simple typescript xhr using promises simple typescript xhr using promises
    1
    module XHR {
    2
    
                  
    3
    	export class Header {
    4
    		header: string;
    5
    		data: string;
  3. mp3 mp3 Public

    speed run for building a basic mp3 player via rpi

    Python

  4. Low level C# Bitmap Serializer. Sur... Low level C# Bitmap Serializer. Surprisingly 5x faster than the commonly used .net BitmapData (tested on 100x100 images). Mostly for when you want finer tune control over your bitmaps than .net gives you.
    1
    using System;
    2
    
                  
    3
    public class BitmapBytes
    4
    {
    5
        /// <summary>