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
# Make sure mod_ssl, mod_rewrite, mod_headers, mod_proxy, | |
# mod_proxy_http and mod_proxy_balancer are enabled | |
<VirtualHost *:80> | |
ServerName diaspora.example.org | |
ServerAlias www.diaspora.example.org | |
RedirectPermanent / https://diaspora.examle.org/ | |
</VirtualHost> | |
<VirtualHost *:443> |
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
#include <cstddef> | |
#include <functional> | |
#include <memory> | |
#include <type_traits> | |
#include <utility> | |
namespace detail | |
{ | |
template <typename...> | |
struct void_t_helper |
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 python | |
puzzle = [] | |
puzzle_s = ("9.5...1..", | |
"..18....6", | |
"..8.35.49", | |
"..9..4..1", | |
"78.3.1.65", |
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
import com.cloudbees.plugins.credentials.* | |
import com.cloudbees.plugins.credentials.common.* | |
import com.cloudbees.plugins.credentials.domains.* | |
import com.cloudbees.plugins.credentials.impl.* | |
import com.cloudbees.jenkins.plugins.sshcredentials.impl.* | |
import org.jenkinsci.plugins.plaincredentials.impl.* | |
final domain = Domain.global() | |
final store = SystemCredentialsProvider.instance.store |
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
0eNrlfd1uG82V7asEuhxIma7/KmMwN3Mb4FxMztVBINBSSyY+itSQlL8YAz9AHiQvNk9yuinJarF7V6+1JU9COYA/xxK1VLX/q2rtqv8++7x6aO+3y/X+8vNm89vZp/9++cru7NP/G/yz/97yarN+/PJuebterPqv7b/dt2efzpb79u7s/Gy9uOv/td8uluuL3X5zf/b9/Gy5vm7/evbJfD+f/cHu51YXT595+UkL/OTVYnu7ufh9cbtZD37SAT+52y+ufrtYrnftdt9uBz/sv//l/Kxd75f7Zfs47cM/vl2uH+4+d5/8ZIYTXu/uN9v9xed2te+w7ze77se6sXS/tYO6CPaP4fzsW/f/bMl/DN0vuV5u26vHj8R+lEfYlsB2FWw/ge0IbEOO2xPYDYkdcGyfSexIYBcSOxHYicTOBHYksQuB7Uls0xDggQUnPNOznmkI1/SOBSd807O+aQjn9KxzGsI7HetBhnBPx7q+IfzTsf5pCAd1rIMawkMd60SW8FDHur8lPNSxTmSVyTMiydM6HXiCwL0unGMjDzpwbORRF88TpNCky0QYeNYlCwy86JIFBO4aXbLAwI0uWWDgVpcsMHCnA4ecyHldJsJGHnTgEQKPukyEjVyZQ7GRZx04NvKiEws0ct/oEjQGbnQJGgO3upFDMvdON3IM3OtKC0wsQQeOjfzFQxfb5f7LXbtfXl1cbe4+L9eL/WY78TviIPJ24ersarPebzery8/tl8XXZfcj3edesC67b18ffn7Xf+Nmud3tL0fbI1+X2/1D95WXHZLDJy7axdWXfntk1/YwPdZuv+h3hi66cW/u2+3icWRn/9r96OZhf/9Ag39/nML6UUqHQZr+P7fbtl0Pt2CW1/0SMnz/S/cDtv/Etr0ef9/0OziTP+tL96Pfp3RABLIwCMEBUjARyEKpgE9lJl+kLa06uD+ATxnO1XJ79bDcv1iNxmi+tttv+y/L9e3Z4295spm+GO0s+36xPVj2p7N/O5OUP6naIKu2s8bnkff |
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
nix-shell -p 'python3Packages.buildPythonPackage rec { pname = "qobuz-dl"; version = "0.9.9.10"; src = fetchPypi { inherit pname version; hash = "sha256-q7TUl3scg+isoLB0xJvJLCtvJU7O+ogMlftt0O73qb4="; }; dependencies = with python3Packages; [ colorama requests mutagen pathvalidate tqdm (python3Packages.buildPythonPackage rec { pname = "pick"; version = "1.6.0"; format = "pyproject"; src = fetchPypi { inherit pname version; hash = "sha256-Kv1GyJtQIxHTuDHs7hoA6Kv4kq1elubLr5PxcrKa4cU="; }; nativeBuildInputs = [ poetry-core ]; doCheck = false; }) beautifulsoup4 ]; doCheck = false; }' --run 'python -c '"'"'from qobuz_dl.bundle import Bundle; from pprint import pformat; bundle = Bundle(); print(f"""App ID: {bundle.get_app_id()}\nSecrets:\n{pformat(bundle.get_secrets())}""")'"'" |