My VSCode settings

Every developer has own settings for each IDE. Because everybody have different habits and experiences. Now let me share my own settings for vscode. The config file path: .vscode/settings.json {  “editor.tabSize”: 4,  “search.exclude”: {    “**/.git/objects/**”: true,    “**/.git/subtree-cache/**”: true,    “**/node_modules/*/**”: true,    “**/bower_components”: true,    “**/*.code-search”: true,    “**/dist/*/**”: Devamı…

Update vscode in Linux (Ubuntu or others)

Hi, in linux there isn’t auto update feature in vscode. Because of that we have to update it ourself. This is the easiest and fastest way for updateing vscode: wget ‘https://code.visualstudio.com/sha/download?build=stable&os=linux-deb-x64’ -O code_latest_amd64.deb sudo dpkg -i code_latest_amd64.deb Happy coding…

Fee calculation

Trading fees are always charged in the asset you receive. For example, if you buy ETH/USDT, the fee is paid in ETH. If you sell ETH/USDT, the fee is paid in USDT. For example: You place an order to buy 10 ETH for 3,452.55 USDT each: Trading fee = 10 ETH Devamı…

Define Let’s Encrypt SSL to Tomcat

cd /etc/letsencrypt/live/exampledomain.comlsopenssl pkcs12 -export -out bundle.pfx -inkey privkey.pem -in cert.pem lsmv bundle.pfx /opt/tomcat/bundle.pfx ll /opt/tomcat/bundle.pfx ll /opt/tomcat/cd /opt/tomcat/confnano server.xml<Connector protocol=”org.apache.coyote.http11.Http11NioProtocol” port=”8443″ maxThreads=”2048″ scheme=”https” secure=”true” acceptCount=”2048″ SSLEnabled=”true” clientAuth=”false” keystoreType=”PKCS12″ keystoreFile=”/opt/tomcat/bundle.pfx” keystorePass=”YOURPASSWORD” sslProtocol=”TLS” />chown tomcat:tomcat /opt/tomcat/bundle.pfx systemctl restart tomcat