Skip to content
View tony-0tis's full-sized avatar
📈
Lets grow
📈
Lets grow
Block or Report

Block or report tony-0tis

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
tony-0tis/README.md

Hi there 👈(゚ヮ゚👈)

I'm a developer. I hope that's enough for you. ᓚᘏᗢ

Pinned Loading

  1. A simple script to run asynchronous ... A simple script to run asynchronous tasks sequentially. Alternative to async.waterfall
    1
    # 0tis-waterfall
    2
    
                  
    3
    A simple script to run asynchronous tasks sequentially. Alternative to async.waterfall
    4
    
                  
    5
    ## Install
  2. A simple script to run asynchronous ... A simple script to run asynchronous tasks with auto. Alternative to async.auto
    1
    # 0tis-autotasks
    2
    
                  
    3
    A simple script to run asynchronous tasks with auto. Alternative to async.auto
    4
    
                  
    5
    ## Install
  3. Simple es6 eventEmitter Simple es6 eventEmitter
    1
    class EventsEmitter {
    2
      constructor(){
    3
        this.events = {};
    4
      }
    5
      on(name, callback, context, once = false){
  4. Nginx SSL parameters for A+ rating o... Nginx SSL parameters for A+ rating on https://www.ssllabs.com/ with letsencrypt
    1
    server{
    2
      #...
    3
      
    4
      listen      *:443 ssl http2;
    5
      listen      [::]:443 ssl http2;
  5. js module for load indication js module for load indication
    1
    import EventsEmitter from "0tis-eventemitter";
    2
    
                  
    3
    class MultyLinesProcessLoader extends EventsEmitter{
    4
      defaultOptions = {
    5
        el: null,
  6. Short git aliases for .profile or .b... Short git aliases for .profile or .bashrc or .bash_profile or /etc/bash_profile
    1
     alias gs='git status '
    2
     alias ga='git add '
    3
     alias gap='git add --patch'
    4
     alias gaa='git add .'
    5
     alias gb='git branch '