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
// based on a keyboard map from an 'xkb/symbols/se' file | |
// | |
// $XKeyboardConfig$ | |
// $XFree86: xc/programs/xkbcomp/symbols/se,v 1.5 2003/01/26 02:01:48 dawes Exp $ | |
partial default alphanumeric_keys | |
xkb_symbols "basic" { | |
include "latin(type2)" | |
include "se(se)" |
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/subsonic-main/src/main/java/net/sourceforge/subsonic/service/SettingsService.java b/subsonic-main/src/main/java/net/sourceforge/subsonic/service/SettingsService.java | |
index f7031bf..39ee5b4 100644 | |
--- a/subsonic-main/src/main/java/net/sourceforge/subsonic/service/SettingsService.java | |
+++ b/subsonic-main/src/main/java/net/sourceforge/subsonic/service/SettingsService.java | |
@@ -620,14 +620,11 @@ public class SettingsService { | |
} | |
public boolean isLicenseValid() { | |
- return isLicenseValid(getLicenseEmail(), getLicenseCode()) && licenseValidated; | |
+ return 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
#!/bin/bash | |
LOGG=/home/fille/Loggar/snapshots.txt | |
touch $LOGG | |
exec >> $LOGG 2>&1 | |
DATE=$(date +%Y%m%d) | |
echo "" | |
echo "Written by snapshot.sh" | |
echo "-------------------------" |
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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
%% %% | |
%% easylist.sty v.1.3 by Paul Isambert %% | |
%% See the documentation for a comment on the implementation. %% | |
%% %% | |
%% This set of macros is published under the LaTeX Project Public License. %% | |
%% %% | |
%% Comments, suggestions and bugs: %% | |
%% %% | |
%% [email protected] %% |
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
\usepackage[utf8]{inputenc} | |
\usepackage[swedish]{babel} | |
\usepackage{url} | |
%\usepackage{fullpage} | |
%\topmargin = 1pt %20pt | |
%\headsep = 25pt %25pt | |
%\usepackage[top=85pt]{geometry} | |
\usepackage[colorlinks=true, linkcolor=black, urlcolor=blue]{hyperref} | |
\usepackage[T1]{fontenc} | |
\usepackage{lmodern} |
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
#!/usr/bin/env bash | |
lst="$(curl -s http://www.clojure-toolbox.com/ \ | |
| sed -n 's/.*href="\([^"]*\).*/\1/p' \ | |
| grep -F 'https://github.com' | sort | uniq)" | |
dir="$PWD" | |
mkdir -p toolbox-projects | |
cd toolbox-projects |
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
(spec/fdef ::predicate | |
:args (spec/cat :arg any?) | |
:ret boolean?) | |
(spec/fdef ::nullary-fn | |
:args (spec/cat) | |
:ret any?) | |
(spec/fdef ::unary-fn | |
:args (spec/cat :first any?) |
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
count name | |
14697 :description | |
12007 :url | |
136 :mailing-list | |
5 :mailing-lists | |
11641 :license | |
24 :licenses | |
1821 :min-lein-version | |
14154 :dependencies | |
2 :managed-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
(require '[clojure.spec.alpha :as spec]) | |
;;; Spec does not report the name of the predicate when not wrapped in a spec. | |
(spec/assert number? nil) | |
;; Spec assertion failed val: nil fails predicate: | |
;; :clojure.spec.alpha/unknown :clojure.spec.alpha/failure | |
;; :assertion-failed | |
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
server { | |
listen 443; | |
server_name cyd.liu.se; | |
include includes/cyd.liu.se-commons; | |
include includes/security; | |
ssl_certificate /etc/ssl/certs/cyd.liu.se.crt; | |
ssl_certificate_key /etc/ssl/private/cyd.liu.se.key; | |
} |
OlderNewer