| TLD | Company |
|---|---|
| .ITAU | Itau Unibanco Holding S.A. |
| .BRADESCO | Banco Bradesco S.A. |
| .IPIRANGA | Ipiranga Produtos de Petroleo S.A. |
| .BOM | Núcleo de Informação e Coordenação do Ponto BR - NIC.br |
| .FINAL | Núcleo de Informação e Coordenação do Ponto BR - NIC.br |
| .RIO | Empresa Municipal de Informática SA - IPLANRIO |
| // See: https://devforums.apple.com/message/1000934#1000934 | |
| import Foundation | |
| // Logic | |
| operator prefix ¬ {} | |
| @prefix func ¬ (value: Bool) -> Bool { | |
| return !value | |
| } |
I heard from GitHub Two-Factor Authentication](https://github.com/blog/1614-two-factor-authentication) nearly a couple of days ago when I was reading my RSS feed. I enabled it and couldn' push to any of my repositories anymore. Learn in this blog post how to fix it.
"Is a process involving two stages to verify the identity of an entity trying to access services in a computer or in a network". Github solves this authentication with sending an SMS to a device which wants to push to their platform.
This simple script will take a picture of a whiteboard and use parts of the ImageMagick library with sane defaults to clean it up tremendously.
The script is here:
#!/bin/bash
convert "$1" -morphology Convolve DoG:15,100,0 -negate -normalize -blur 0x1 -channel RBG -level 60%,91%,0.1 "$2"
You templates must live in app/views, as usual. To render it, just use something like below.
Renderer.render(template: "message", locals: {name: "John Doe"});| RSpec.configure do |config| | |
| config.before(:suite) do | |
| DatabaseCleaner.clean_with(:truncation) | |
| end | |
| config.before(:each) do | |
| DatabaseCleaner.strategy = :transaction | |
| end | |
| config.before(:each, js: true) do |
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
| #!/usr/bin/env bash | |
| if [[ ! -f "$1" ]]; then | |
| echo "=> Movie file not found" | |
| exit 1 | |
| fi | |
| tempfile=/tmp/output.gif | |
| rm -f $tempfile |