Skip to content

Instantly share code, notes, and snippets.

@dimasmiftah
dimasmiftah / HLRTelkomsel.js
Last active November 5, 2025 16:40
Daftar kode Home Location Register (HLR) Telkomsel seluruh Indonesia
const HLRTelkomsel = {
jawaTimur: [
'6281130',
'6281131',
'6281132',
'6281133',
'6281134',
'6281137',
'6281135',
'6281136',
@danielquisbert
danielquisbert / download_ext6.2.0.md
Last active March 10, 2025 23:03
Download extJS gpl 6.2
@dudepare
dudepare / sample_crypto_aes.js
Created August 10, 2016 06:51
This is a sample of AES encryption + decryption using CryptoJS. This is a bit different from the examples out there because this one uses a COMPANY header + payload. There's a little bit more processing going on. I also used a CDN for CryptoJS. I hope someone finds this useful.
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.2/components/core-min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.2/components/sha256.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.2/components/enc-base64.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.2/rollups/aes.js"></script>
<script>
function toWordArray(str){
return CryptoJS.enc.Utf8.parse(str);
}
function toString(words){