Skip to content
View esshka's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report esshka

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
esshka/README.md

πŸ’« About Me:

Im currently working on market making software based on genetic algorithms and deep learning

🌐 Socials:

Medium

πŸ’» Tech Stack:

Clojure Java Kotlin JavaScript Lua Ruby Rust Neo4J Postgres Redis Keras Pandas PyTorch scikit-learn TensorFlow APACHEKAFKA ElasticSearch Terraform GRAFANA PROMETHEUS CIRCLECI Docker mlflow Nginx Anaconda .Net NodeJS OpenGL React Rails RxJS Three js WebGL AWS Python C#

πŸ“Š GitHub Stats:



πŸ† GitHub Trophies

✍️ Random Dev Quote


Pinned Loading

  1. snake game state snake game state
    1
    import { makeAutoObservable } from 'mobx';
    2
    
                  
    3
    class SnakeGameStore {
    4
      // Defining the game grid size
    5
      gridSize = 10;
  2. tmux_cheatsheet.markdown tmux_cheatsheet.markdown
    1
    # tmux cheatsheet
    2
    
                  
    3
    As configured in [my dotfiles](https://github.com/henrik/dotfiles/blob/master/tmux.conf).
    4
    
                  
    5
    start new:
  3. Demonstration of implementation "inh... Demonstration of implementation "inheritance" in clojure
    1
    ;; Define a "base type" of Dog
    2
    (defrecord Dog [breed])
    3
    
                  
    4
    ;; Define a "sub type" of TrainedDog
    5
    (defrecord TrainedDog [dog word])
  4. pole balancing benchmark for genetic... pole balancing benchmark for genetic algorithm
    1
    const MAX_TIMESTEPS = 1000;
    2
    
                  
    3
    function initializeCartPoleEnvironment() {
    4
      const gravity = 9.8; // Acceleration due to gravity, m/s^2
    5
      const cartMass = 1.0; // Mass of the cart
  5. 0. description.md 0. description.md
    1
    - `defprotocol`: defines an interface
    2
    - `deftype`: create a bare-bones object which implements a protocol
    3
    - `defrecord`: creates an immutable persistent map which implements a protocol
    4
    
                  
    5
    Typically you'll use `defrecord` (or even a basic `map`);  
  6. compatibilityDistance.js compatibilityDistance.js
    1
    function compatibilityDistance(network1, network2, c1 = 1, c2 = 1, c3 = 0.4) {
    2
      const i1 = new Set(network1.connections.map((c) => c.innovation));
    3
      const i2 = new Set(network2.connections.map((c) => c.innovation));
    4
    
                  
    5
      const disjoint =