Resolve VT-X not enabled on Windows 10

Using VirtualBox on Windows 10 is a little bit different with other os. The first time when loading a virtual box image into VirtualBox, you may meet the VT-X is not enabled error. Solution To solve this, there are two steps you need to do. Step 1: Turn off Hyper-V Platform in Windows Feature Step 2: Open a command prompt as Administrator and run the following command 1 dism.exe /Online /Disable-Feature:Microsoft-Hyper-V After that, you can try to restart your workstation and this may take several minutes to let Windows complete all underneath setting....

May 22, 2019 · 1 min · 117 words · Eric

GitHub Projects

Interview Preparation https://github.com/jwasham/coding-interview-university https://github.com/yangshun/tech-interview-handbook https://github.com/taizilongxu/interview_python Data Engineering https://github.com/high-performance-spark/high-performance-spark-examples https://github.com/kerbelp/redshift-utils https://github.com/mozilla/telemetry-airflow https://github.com/igorbarinov/awesome-data-engineering Data Science https://github.com/shirkeyaws/sagemaker-recommender-workshop https://github.com/JifuZhao/DS-Take-Home https://github.com/jupyter/notebook Tutorial https://github.com/dask/dask-tutorial https://github.com/lopusz/gists/ https://github.com/Birne94/rds-s3-database-backup https://github.com/traviscrawford/airflow-pex-example https://github.com/awslabs/lambda-streams-to-firehose https://github.com/GoogleCloudPlatform/python-docs-samples https://github.com/kumarawsbit/awsbit https://github.com/coursera/dataduct https://github.com/mumoshu/kube-airflow https://github.com/segmentio/stack Utility Download Netease CloudMusic

April 16, 2019 · 1 min · 31 words · Eric

Open Source Project Contribution Guidance  [draft]

Contributing to pgmpy Hi! Thanks for your interest in contributing to [pgmpy](pgmpy — pgmpy 0.1.0 documentation). In this document we’ll try to summarize everything that you need to know to do a good job. Code and Issues We use GitHub to host our code repositories and issues.You can look at issues to report any issues related to pgmpy. Here is a guide on how to report better issues. Git and our Branching model Git We use Git as our version control system , so the best way to contribute is to learn how to use it and put your changes on a Git repository....

April 16, 2019 · 4 min · 685 words · Eric

Mac Developer Environment Setup

example setup 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 ######### BASIC ######### # brew /usr/bin/ruby -e "$(curl -fsSL https://raw....

March 26, 2019 · 2 min · 389 words · Eric

Keep Windows PC Awake

Sometimes, I need to keep my Windows PC awake for a certain period of time. I found a simple PowerShell script that can help me with this. You can create a PowerShell Script named tt.ps1 with the following code: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 # Description: Time Travel with PowerShell # Date: 2024-05-10 $Signature = @' [DllImport("user32....

September 30, 2018 · 2 min · 284 words · Eric