Skip to content

Instantly share code, notes, and snippets.

@kosar
kosar / activetasks.sql
Last active January 26, 2021 14:12
Active Tasks Query in Info Layer Task_DTL table
select distinct wd.first_name,
wd.family_name,
wd.job_profile_txt,
t.task_id,
priority,
person_id,
task_sts,
est_task_created_dtm,
est_restriction_end_dtm as est_due_date,
task_cd,
@kosar
kosar / install_anaconda.md
Last active February 3, 2019 22:21 — forked from kauffmanes/install_anaconda.md
Install Anaconda on Windows Subsystem for Linux (WSL)

Note: $ denotes the start of a command. Don't actually type this.

Steps to Install Anaconda on Windows Ubuntu Terminal

  1. Install WSL (Ubuntu for Windows - can be found in Windows Store). I recommend the latest version (I'm using 18.04) because there are some bugs they worked out during 14/16 (microsoft/WSL#785)
  2. Go to https://repo.continuum.io/archive to find the list of Anaconda releases
  3. Select the release you want. I have a 64-bit computer, so I chose the latest release ending in x86_64.sh. If I had a 32-bit computer, I'd select the x86.sh version. If you accidentally try to install the wrong one, you'll get a warning in the terminal. I chose Anaconda3-5.2.0-Linux-x86_64.sh.
  4. From the terminal run wget https://repo.continuum.io/archive/[YOUR VERSION]. Example: $ wget https://repo.continuum.io/archive/Anaconda3-5.2.0-Linux-x86_64.sh
  5. Run the installation script: $ bash Anaconda[YOUR VERSION].sh ($ bash Anaconda3-5.2.0-Linux-x86_64.sh) (Note: on Windows