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
| @echo off | |
| rem ===== Run this first: ===== | |
| rem @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin | |
| rem choco feature enable -n=allowGlobalConfirmation | |
| rem mkdir C:\Tools | |
| rem choco install -y toolsroot | |
| rem =========================== | |
| rem ----- Essentials ----- |
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
| // This is an example of a C# application that uploads a CSV dataset to DataRobot, | |
| // runs a classification project in autopilot mode and prints the leaderboard | |
| // using the V2 REST API. Here you can also see an example of interacting with the | |
| // asynchronous API routes (upload project, set target). | |
| // Since the WebClient class has limited HTTP functionality, we use the newer | |
| // Microsoft.Net.Http.HttpClient class. Its methods are async; as a result, | |
| // the C# code uses asynchronous operations too. | |
| // You may need to install the following packages for this code to work: |
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
| #!/usr/bin/env python3 | |
| """ | |
| Save or restore X11 desktop window arrangement. | |
| Requires the `wmctrl` package to work. | |
| Examples: | |
| window_arrange.py save | |
| window_arrange.py restore | |
| window_arrange.py --profile ~/.winlayout-home save |
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
| #!/usr/bin/env bash | |
| # Install or upgrade any JetBrains product on Linux, assuming it is distributed as a tarball | |
| # and has the entry point at $INSTALL_DIR/bin/$PRODUCT.sh | |
| # Tested on IDEA, PyCharm, CLion, DataGrip 2016-2018.* | |
| # Usage: | |
| # install-jetbrains-product.sh [ProductName] [DownloadURL] | |
| # | |
| # Example: |
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
| # Predict the survival of RMS Titanic passengers using logistic regression. | |
| # Based on Kaggle Titanic dataset: https://www.kaggle.com/c/titanic/data | |
| # | |
| # You might need to install Amelia and ROCR packages. | |
| cleanData <- function(rawData) { | |
| # Uncomment these two lines to visualize the missing data. | |
| # library(Amelia) | |
| # missmap(trainingData, main="Missing vs. observed values") |
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
| #!/usr/bin/bash | |
| # ---------------------- | |
| # 00-common-vars.sh | |
| # ---------------------- | |
| # =========== CONFIG ============= | |
| # Assuming we'll set the Dropbox folder to ~/Dropbox | |
| DROPBOX_FOLDER=$HOME/Dropbox | |
| # ================================ |
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
| #!/usr/bin/env bash | |
| GATEWAY=gateway.company.com | |
| DOMAIN=company.local | |
| RESOLUTION=1920x1080 | |
| if [ -z "$1" ]; then | |
| read -p "Computer name (e.g. CP1234): " COMPUTERNAME | |
| else | |
| COMPUTERNAME=$1 |
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
| #!/usr/bin/env python | |
| """ | |
| Clone all GitHub Gists for the specified user. | |
| Copyright (c) 2018 Yuriy Guts | |
| usage: gist-clone-all.py [-h] user token | |
| positional arguments: | |
| user Which user's Gists to clone. |
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
| #!/usr/bin/env python | |
| import os | |
| import subprocess | |
| import sys | |
| confirmation = raw_input("This script may DISCARD YOUR UNCOMMITTED CHANGES. Are you sure (Y/N)? ") | |
| if confirmation.lower() != "y": | |
| sys.exit(1) |
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
| #!/usr/bin/env python3 | |
| """ | |
| Pull latest changes for all Git repositories in a directory (fast-forward only). | |
| Uses only the Python standard library (no pip dependencies required). | |
| Usage: git-update-all [-h] [--dry-run] [--parallel N] [--quiet] [--verbose] [--version] [directory] | |
| positional arguments: | |
| directory Directory containing repositories (default: current directory) |