Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am parabellum1905y on github.
  • I am luger_08 (https://keybase.io/luger_08) on keybase.
  • I have a public key ASAAbz9dyziZ8ZkP86L4zB_QHSUdVPFJUqskVOMZHNl2NQo

To claim this, I am signing this object:

@Parabellum1905y
Parabellum1905y / Main.java
Last active April 19, 2018 19:14
stack revereing
import java.util.Arrays;
import java.util.Optional;
class Stack<T>{
private int capacity = 32;
private Object[] container = new Object[capacity];
private int size = 0;
-module(first).
-export([mult/2, triangleArea/3, square/1, treble/1]).
mult(X, Y)->
X*Y.
%%mult(2, 3).
%%P = 10,12.
extern crate telegram_bot;
use telegram_bot::*;
fn main() {
// Create bot, test simple API call and print bot information
let api = Api::from_env("TELEGRAM_BOT_TOKEN").unwrap();
println!("getMe: {:?}", api.get_me());
let mut listener = api.listener(ListeningMethod::LongPoll(None));
@Parabellum1905y
Parabellum1905y / NixSetup.md
Created January 10, 2017 12:07 — forked from rehno-lindeque/NixSetup.md
NixOS Setup (Virtualized + Haskell + Gnome3 + XMonad)