slidenumbers: true slide-transition: true theme: Next, 9 footer: フッター autoscale: 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
(require 'ol) | |
(defconst my-org-link-prefixes '(("id" . "🦄") | |
("roam" . "🦄") | |
("attachment" . "📎") | |
("file" . "💾") | |
("file+sys" . "💾") | |
("file+emacs" . "🗒") | |
("shell" . "💻") | |
("https" . "🌐") | |
("http" . "🌐") |
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
/* | |
Copyright (c) 2017 Chris Patuzzo | |
https://twitter.com/chrispatuzzo | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: |
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
openapi: 3.0.0 | |
info: | |
version: 1.0.0 | |
title: Swagger Petstore | |
license: | |
name: MIT | |
servers: | |
- url: 'http://www.example.org' | |
paths: | |
/pets: |
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
gfind . -name '*.mp4' -print0 | gxargs -0 -I{} sh -c 'ffmpeg -i "{}" -t $(echo "$(ffprobe -i "{}" -show_entries format=duration -v quiet -of csv="p=0") - 15" | bc) "cropped_$(basename "{}")"' |
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
{ | |
"swagger": "2.0", | |
"info": { | |
"description": "", | |
"version": "1.0.0", | |
"title": "Swagger Petstore" | |
}, | |
"host": "petstore.swagger.io", | |
"basePath": "/v2", | |
"schemes": [ |
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
199.91.171.93 au-m.rubygems.org bb-m.rubygems.org | |
54.186.104.15 api.rubygems.org rubygems.org |
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 -Naru znc-1.0.orig/src/Chan.cpp znc-1.0/src/Chan.cpp | |
--- znc-1.0.orig/src/Chan.cpp 2013-03-18 04:46:49.000000000 +0900 | |
+++ znc-1.0/src/Chan.cpp 2013-03-18 05:20:17.000000000 +0900 | |
@@ -548,7 +548,7 @@ | |
NETWORKMODULECALL(OnChanBufferStarting(*this, *pUseClient), m_pNetwork->GetUser(), m_pNetwork, NULL, &bSkipStatusMsg); | |
if (!bSkipStatusMsg) { | |
- m_pNetwork->PutUser(":***[email protected] PRIVMSG " + GetName() + " :Buffer Playback...", pUseClient); | |
+ m_pNetwork->PutUser(":***[email protected] NOTICE " + GetName() + " :Buffer Playback...", pUseClient); | |
} |
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 http://stackoverflow.com/questions/15182496/why-does-this-code-print-hello-world | |
import java.util.Random | |
import scala.annotation.tailrec | |
object HelloWorld extends App { | |
println(randomString(-229985452) +" "+ randomString(-147909649)) | |
println(randomString2(-229985452) +" "+ randomString2(-147909649)) | |
println(randomString3(-229985452) +" "+ randomString3(-147909649)) | |
println(randomString4(-229985452) +" "+ randomString4(-147909649)) | |
def randomString(i :Int) :String = { |
NewerOlder