Skip to content

Instantly share code, notes, and snippets.

View hajidalakhtar's full-sized avatar
:shipit:
(0) _ (0)

Muhammad Hajid Al Akhtar hajidalakhtar

:shipit:
(0) _ (0)
View GitHub Profile
@BilalBudhani
BilalBudhani / rssToJson
Created January 31, 2013 10:04
PHP function to convert simple RSS to JSON
public function Parse ($url) {
$fileContents= file_get_contents($url);
$fileContents = str_replace(array("\n", "\r", "\t"), '', $fileContents);
$fileContents = trim(str_replace('"', "'", $fileContents));
$simpleXml = simplexml_load_string($fileContents);
$json = json_encode($simpleXml);
return $json;
}
@ahmadshobirin
ahmadshobirin / set locale and timezone indonesia in laravel.md
Last active June 28, 2024 11:49
set locale and timezone indonesia in laravel

Open File App\Providers\AppServiceProvider

Change method boot

use Carbon\Carbon;


public function boot()
{
	config(['app.locale' => 'id']);
@codeSTACKr
codeSTACKr / mongodb_cheat_sheet_2022.md
Created January 10, 2022 22:54
MongoDB Cheat Sheet 2022