There are multiple tools available to convert a Socks proxy to a HTTP/HTTPS proxy. The work by convertting HTTP requests into socks requests and send them to the socks proxy. Be aware that this might not be necessary as many tools accepting HTTP/HTTPS proxies also accept socks proxies …
Quickly Create a Scala Project Using Gradle in Intellij IDEA
Easy Way
-
Create a directory (e.g.,
demo_proj
) for your project. -
Run
gradle init --type scala-library
in terminal in the above directory. -
Import the directory as a Gradle project in IntelliJ IDEA. Alternatively, you can add
apply plugin: 'idea'
intobuild.gradle
and then run the command./gradlew openIdea
to …
Visual Studio Code for Python
Extensions
Please refer to Useful Visual Studio Code Extensions .
Set Python Environment for Visual Studio Code Server
-
File -> Preference -> Settings
-
Click on Workspace.
-
Search for
Python Path
. -
Change Python Path to the one you want to use.
Debug a Python Project
Visual Studio Live Share
Install Newer Version of SQLite3 on Debian Jessie
-
Open
/etc/apt/sources.list
and add the following line to the end.deb http://www.backports.org/debian jessie-backports main contrib non-free
or
deb http://ftp.us.debian.org/debian/ jessie-backports main contrib non-free deb-src http://ftp.us.debian.org/debian/ jessie-backports main contrib non-free
-
Make sure the GPG …
Mount NTFS Drive Manually on Mac
-
First use
diskutil list
to list all avaiable disks and identifiy the external hard drive to mount. For example, runningdiskutil list
on my Mac gives me the following output and/dev/disk2s1
is the partition (NTFS) to mount.$ diskutil list /dev/disk0 (internal): #: TYPE NAME SIZE IDENTIFIER 0: GUID_partition_scheme …
Make Windows Restart Regularly
My Windows PC in my office slows down signficantly after running for several days. I have cleaned up the startup applications to the most I can. The only way I can think of is to automatically restart the computer early morning every few days. The article [Windows10] How to set …