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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Untitled</title> | |
| <link rel="stylesheet" href="http://kendo.cdn.telerik.com/2015.3.930/styles/kendo.common.min.css"> | |
| <link rel="stylesheet" href="http://kendo.cdn.telerik.com/2015.3.930/styles/kendo.rtl.min.css"> | |
| <link rel="stylesheet" href="http://kendo.cdn.telerik.com/2015.3.930/styles/kendo.default.min.css"> | |
| <link rel="stylesheet" href="http://kendo.cdn.telerik.com/2015.3.930/styles/kendo.mobile.all.min.css"> |
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
| public class AcrHelper | |
| { | |
| public static string GetAcrValue(IEnumerable<string> acrValues, string acrKey) | |
| { | |
| acrKey = string.Format("{0}:", acrKey); | |
| var acrKeyValue = acrValues.SingleOrDefault(x => x.StartsWith(acrKey)); | |
| if (acrKeyValue == null) return null; | |
| var acrValue = acrKeyValue.Substring(acrKey.Length); | |
| return acrValue; |
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 | |
| feh -xrz.Z --image-bg black --slideshow-delay 30 --no-fehbg /path/to/Backgrounds |
NewerOlder