Skip to content

Instantly share code, notes, and snippets.

Python

On local machine

  1. Install debugpy in application virtualenv
  2. Run django server with debugpy: python -m debugpy --listen 5678 manage.py runserver --noreload 0.0.0.0:8000
  3. In neovim F5 (attach to 127.0.0.1, port 5678)

In docker container

@abidibo
abidibo / FPJS.md
Last active November 26, 2020 14:13
FP

FP in JS

Imperative VS Declarative

Imperative: tell the program how to do stuff, how the control flow goes and how the state changes. Declarative: tell the program what the logic is, describe the problem.

Declarative programs, specifically functional ones, raise the level of abstraction by using a minimally structured flow made up of independent blackbox operations that connect in a simple topology. These connected operations are nothing more than higher-order functions that move state from one operation to the next.

Example: quicksort algorithm

@abidibo
abidibo / gist:a5dae11a05c4ea22d526c00801f507d3
Created June 5, 2019 10:26
Material about memcached and kubernetes
https://karrier.io/blog/memcached-on-kubernetes/
https://stackoverflow.com/questions/50180560/memcache-on-kubernetes
https://www.kubestack.com/catalog/memcached-v0.2.1-kbst.2/documentation
@abidibo
abidibo / ngrxintro.md
Last active April 10, 2018 13:33 — forked from btroncone/ngrxintro.md
A Comprehensive Introduction to @ngrx/store - Companion to Egghead.io Series

Comprehensive Introduction to @ngrx/store

By: @BTroncone

Also check out my lesson @ngrx/store in 10 minutes on egghead.io!

Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!

Table of Contents

@abidibo
abidibo / PyQt.md
Last active March 14, 2018 11:56
PyQt Stuff

PyQt5 Stuff

i18n

Install the following package

$ sudo apt-get install pyqt5-dev-tools

In my case it was also necessary to install this other package to use linguist command

@abidibo
abidibo / code-plugins.vim
Last active October 23, 2017 15:10
A vim configuration model
" Indentation
Plug 'Yggdroot/indentLine'
" folding
Plug 'Konfekt/FastFold'
" pairs
Plug 'jiangmiao/auto-pairs'
" commentary
@abidibo
abidibo / vim-conf.md
Created October 20, 2017 12:46
Vim conf stuff
@abidibo
abidibo / rope.md
Last active October 20, 2017 10:47
ROpe stuff for vim

Rope stuff

By default you can use <Ctrl-Space> for autocompletion

Autocompletion is also called by typing a period in |Insert| mode by default.

By default when you press <C-C>g on any object in your code you will be moved to definition.

Pymode can rename everything: classes, functions, modules, packages, methods, variables and keyword arguments.

@abidibo
abidibo / gist:dcbfb642cbda28c5227545bc8d7a3549
Created October 13, 2017 12:33
Install Vim 8 with Python, Python 3, Ruby and Lua support on Ubuntu 16.04
sudo apt-get remove --purge vim vim-runtime vim-gnome vim-tiny vim-gui-common
sudo apt-get install liblua5.1-dev luajit libluajit-5.1 python-dev ruby-dev libperl-dev libncurses5-dev libatk1.0-dev libx11-dev libxpm-dev libxt-dev
#Optional: so vim can be uninstalled again via `dpkg -r vim`
sudo apt-get install checkinstall
sudo rm -rf /usr/local/share/vim /usr/bin/vim
cd ~
<html>
<head>
<meta charset="utf-8" />
<script
src="https://code.jquery.com/jquery-2.2.4.min.js"
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
crossorigin="anonymous"></script>
<script src="https://cdn.rawgit.com/TorinoMeteo/tm-widgets/3d120d9b/dist/tm-widgets.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/weather-icons/2.0.9/css/weather-icons.min.css" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Nova+Mono|Oswald:400,700" rel="stylesheet" />