Power Shell script that I have used for cleaning accounts mess in windows.
##Requirements
- Exchange PowerShell
- Outlook with your account liked to it [needed for export]
##Use it if you need
This is folder based encoder script written in bash/zsh that allows you to encode bunch of Wave files to MP3 with ID3 and embedded artwork.
Script has to be ran inside of the folder named: CATALOGUE####] Artist Name - Album Name
The structure inside forlder should look like that: Artist Name - Track name.wav Track itself
#!/bin/bash | |
USERNAME=$1 | |
get_heads () { | |
hg heads --template "{branches}:{author}\n" | |
} | |
find_user_branches () { | |
get_heads | grep -i "$USERNAME" | |
} |
// this script is to be pasted into google chrome when you on messages page | |
// !!! ACTHUNG: IT WILL DESTROY ALL OF YOUR MESSAGES !!! | |
// I think it will remove everything including history | |
// Be careful. Make sure you don't need all of you N*k messages | |
// TO REMOVE HISTORY | |
// 1. go to history page | |
// 2. check what url is called for load messages and when you delete messages forever | |
// 3. replace urs accordinly in loadMessages, deleteAllWith |
defmodule SipsMatcher do | |
require :gen_fsm | |
def consume_s(fsm) do | |
:gen_fsm.sync_send_event(fsm, :s) | |
end | |
def consume_not_s(fsm) do | |
:gen_fsm.sync_send_event(fsm, :not_s) | |
end |
defmodule Pmap do | |
@moduledoc """ | |
Parrallel map calculator | |
Calculates a result of a &function/1 | |
""" | |
@doc """ | |
emit a process, which calculates a number | |
and sends a message |