Skip to content

Instantly share code, notes, and snippets.

View ernestas-poskus's full-sized avatar
💭
Lengthy disk encryption password eliminates keystroke errors

Ernestas Poskus ernestas-poskus

💭
Lengthy disk encryption password eliminates keystroke errors
View GitHub Profile
A good commit message looks like this:
Header line: explaining the commit in one line
Body of commit message is a few lines of text, explaining things
in more detail, possibly giving some background about the issue
being fixed, etc etc.
The body of the commit message can be several paragraphs, and
please do proper word-wrap and keep columns shorter than about
@ernestas-poskus
ernestas-poskus / seq_ops.rs
Created December 9, 2016 23:07 — forked from fero23/seq_ops.rs
Intersection and difference operations for iterators in Rust
pub trait IterOps<T, I>: IntoIterator<Item = T>
where I: IntoIterator<Item = T>,
T: PartialEq {
fn intersect(self, other: I) -> Vec<T>;
fn difference(self, other: I) -> Vec<T>;
}
impl<T, I> IterOps<T, I> for I
where I: IntoIterator<Item = T>,
T: PartialEq
@ernestas-poskus
ernestas-poskus / iptables_rules.sh
Created December 6, 2016 13:53 — forked from virtualstaticvoid/iptables_rules.sh
25 Most Frequently Used Linux IPTables Rules Examples
# Modify this file accordingly for your specific requirement.
# http://www.thegeekstuff.com
# 1. Delete all existing rules
iptables -F
# 2. Set default chain policies
iptables -P INPUT DROP
iptables -P FORWARD DROP
iptables -P OUTPUT DROP
@ernestas-poskus
ernestas-poskus / bash_args_shift.sh
Created November 28, 2016 08:46
Bash arguments shifting
#!/bin/bash
echo "There is $# args specified"
echo "The args supplied are $*"
echo "The first arg is $1"
echo "The PID of process is $$"
shift
echo "Arguments shifted now first argument is $1 and count is $#"
@ernestas-poskus
ernestas-poskus / task.yml
Created November 9, 2016 17:17 — forked from maxim/task.yml
Adding github to known_hosts with ansible
- name: ensure github.com is a known host
lineinfile:
dest: /root/.ssh/known_hosts
create: yes
state: present
line: "{{ lookup('pipe', 'ssh-keyscan -t rsa github.com') }}"
regexp: "^github\\.com"
@ernestas-poskus
ernestas-poskus / bash-cheatsheet.sh
Created October 26, 2016 19:19 — forked from LeCoupa/bash-cheatsheet.sh
Bash CheatSheet for UNIX Systems
#!/bin/bash
#####################################################
# Name: Bash CheatSheet for Mac OSX
#
# A little overlook of the Bash basics
#
# Usage:
#
# Author: J. Le Coupanec
# Date: 2014/11/04
@ernestas-poskus
ernestas-poskus / inline_dict.yaml
Last active January 25, 2019 07:25
Ansible inline dictionary definition from hosts
- name: Debug
hosts: all
sudo: yes
vars:
ips: "
{%- set ips = [] %}
{%- for host in groups['all'] %}
{{- ips.append(dict(type='host', database='IS', user='USER', address=hostvars[host].ansible_default_ipv4.address, method='md5', command='')) }}
{%- endfor %}
{{- ips -}}"
@ernestas-poskus
ernestas-poskus / ansible_shell_debug.yml
Last active January 11, 2021 21:07
Ansible debug shell command
---
- hosts: all
remote_user: root
tasks:
- shell: '/usr/sbin/ip a'
register: cmd
- debug:
msg: "{{ cmd.stdout }}"
@ernestas-poskus
ernestas-poskus / broadcaster.rs
Created August 16, 2016 07:51 — forked from generalelectrix/broadcaster.rs
Broadcaster: A single-producer, many-consumer channel abstraction with what I think are some nice features.
/// Create and run a new broadcaster, returning the sender used to broadcast a
/// message to multiple consumers, and the control structure used to generate a
/// new receiver for a consumer.
///
/// # Example
///
/// ```
/// let (bc, bc_ctrl) = broadcaster();
///
/// // Spawn some children that you would like to broadcast to:
@ernestas-poskus
ernestas-poskus / chef.md
Created August 5, 2016 06:50
Chef Tips

To debug cookbook:

  • require 'pry'; binding.pry
  • kitchen login
  • /opt/chef/embedded/bin/ruby /opt/chef/bin/chef-client --local-mode --config /tmp/kitchen/client.rb --log_level auto --force-formatter --no-color --json-attributes /tmp/kitchen/dna.json --chef-zero-port 8889