Open your terminal.
In the root directory run the command:
sudo nano /etc/bluetooth/main.conf
| import { Component } from '@angular/core'; | |
| import { of } from 'rxjs'; | |
| import { tap, switchMap} from 'rxjs/operators'; | |
| import { retryBackoff } from 'backoff-rxjs'; | |
| import { BackendService, HttpError } from './backend.service'; | |
| export const INIT_INTERVAL_MS = 100; // 100 ms | |
| export const MAX_INTERVAL_MS = 20 * 1000; // 20 sec | |
| @Component({ |
| require 'openssl' | |
| require 'Base64' | |
| key = "secret-key" | |
| data = "some data to be signed" | |
| Base64.encode64(OpenSSL::HMAC.digest(OpenSSL::Digest::Digest.new('sha256'), key, data)).strip() |
| using Newtonsoft.Json; | |
| using System; | |
| using System.Collections.Specialized; | |
| using System.Net; | |
| using System.Text; | |
| //A simple C# class to post messages to a Slack channel | |
| //Note: This class uses the Newtonsoft Json.NET serializer available via NuGet | |
| public class SlackClient | |
| { |
$ uname -r
| #!/bin/bash | |
| SENDGRID_API_KEY="" | |
| EMAIL_TO="" | |
| FROM_EMAIL="" | |
| FROM_NAME="" | |
| SUBJECT="" | |
| bodyHTML="<p>Email body goes here</p>" |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
If you just want to fix the issue quickly, scroll down to the "solution" section below.
If you're a Homebrew user and you installed node via Homebrew, there is a major philosophical issue with the way Homebrew and NPM work together. If you install node with Homebrew and then try to do npm update npm -g, you may see an error like this:
$ npm update npm -g
| #!/usr/bin/env python2 | |
| """ | |
| Other Repositories of python-ping | |
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
| * https://github.com/l4m3rx/python-ping supports Python2 and Python3 | |
| * https://bitbucket.org/delroth/python-ping |