Having troubles with Xcode or their Command Line Tools? Follow this guide to reset your Xcode instance on macOS and resolve issues such as "No Xcode or CLT version detected!"
- Alternatively download Xcode directly
xcode-select -print-path
Get-Command # Retrieves a list of all the commands available to PowerShell | |
# (native binaries in $env:PATH + cmdlets / functions from PowerShell modules) | |
Get-Command -Module Microsoft* # Retrieves a list of all the PowerShell commands exported from modules named Microsoft* | |
Get-Command -Name *item # Retrieves a list of all commands (native binaries + PowerShell commands) ending in "item" | |
Get-Help # Get all help topics | |
Get-Help -Name about_Variables # Get help for a specific about_* topic (aka. man page) | |
Get-Help -Name Get-Command # Get help for a specific PowerShell function | |
Get-Help -Name Get-Command -Parameter Module # Get help for a specific parameter on a specific command |
%% RF Propagation Simulation | |
%Tom Schucker | |
%% Set Custom Terrain | |
%terrain file (download from https://earthexplorer.usgs.gov/) | |
dtedfile = "n37_w122_1arc_v3.dt2"; | |
%data attribution | |
attribution = "SRTM 3 arc-second resolution. Data available " + ... | |
"from the U.S. Geological Survey."; |
Having troubles with Xcode or their Command Line Tools? Follow this guide to reset your Xcode instance on macOS and resolve issues such as "No Xcode or CLT version detected!"
xcode-select -print-path
ID | Name | Abbreviation | Conference | Division | |
---|---|---|---|---|---|
1 | Arizona Cardinals | ARI | NFC | West | |
2 | Atlanta Falcons | ATL | NFC | South | |
3 | Baltimore Ravens | BAL | AFC | North | |
4 | Buffalo Bills | BUF | AFC | East | |
5 | Carolina Panthers | CAR | NFC | South | |
6 | Chicago Bears | CHI | NFC | North | |
7 | Cincinnati Bengals | CIN | AFC | North | |
8 | Cleveland Browns | CLE | AFC | North | |
9 | Dallas Cowboys | DAL | NFC | East |
import pandas as pd | |
import re | |
from urllib.request import urlopen | |
from bs4 import BeautifulSoup as soup | |
from datetime import datetime as dt | |
class ESPN_FFL(object): | |
"""Helper class for pulling ESPN Fantasy Football stats for a given season. |
// check version | |
node -v || node --version | |
// list locally installed versions of node | |
nvm ls | |
// list remove available versions of node | |
nvm ls-remote | |
// install specific version of node |
# For Windows users# Note: <> denotes changes to be made | |
#Create a conda environment | |
conda create --name <environment-name> python=<version:2.7/3.5> | |
#To create a requirements.txt file: | |
conda list #Gives you list of packages used for the environment | |
conda list -e > requirements.txt #Save all the info about packages to your folder |
[ | |
{ | |
"city": "Arizona", | |
"name": "Cardinals", | |
"abr": "ARI", | |
"conf": "NFC", | |
"div": "West" | |
}, | |
{ | |
"city": "Atlanta", |
# Customize BASH PS1 prompt to show current GIT repository and branch. | |
# by Mike Stewart - http://MediaDoneRight.com | |
# SETUP CONSTANTS | |
# Bunch-o-predefined colors. Makes reading code easier than escape sequences. | |
# I don't remember where I found this. o_O | |
# Reset | |
Color_Off="\[\033[0m\]" # Text Reset |