Skip to content

Instantly share code, notes, and snippets.

View jovanzers's full-sized avatar
🏠
Working from home

Jovan Ferryal E. F. jovanzers

🏠
Working from home
View GitHub Profile
@eRQee
eRQee / indonesia-radio.m3u
Last active April 26, 2024 14:31
Indonesian Online Radio Playlists (Supported Player: Radio++, GoodVibes). More lists is coming.
#EXTM3U
#EXTINF:0,Andika FM
#EXTVLCOPT:network-caching=1000
http://stream2.andikafm.com:1057/andikafm
#EXTINF:0,Ardan Radio
#EXTVLCOPT:network-caching=1000
http://listento.ardanradio.com:1059/;
#EXTINF:0,Attaqwa FM
#EXTVLCOPT:network-caching=1000
http://103.28.148.18:8840/;
@jovanzers
jovanzers / readme.md
Last active November 28, 2023 06:04 — forked from ianmustafa/readme.md
Konfigurasi Sublime Text 3 Favorit. Dikumpulkan dengan penuh ❤︎ oleh Jovan Ferryal.

Konfigurasi Sublime Text 3 Favorit

Dikumpulkan dengan penuh ❤︎︎ oleh Jovan Ferryal.

Konfigurasi Preferences.sublime-settings

{
	"always_show_minimap_viewport": true,
	"bold_folder_labels": true,
@joashp
joashp / openssl_encrypt_decrypt.php
Created September 4, 2015 15:59
Simple PHP encrypt and decrypt using OpenSSL
<?php
/**
* simple method to encrypt or decrypt a plain text string
* initialization vector(IV) has to be the same when encrypting and decrypting
*
* @param string $action: can be 'encrypt' or 'decrypt'
* @param string $string: string to encrypt or decrypt
*
* @return string
*/