Skip to content
View nij4t's full-sized avatar
🐳
︵ 📦
🐳
︵ 📦
Block or Report

Block or report nij4t

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

Pinned Loading

  1. Bazel Commands Bazel Commands
    1
    # `services` is a directory with application services that are packages as docker containers.
    2
    # It has source codes as well as BUILD.bazel files that define container images for each service.
    3
    # We ask git to give us a list of changed files in services directory which is then piped into
    4
    # bazel query comand that will give you all container image targets that should be rebuild.
    5
    git diff --name-only services ${PREVIOUS_REVISION} | xargs -I{dep} bazel query 'kind("_app_layer", rdeps(//services, {dep}))'
  2. Ingress Traffic Throttling Ingress Traffic Throttling
    1
    ########## downlink #############
    2
    # slow downloads down to somewhat less than the real speed  to prevent 
    3
    # queuing at our ISP. Tune to see how high you can set it.
    4
    # ISPs tend to have *huge* queues to make sure big downloads are fast
    5
    #
  3. Genrule with external executable binary Genrule with external executable binary
    1
    #           _       ______  ____  __ _______ ____  ___   ____________
    2
    #          | |     / / __ \/ __ \/ //_/ ___// __ \/   | / ____/ ____/
    3
    #          | | /| / / / / / /_/ / ,<  \__ \/ /_/ / /| |/ /   / __/
    4
    #          | |/ |/ / /_/ / _, _/ /| |___/ / ____/ ___ / /___/ /___
    5
    #          |__/|__/\____/_/ |_/_/ |_/____/_/   /_/  |_\____/_____/
  4. Preact + ReduxZero + TypeScript w/ p... Preact + ReduxZero + TypeScript w/ persistent state
    1
    import { BoundActions } from "redux-zero/types/Actions";
    2
    import { Provider, connect } from "redux-zero/preact"
    3
    import createStore from "redux-zero";
    4
    import { h, render, Fragment } from 'preact'
    5
    
    
  5. nginx-ingress-modsecurity nginx-ingress-modsecurity Public

    ModSecurity Web Application Firewall for NGINX. Based on nginx-ingress:alpine docker image

    Dockerfile

  6. dwm dwm Public

    Dynamic window manager for X

    C