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
| cloudflare-dns.com | |
| dns.google | |
| dns.nextdns.io | |
| mozilla.cloudflare-dns.com | |
| firefox.dns.nextdns.io | |
| dns.google | |
| dns.quad9.net | |
| cloudflare-dns.com | |
| security.cloudflare-dns.com | |
| family.cloudflare-dns.com |
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
| youtube.com | |
| www.youtube.com | |
| m.youtube.com | |
| youtu.be | |
| ytimg.com | |
| googlevideo.com | |
| youtubei.googleapis.com | |
| youtube.googleapis.com | |
| youtube-ui.l.google.com | |
| ytimg.l.google.com |
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
| using CommonInterfaces.Infrastructure; | |
| using System; | |
| using System.Collections.Concurrent; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace Cache | |
| { |
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
| #System-wide .bashrc file for interactive bash(1) shells. | |
| export BASH_SILENCE_DEPRECATION_WARNING=1 | |
| parse_git_branch() { | |
| git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' | |
| } | |
| export CLICOLOR=1 | |
| export LSCOLORS=GxFxCxDxBxegedabagaced | |
| gray="\001\e[90m\002" |
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/bash | |
| # $bing is needed to form the fully qualified URL for | |
| # the Bing pic of the day | |
| bing="https://www.bing.com" | |
| # $xmlURL is needed to get the xml data from which | |
| # the relative URL for the Bing pic of the day is extracted | |
| # The idx parameter determines where to start from. 0 is the current day, | |
| # 1 the previous day, etc. |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Configuration; | |
| using System.Collections.Concurrent; | |
| namespace Config | |
| { | |
| public static class AppConfig | |
| { | |
| private static readonly AppConfigValues _config = new AppConfigValues(); |