Skip to content

Instantly share code, notes, and snippets.

View zxbodya's full-sized avatar

Bogdan Savluk zxbodya

  • Uber
  • Amsterdam, Netherlands
View GitHub Profile
@staltz
staltz / introrx.md
Last active June 29, 2024 15:58
The introduction to Reactive Programming you've been missing
@dakatsuka
dakatsuka / mailcatcher.sh
Created December 15, 2013 10:57
/etc/init.d/mailcatcher
#!/bin/bash
PID_FILE=/var/run/mailcatcher.pid
NAME=mailcatcher
PROG=/opt/rbenv/versions/1.9.3-p484/bin/mailcatcher
USER=mailcatcher
GROUP=mailcatcher
start() {
echo -n "Starting MailCatcher"
@Turin86
Turin86 / WSSoapClient.php
Last active April 24, 2023 19:37 — forked from johnkary/WSSoapClient.php
WS-Security for PHP SoapClient
<?php
/**
* This class can add WSSecurity authentication support to SOAP clients
* implemented with the PHP 5 SOAP extension.
*
* It extends the PHP 5 SOAP client support to add the necessary XML tags to
* the SOAP client requests in order to authenticate on behalf of a given
* user with a given password.
*