-
Find out which shell you are using
-
Find out where you are in file system
-
Go to home directory
-
Create a folder named
homework
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
<?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 |
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
<?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" /> |
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
[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 |
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
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 | |
sudo killall -STOP -c usbd |
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
version: '2.1' | |
services: | |
transmission: | |
container_name: transmission | |
image: dperson/transmission | |
restart: unless-stopped | |
depends_on: | |
- plex | |
network_mode: host | |
environment: |
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
sudo nmap -p 80,443 192.168.1.10 |
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
sudo ros service enable rancher-server | |
sudo ros service up rancher-server | |
# If you want to see what services are available (not many), just run: | |
sudo ros service list |
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
# Mailboxes size: | |
Get-MailboxDatabase | Get-MailboxStatistics | Sort-Object TotalItemSize -Descending | Export-Csv "Z:\Mailboxes.csv" | |
# Databases size: | |
Get-MailboxDatabase -Status | Select-Object Name,@{N="DatabaseSize GB";E={$_.DatabaseSize.ToGB()}},AvailableNewMailboxSpace | Sort-Object Name | fl | |
# Move database to another drive or path: | |
move-DatabasePath -Identity '$DB' -EdbFilePath 'New_File_Path.edb' -LogFolderPath 'New_Log_Path' | |
# Get count per server |