Skip to content
View gregmulvihill's full-sized avatar

Block or report gregmulvihill

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. Universal Number Base Converter Universal Number Base Converter
    1
    using System;
    2
    using System.Collections.Generic;
    3
    using System.Linq;
    4
    using System.Numerics;
    5
    using System.Text;
  2. Xaml Slider with Value Xaml Slider with Value
    1
    <ResourceDictionary
    2
    	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    3
    	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    4
    	xmlns:local="clr-namespace:RenderLoopDemo">
    5
    
                  
  3. Extensions Extensions
    1
    using System.Collections.Generic;
    2
    using System.Linq;
    3
    
                  
    4
    public static class Extensions
    5
    {
  4. Activation Functions Activation Functions
    1
    	public static class ActivationFx
    2
    	{
    3
    		//https://en.wikipedia.org/wiki/Activation_function
    4
    		//https://en.wikipedia.org/wiki/Sigmoid_function
    5
    		//https://www.desmos.com/calculator/pyhbgow7ba
  5. Random Helper Class Random Helper Class
    1
    using System;
    2
    using System.Collections.Generic;
    3
    using System.Linq;
    4
    
                  
    5
    	public static class RandomEx
  6. Iterative Tree Traversal Iterative Tree Traversal
    1
    		//https://www.techiedelight.com/inorder-tree-traversal-iterative-recursive/
    2
    		
    3
    		// Iterative function to perform in-order traversal of the tree
    4
    		public IEnumerable<object> inorderIterative()
    5
    		{