This Gist is similar to https://gist.github.com/noteed/8656989 which uses Open vSwitch instead of Tinc.
Download the install.sh script and run it:
> https://gist.githubusercontent.com/noteed/11031504/raw/install.sh
| Dear Sir/Madam: | |
| I am writing to you in your capacity as data protection officer for your | |
| company. In light of recent spam received on this email address, | |
| I am making this request for access to personal data | |
| pursuant to Article 15 of the General Data Protection Regulation. | |
| I am concerned that your company’s information practices may be putting my | |
| personal information at undue risk of exposure or in fact has breached its | |
| obligation to safeguard my personal information. |
| #!/usr/bin/env python3 | |
| import boto3 | |
| import argparse | |
| class StaleSGDetector(object): | |
| """ | |
| Class to hold the logic for detecting AWS security groups that are stale. | |
| """ | |
| def __init__(self): | |
| super(StaleSGDetector, self).__init__() |
This Gist is similar to https://gist.github.com/noteed/8656989 which uses Open vSwitch instead of Tinc.
Download the install.sh script and run it:
> https://gist.githubusercontent.com/noteed/11031504/raw/install.sh
This Gist shows how to use Open vSwitch to bridge Docker containers on two hosts. It is based on this blog post http://goldmann.pl/blog/2014/01/21/connecting-docker-containers-on-multiple-hosts/.
A similar Gist using Tinc instead of Open vSwitch is available: https://gist.github.com/noteed/11031504.
| // Comcast Cable Communications, LLC Proprietary. Copyright 2014. | |
| // Intended use is to display browser notifications for critical and time sensitive events. | |
| var _ComcastAlert = (function(){ | |
| return { | |
| SYS_URL: '/e8f6b078-0f35-11de-85c5-efc5ef23aa1f/aupm/notify.do' | |
| , dragObj: {zIndex: 999999} | |
| , browser: null | |
| , comcastCheck: 1 | |
| , comcastTimer: null | |
| , xmlhttp: null |
| ### Keybase proof | |
| I hereby claim: | |
| * I am pierreozoux on github. | |
| * I am pierreozoux (https://keybase.io/pierreozoux) on keybase. | |
| * I have a public key whose fingerprint is 172C 25C7 2840 DB0A D889 26A0 9426 5A67 410D 4B3C | |
| To claim this, I am signing this object: |
| # So TLS, which is the successor of SSL, is "Transport Layer Security". | |
| # It is a kind of super protocol that initiates an encrypted tunnel between the client and the server, | |
| # and then, you can use your normal verbs from your protocol as it was not encrypted. | |
| # For instance with http. Let's say you want to get a page from ubicast.eu | |
| # go to your terminal, and you can get it with | |
| telnet ubicast.eu 80 | |
| GET / HTTP/1.0 | |
| # and you get the index of the site. |
| <section class="h-card"> | |
| <h1> | |
| <a class="p-name u-url" href="{{ site.url }}">{{ site.author }}</a> | |
| </h1> | |
| {% if site.gravatar_email %} | |
| <img class="u-photo" src="{% gravatar_image %}" alt="Gravatar of {{ site.author }} " title="Gravatar of {{ site.author }}" /><br/> | |
| {% endif %} | |
| {% if site.bio %} | |
| <h2>Bio</h2> | |
| <p class="p-note">{{ site.bio }}</p> |
| function Car(color) { | |
| this.color = color | |
| } | |
| Car.prototype.getColor = function() { | |
| return this.color; | |
| } | |
| car = new Car('blue'); |