ESPN's hidden API endpoints
Latest News: http://site.api.espn.com/apis/site/v2/sports/football/college-football/news
Latest Scores: http://site.api.espn.com/apis/site/v2/sports/football/college-football/scoreboard
version: '2.1' | |
services: | |
transmission: | |
container_name: transmission | |
image: dperson/transmission | |
restart: unless-stopped | |
depends_on: | |
- plex | |
network_mode: host | |
environment: |
#!/bin/sh | |
sudo killall -STOP -c usbd |
Latest News: http://site.api.espn.com/apis/site/v2/sports/football/college-football/news
Latest Scores: http://site.api.espn.com/apis/site/v2/sports/football/college-football/scoreboard
[global] | |
server string = samba_server | |
server role = standalone server | |
interfaces = lo eth0 wlan0 | |
bind interfaces only = yes | |
disable netbios = yes | |
smb ports = 445 | |
log file = /var/log/samba/smb.log | |
max log size = 10000 | |
log level = 3 passdb:5 auth:5 |
<?xml version="1.0" encoding="UTF-8"?> | |
<shaders> | |
<shader filename="XstSRX" prettyname="Disco 2000" folder="default" /> | |
<shader filename="ltjXWd" prettyname="simple hexagon raymarch" folder="default" /> | |
<shader filename="MsdBR8" prettyname="dancing cubes" folder="default" /> | |
<shader filename="MlySWd" prettyname="Otherworldy" folder="default" /> | |
<shader filename="MdVSDh" prettyname="Voxel Corridor" folder="default" /> | |
<shader filename="XlcXDX" prettyname="Vinyl Visualizer" folder="default" /> | |
<shader filename="000000" prettyname="Geometry" folder="default" /> | |
<shader filename="ls3BDH" prettyname="SoundEclipse rpm" folder="default" /> |
<?xml version="1.0" encoding="UTF-8"?> | |
<page name="KeyLoops"> | |
<pad1 name="LOOP 1/8 v" color="blink 500ms ? constant 'orange' : off">loop 0.125 temporary & effect_active 'loopcut' temporary & effect_slider 'loopcut' 1 66% & effect_active 'keyloopdown' temporary & slip temporary</pad1> | |
<pad2 name="LOOP 1/4 v" color="blink 500ms ? constant 'orange' : off">loop 0.25 temporary & effect_active 'loopcut' temporary & effect_slider 'loopcut' 1 66% & effect_active 'keyloopdown' temporary & slip temporary1</pad2> | |
<pad3 name="LOOP 1/2 v" color="blink 500ms ? constant 'orange' : off">loop 0.5 temporary & effect_active 'loopcut' temporary & effect_slider 'loopcut' 1 66% & effect_active 'keyloopdown' temporary & slip temporary</pad3> | |
<pad4 name="LOOP 1 v" color="blink 500ms ? constant 'orange' : off" >loop 1 temporary & effect_active 'l |
<?xml version="1.0" encoding="UTF-8"?> | |
<page name="LSPad"> | |
<pad1 name="S1" color="color 'darkred'">padfx 'loopSequence' 0% </pad1> | |
<pad2 name="S2" color="color 'darkred'">padfx 'loopSequence' 15% </pad2> | |
<pad3 name="S3" color="color 'darkred'">padfx 'loopSequence' 30% </pad3> | |
<pad4 name="S4" color="color 'darkred'">padfx 'loopSequence' 45% </pad4> | |
<pad5 name="S5" color="color 'darkred'">padfx 'loopSequence' 60% </pad5> | |
<pad6 name="S6" color="color 'darkred'">padfx 'loopSequence' 75% </pad6> | |
<pad7 name="S7" color="color 'darkred'">padfx 'loopSequence' 90% </pad7> | |
<pad8 name="S8" color="color 'darkred'">padfx 'loopSequence' 100% </pad8> |
https://web.whatsapp.com/send?phone=[1+phone_number]&text= |
# show services | |
Get-Service *Exchange* | where {($_.name -notlike "*imap5*") -and ($_.name -notlike "*pop3*")} | |
# start services | |
Get-Service *Exchange* | where {($_.name -notlike "*imap5*") -and ($_.name -notlike "*pop3*")} | Start-Service | |
# restart services | |
Get-Service *Exchange* | where {($_.name -notlike "*imap5*") -and ($_.name -notlike "*pop3*")} | Restart-Service |