Skip to content

Instantly share code, notes, and snippets.

FROM openresty/openresty:alpine
COPY nginx.conf /usr/local/openresty/nginx/conf
COPY test.lua /usr/local/openresty/nginx/test.lua
COPY required.lua /usr/local/openresty/lualib/required.lua
@Anton6896
Anton6896 / README.MD
Created September 18, 2021 15:36 — forked from JohnDinhDev/Reset Udemy Progress.md
Reset Udemy Progress

Reset Udemy Progress

Step 1. Go to Udemy course in browser

Go to the course and have any video up. The following code relies on the right sidebar to uncheck all your progress.

Step 2. Open browser console

You can do this with ctrl+shift+i and then clicking on the console tab

Step 3. Run code in browser console

Copy and paste this code in the console

@Anton6896
Anton6896 / .vimrc
Created September 4, 2021 17:06 — forked from miguelgrinberg/.vimrc
My .vimrc configuration for working in Python with vim
" plugins
let need_to_install_plugins = 0
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
let need_to_install_plugins = 1
endif
call plug#begin()
Plug 'tpope/vim-sensible'