Posts

Showing posts with the label Tips & Tricks

Mora Cost Artifact Genshin Impact

Image
How much mora required to upgrade artifact to maximum level on genshin impact? Rarity Exp Multiplier Chance When consuming an enhanced artifact, in addition to the Base EXP granted, 80% of the EXP used for its upgrades will be recovered at no extra Mora. For example, using a Level 16 artifact is worth 100,660 EXP (2,520 + 0.8 × 122,675), and costs 2,520 Mora. 1% 1% 1% 9% 90% Mora cost/EXP 3,780 2,520 1,260 840 420 Current Level EXP to Next Level (Cumulative EXP) 0 3,000 2,400 1,800 1,200 600 1 3,725 (3,000) 2,975

Update Genshin Impact Patch v.1.5.0 - v.1.5.1 Via Download Manager

Image
Update Genshin Impact Patch v.1.5.0 - v.1.5.1 en-us 1.5.0 1.5.1 diff Gg3Q5aOK.zip game 1.5.0 1.5.1 diff MF8HJNzT.zip ja-jp 1.5.0 1.5.1 diff P72LxVCa.zip ko-kr 1.5.0 1.5.1 diff 4wMycdN3.zip zh-cn 1.5.0 1.5.1 diff 2heO3D7V.zip How to update Download Update Version Above Copy all to your Genshin Impact\Genshin Impact Game\ folder .. Preview Example:: . |-- C: |-- Program Files |-- Genshin Impact |-- Genshin Impact Game |-- game_..._diff_H8LGSgKU.zip |-- ja-jp_..._diff_hfBOW6ym.zip |-- ko-kr_..._diff_NcX8UP1L.zip |-- en-us_..._diff_KdXT5Pi0.zip `-- zh-cn_..._diff_hvg2F3QM.zip Screenshot

Update Genshin Impact Via Download Manager

Image
Patch Pre-Download v1.4.0 - v1.5.0 game 1.4.0 1.5.0 diff H8LGSgKU.zip ja-jp 1.4.0 1.5.0 diff hfBOW6ym.zip ko-kr 1.4.0 1.5.0 diff NcX8UP1L.zip en-us 1.4.0 1.5.0 diff KdXT5Pi0.zip zh-cn 1.4.0 1.5.0 diff hvg2F3QM.zip How to update Download Update Version Or Full Game Version Copy all to your Genshin Impact\Genshin Impact Game\ folder .. Preview Example:: . |-- C: |-- Program Files |-- Genshin Impact |-- Genshin Impact Game |-- game_1.4.0_1.5.0_diff_H8LGSgKU.zip |-- ja-jp_1.4.0_1.5.0_diff_hfBOW6ym.zip |-- ko-kr_1.4.0_1.5.0_diff_NcX8UP1L.zip |-- en-us_1.4.0_1.5.0_diff_KdXT5Pi0.zip `-- zh-cn_1.4.0_1.5.0_diff_hvg2F3QM.zip Screenshot

Import composite build plugin as subtitue module dependency [Gradle]

Image
// change folder path inside bracket includeBuild("plugin") { dependencySubstitution { // change your artifact group and id // iam using https://github.com/dimaslanjaka/gradle-plugin/ for example substitute(module("com.dimaslanjaka:gradle-plugin")).with(project(":")) } }

Git Login Via Command Line

Image
git config --global user.name myusername git config --global user.email myemail git config --global github.user myusername git config --global github.token mytoken

NodeJS Common Fix Command On Linux Or Windows

Linux # add new repository sudo add-apt-repository ppa:deadsnakes/ppa sudo apt-get update -y sudo apt install libgtk-3-0 -y sudo apt install software-properties-common checkinstall -y sudo apt-get install libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev libffi-dev zlib1g-dev build-essential libncurses5-dev libgmp-dev libnss3-dev wget -y # nodejs additional packages npm install --global lerna node-pre-gyp typescript # python 2.7 sudo apt install python-minimal -y sudo apt install python-pip -y # Install npm --build-from-source install # Fix Chrome Sandbox sudo chown root:root node_modules/electron/dist/chrome-sandbox sudo chmod 4755 node_modules/electron/dist/chrome-sandbox # run sudo npm run start Windows install Visual Studio Installer npm config set msvs_version 2017 --global npm i electron-builder-squirrel-windows electron-builder node-gyp electron electron-rebuild -g node-gyp configure --msvs_version=2017 npm ins

Perbedaan typescript dan javascript secara rinci

Image
Typescript atau Javascript? Apa saja perbedaan typescript dan javascript? Secara Harfiah: Typescript lebih strict / lebih detail dan harus mematuhi peraturan seperti typedata (variable, class, interface, dll), hampir sama seperti KOTLIN untuk segi peraturan. Javascript itu bebas, tidak akan memberikan error jika kode / variable / syntax diatasnya sudah dideklarasikan terkecuali class dan interface, javascript pun tidak memperdulikan mau type macam apa di variable yang penting logic yg ditentukan itu sama atau akan dikembalikan ke bentuk 'undefined'. Compiler: Javascript tidak membutuhkan compiler untuk menjalankannya. Sedangkan typescript membutuhkan compiler sebelum di run. Compatibility: Typescript bisa menciptakan javascript dalam macam-macam type browser hanya dengan 1x tulis kode. Javascript tidak dapat membuat semua syntax nya compatible dengan semua browser jika tidak menentukan Condition yang tepat. Invertible: Typescript dapat melakukan apa yg dilakukan java

Fix add file to gitignore not filtered

git rm -r --cached . git add . git commit -m 'clear git cache' git push