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
# Spotify premium with Denon Heos speakers | |
# -----> https://github.com/anudeepND/whitelist/issues/93 | |
# | |
mobile-ap.spotify.com | |
apresolve.spotify.com | |
upgrade.scdn.com | |
market.spotify.com | |
spclient.wg.spotify.com | |
audio-ake.spotify.com.edgesuite.net |
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
version: "2" | |
services: | |
openvpn: | |
image: dperson/openvpn-client:latest | |
command: -f | |
restart: always | |
dns: 10.0.0.2 | |
cap_add: | |
- NET_ADMIN | |
devices: |
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
public bool CanBuyMouse(User _user) | |
{ | |
if (_user.Level > 13) | |
{ // Require approval | |
return ApprovalSystem.Approve(_user, producttype: mouse) | |
} | |
else if(_user.Level.Between(12,3)) | |
{ // Below €50,- month | |
return _user.expenses < 50.00; | |
} |
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/sh | |
# http://www.github.com/markus-perl (original) | |
# Version 0.2 | |
CWD=`pwd` | |
PACKAGES="$CWD/packages" | |
WORKSPACE="$CWD/workspace" | |
CC=clang | |
LDFLAGS="-L${WORKSPACE}/lib -lm" |