Website Management Indonesia
NodeJS Common Fix Command On Linux Or Windows
2020-12-31 / Dimas Lanjaka
Linux # add new repositorysudo add-apt-repository ppa:deadsnakes/ppasudo apt-get update -ysudo apt i……
Website Management Indonesia
HTML Select Complete Countries
2020-10-28 / Kuswati
<div class="input-group select2-bootstrap-operator"> <select class="form-control select2-single" tabindex="-1" aria-hidden=……
Website Management Indonesia
Perbedaan typescript dan javascript secara rinci
2020-10-28 / Kuswati
Typescript atau Javascript?……
Website Management Indonesia
Git force redownload from remote repository
2020-10-26 / Kuswati
Tutorialgit reset --hard origin/git fetch --all Example from mastergit reset……
Website Management Indonesia
Fix add file to gitignore not filtered
2020-10-25 / Kuswati
git rm -r --cached .git add .git commit -m 'clear git cache'git push……
Website Management Indonesia
Example getting properties value from settings.gradle.kts
2020-10-24 / Kuswati
pluginManagement { resolutionStrategy { eachPlugin { // Work around https://github.com/gradle/gradle/issues/……
Website Management Indonesia
How to make pull request or contribution on github
2020-10-17 / Kuswati
Contribution Tutorial Fork it (git clone https://github.com/name/repo) Create your feature branch (git checkout -b my-new-……
Website Management Indonesia
[PHP] Detect User Client IP (XAMPP or Localhost Machine Supported)
2020-10-16 / Kuswati
Usage: var_dump(get_client_ip()); /** * Detect is localhost * * @return boolean */function isLocalHost……
Website Management Indonesia
Remove all objects in an arraylist that exist in another arraylist Java
2020-09-22 / Kuswati
ArrayList<String> firstArr = new ArrayList<>(); firstArr.add("1"); firstArr.add("2"); firstArr.add("3"); ……
Website Management Indonesia
build.gradle with custom repository
2020-08-03 / Kuswati
Fix missing dependencies from your gradle project (android, maven, etc) with this build.gradle. insert into YOUR_PROJECT_GRADLE/build.grad……