This file contains hidden or 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 | |
is_steam_on_current_workspace () { | |
printf '%s' "$1" | jq -e '.current.nodes.[] | select(.name == "Steam")' > /dev/null | |
} | |
while json=$(i3-msg -t subscribe '["workspace"]'); do | |
if is_steam_on_current_workspace "$json"; then | |
i3-msg -q '[class="steam"] border pixel 1' | |
sleep 0.1 |
This file contains hidden or 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
{ | |
"@context": "http:\/\/iiif.io\/api\/presentation\/3\/context.json", | |
"id": "https:\/\/transcrire.histolab.fr\/iiif-presentation\/3\/item\/18611\/manifest", | |
"type": "Manifest", | |
"behavior": [ | |
"individuals", | |
"no-auto-advance" | |
], | |
"viewingDirection": "left-to-right", | |
"label": { |
This file contains hidden or 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
{ | |
"@context": [ | |
"http://iiif.io/api/presentation/2/context.json", | |
"http://wellcomelibrary.org/ld/ixif/0/context.json" | |
], | |
"@id": "https://wellcomelibrary.org/iiif/b17307703/manifest", | |
"@type": "sc:Manifest", | |
"label": "I remember: Sir Henry Dale.", | |
"metadata": [ | |
{ |
This file contains hidden or 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
SLF4J: Class path contains multiple SLF4J bindings. | |
SLF4J: Found binding in [jar:file:/home/ginco/ginco/ginco-cli/target/lib/logback-classic-1.0.9.jar!/org/slf4j/impl/StaticLoggerBinder.class] | |
SLF4J: Found binding in [jar:file:/home/ginco/ginco/ginco-cli/target/lib/slf4j-log4j12-1.6.4.jar!/org/slf4j/impl/StaticLoggerBinder.class] | |
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation. | |
SLF4J: Actual binding is of type [ch.qos.logback.classic.util.ContextSelectorStaticBinder] | |
2017-10-11 11:41:59,067 INFO | main | o.s.context.support.ClassPathXmlApplicationContext | Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@65e2dbf3: startup date [Wed Oct 11 11:41:59 CEST 2017]; root of context hierarchy | |
2017-10-11 11:41:59,095 INFO | main | o.s.beans.factory.xml.XmlBeanDefinitionReader | Loading XML bean definitions from class path resource [applicationContext-cli.xml] | |
2017-10-11 11:41:59,336 INFO | main | o.s.beans.factory.config.PropertyPlacehold |
This file contains hidden or 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
# /home/koha/app.psgi | |
use Modern::Perl; | |
use Plack::Builder; | |
use Plack::App::CGIBin; | |
use Plack::App::Directory; | |
use Plack::App::URLMap; | |
use Mojo::Server::PSGI; |