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
diff --git a/build/Portal-HttpModule.build b/build/Portal-HttpModule.build | |
index 065dac8..4395f77 100644 | |
--- a/build/Portal-HttpModule.build | |
+++ b/build/Portal-HttpModule.build | |
@@ -18,7 +18,7 @@ | |
targetkind="dll" | |
logfile="ilmerge.log" | |
targetplatform="v4" | |
- targetplatformdirectory="C:\Windows\Microsoft.NET\Framework64\v4.0.30319"> | |
+ targetplatformdirectory="C:\Windows\Microsoft.NET\Framework\v4.0.30319"> |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
config.vm.box = "malthejorgensen/caffe-deeplearning" | |
# config.vm.provider "virtualbox" do |vb| | |
# # Display the VirtualBox GUI when booting the machine | |
# vb.gui = true | |
# |
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
function AjaxError(jqXHR, textStatus, errorThrown) { | |
this.name = "AjaxError"; | |
this.message = textStatus; | |
this.jqXHR = jqXHR; | |
this.errorThrown = errorThrown; | |
} | |
AjaxError.prototype = new Error(); | |
AjaxError.prototype.constructor = AjaxError; | |
(function($) { |
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 | |
/** | |
* Display SVG in attachment modal | |
*/ | |
if ( ! defined( 'ABSPATH' ) ) { | |
exit; // Exit if accessed directly | |
} | |
function bodhi_svgs_response_for_svg( $response, $attachment, $meta ) { |
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
https://www.torvpn.com/en/disposable-email | |
https://brimconsulting.com/2014/01/17/kens-really-big-list-of-disposable-email-domains/ | |
https://stackoverflow.com/a/33436292/118608 | |
https://thetechhacker.com/2016/02/10/temporary-disposable-email-provider-list/ | |
http://www.idiotinside.com/disposable-temporary-email-address-validation/ | |
https://invisioncommunity.com/forums/topic/391399-disposabletemp-email-addresses/ | |
https://www.torvpn.com/en/disposable-email | |
https://gist.github.com/adamloving/4401361 | |
https://forums.oneplus.net/threads/temporary-email-domains-that-need-to-be-banned-from-reservation-list.349929/ | |
https://theadminzone.com/threads/list-of-temporary-emails-that-you-should-ban.97784/ |
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
use std::fs::File; | |
use std::io::prelude::*; | |
fn main() -> std::io::Result<()> { | |
let mut file = File::open("foo.txt")?; | |
let mut contents = String::new(); | |
file.read_to_string(&mut contents)?; | |
let mut sum: u64 = 0; | |
for line in contents.lines() { |
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
# fish shell: Update both normal prompt and right prompt when executing a command | |
# | |
# This hook can be used to ensure e.g. a branch name in the main prompt and | |
# a timestamp in the right prompt reflects when the command was actually | |
# run, rather than when the prompt was printed. | |
# | |
# This version tries to handle multi-line commands, but doesn't print the | |
# `fish_right_prompt` when doing so. | |
function reprint_prompt --on-event fish_preexec | |
set -l _prompt (fish_prompt) |
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
[tool.poetry] | |
name = "poetry-1-2-0-bleach-issue" | |
version = "0.1.0" | |
description = "" | |
authors = ["Jane Doe <[email protected]>"] | |
license = "MIT" | |
readme = "README.md" | |
packages = [{include = "poetry_1_2_0_bleach_issue"}] | |
[tool.poetry.dependencies] |
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
// FROM: https://gist.github.com/eladkarako/119e91525d34db9f61cca23b18fd62a0#file-h264_codec_string_parser-js | |
// | |
// Changes: | |
// 1. Change to work on uppercase strings | |
// 2. Allow passing codec string as command line argument, e.g. `node h264_codec_string_parser.js avc1.42C03E` | |
// 3. Parse `constraint_set_flags` as well | |
// | |
ISOAVC_MAP = { | |
"avc1": "H.264" | |
,"avc2": "H.264" |