Skip to content
View gleydson404's full-sized avatar
Block or Report

Block or report gleydson404

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

    Forked from jakevdp/PythonDataScienceHandbook

    Jupyter Notebooks for the Python Data Science Handbook

    Jupyter Notebook 3 4

  2. kmeans kmeans Public

    Just a simple implementation of k-means algorithm

    Jupyter Notebook 2 1

  3. My neovim init.vim file. My neovim init.vim file.
    1
    call plug#begin()
    2
    Plug 'Xuyuanp/nerdtree-git-plugin'
    3
    Plug 'tpope/vim-surround'
    4
    Plug 'tpope/vim-commentary'
    5
    Plug 'tpope/vim-fugitive'
  4. my .config/termite/conf my .config/termite/conf
    1
    [options]
    2
    #allow_bold = true
    3
    #audible_bell = false
    4
    #bold_is_bright = true
    5
    #clickable_url = true
  5. A first version of a clojure script ... A first version of a clojure script to calculate baskara.
    1
    (defn delta [a b c]  (- (Math/pow b 2) (* 4 a c ) ) )
    2
    (defn r1 [a b c] (/ (+ (* b -1) (Math/sqrt (delta a b c))) (* 2 a)))
    3
    (defn r2 [a b c] (/ (- (* b -1) (Math/sqrt (delta a b c))) (* 2 a)))
    4
    (defn baskara [a b c]
    5
      (if (> (delta a b c) 0)
  6. clear-lambda-storage clear-lambda-storage Public

    Forked from epsagon/clear-lambda-storage

    Removes old versions of Lambda functions

    Python