Commit Type | Emoji |
---|---|
Git related | |
Initial Commit | 🎉 :tada: |
Merge | 🍭 :lollipop: |
Versions related | |
Upgrading Dependencies | ⬆️ :arrow_up: |
Downgrading Dependencies | ⬇️ :arrow_down: |
Version Tag | 🔖 :bookmark: |
Release | 📦 :package: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Config | |
cfkey=89e495e7941cf9e40e6980d14a16bf023ccd4c91 | |
[email protected] | |
cfhost=example.com | |
cfname=local.example.com | |
cfid=123456789 | |
# cfid = DNS Record ID. Available by using the rec_load_all call. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require 'vendor/mandrill/mandrill/src/Mandrill.php'; | |
define('API_KEY', '123456789QWERTY'); | |
define('TO_EMAIL', '[email protected]'); | |
define('TO_NAME', 'Foo Bar'); | |
if(!isset($_POST['mandrill_events'])) { | |
echo 'A mandrill error occurred: Invalid mandrill_events'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name lib.rs - sort by downloads | |
// @version 0.1 | |
// @description Sort by downloads | |
// @match https://lib.rs/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=lib.rs | |
// @grant none | |
// ==/UserScript== | |
(function() { |