I hereby claim:
- I am ryukinix on github.
- I am lerax (https://keybase.io/lerax) on keybase.
- I have a public key whose fingerprint is FE71 E643 E21B 1A2D 05B8 311F B0D0 EC75 0061 E91C
To claim this, I am signing this object:
| pub fn main() { | |
| println!("Hello world!"); | |
| } |
I hereby claim:
To claim this, I am signing this object:
| #| | |
| MANOEL VILELA © 2018 | |
| MULTIPLE LINEAR REGRESSION ALGORITHM FROM SCRATCH. | |
| FOR EDUCATIONAL PURPOSES. | |
| |# |
| from dataclasses import dataclass | |
| from typing import T | |
| """ | |
| A naive Linked List implementation using dataclass as node. | |
| """ | |
| @dataclass | |
| class Node: |
| #!/usr/bin/env python3 | |
| # coding: utf-8 | |
| # | |
| # Copyright © Neoway Business Solutions | |
| # | |
| # @project: Diário Oficial | |
| # @author: Manoel Vilela | |
| # | |
| """ |
| /** | |
| * ================================================ | |
| * | |
| * Copyright 2018 Manoel Vilela | |
| * | |
| * Author: Manoel Vilela | |
| * Contact: manoel_vilela@engineer.com | |
| * Organization: UFC | |
| * | |
| * =============================================== |
| #!/bin/sh | |
| # | |
| # /lib/elogind/system-sleep/lock.sh | |
| # Lock before suspend integration with elogind | |
| username=lerax | |
| userhome=/home/$username | |
| export XAUTHORITY="$userhome/.Xauthority" | |
| export DISPLAY=":0.0" |
| #!/bin/sh | |
| # | |
| # /lib/elogind/system-sleep/lock.sh | |
| # Lock before suspend integration with elogind | |
| username=lerax | |
| userhome=/home/$username | |
| export XAUTHORITY="$userhome/.Xauthority" | |
| export DISPLAY=":0.0" |
| #!/usr/bin/sbcl --script | |
| #| | |
| Manoel Vilela © 2018 | |
| This script helps me building a simple ASDF project for Common Lisp | |
| based in the library quickproject. | |
| |# |
| (require 'package) | |
| (setq packages-archives '("melpa" . "https://melpa.org/packages/")) | |
| (defvar *my-packages* '(company | |
| slime-company | |
| doom-themes | |
| powerline | |
| airline-themes) | |
| "My wonderful packages") |