This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bridging Kamar BPJS 2021 Implementasi Bridging di RSUD ALIHSAN | |
Ketersediaan Kamar | |
#Monitoring Hasil bridging Live Production | |
https://faskes.bpjs-kesehatan.go.id/aplicares/#/app/dashboard | |
#Base Url | |
Development: https://dvlp.bpjs-kesehatan.go.id:8888/ | |
Production: https://new-api.bpjs-kesehatan.go.id/ | |
#Referensi Kamar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global user.email [email protected] | |
##create a file named run.sh | |
rm -rf /usr/local/bin/brew | |
rm -rf /usr/local/share/doc/homebrew | |
rm -rf /usr/local/share/man/man1/brew.1 | |
rm -rf /usr/local/share/zsh/site-functions/_brew | |
rm -rf /usr/local/etc/bash_completion.d/brew | |
rm -rf /usr/local/Homebrew | |
##end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.app.DatePickerDialog; | |
import android.content.Context; | |
import android.widget.DatePicker; | |
import android.widget.EditText; | |
import java.text.ParseException; | |
import java.text.SimpleDateFormat; | |
import java.util.Calendar; | |
import java.util.Locale; | |
public class DateHelper { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$song = 'Can't Get Enough'; | |
#solved1 | |
var_dump(mb_convert_encoding($song, 'UTF-8', 'HTML-ENTITIES')); | |
#solved2 | |
var_dump(json_encode($song, JSON_INVALID_UTF8_IGNORE)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# vars | |
BACKUP_DIR=~/home/odoobackups | |
ODOO_DATABASE=name_db | |
ADMIN_PASSWORD=123456 | |
# create a backup directory | |
mkdir -p ${BACKUP_DIR} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Command Line Terminal: | |
npm i npm@latest | |
npm install npm-check-updates –g | |
#show list upgrade version: | |
ncu | |
#upgrade modules: | |
ncu -u | |
#after upgrade modules: | |
npm install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private TextView timenow; | |
private TextView datenow; | |
private Handler handler = new Handler(); | |
private String formatString=""; | |
public View onCreate(){ | |
handler.removeCallbacks(updateTimeTask); | |
handler.postDelayed(updateTimeTask, 1000); | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
preg_replace('/^[\pZ\pC]+|[\pZ\pC]+$/u', '', $string); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://docs.microsoft.com/en-us/sql/connect/php/installation-tutorial-linux-mac?view=sql-server-ver15 | |
https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-ver15 | |
Step 1. Install PHP (Ubuntu) | |
sudo su | |
add-apt-repository ppa:ondrej/php -y | |
apt-get update | |
apt-get install php8.0 php8.0-dev php8.0-xml -y --allow-unauthenticated | |
Step 2. Install prerequisites (Ubuntu) |