Skip to content

Instantly share code, notes, and snippets.

View totoprayogo1916's full-sized avatar
🏁
πŸ€£πŸ˜‚πŸ™„πŸ˜…πŸ˜—

Toto totoprayogo1916

🏁
πŸ€£πŸ˜‚πŸ™„πŸ˜…πŸ˜—
  • Special Region of Yogyakarta, ID
View GitHub Profile
@totoprayogo1916
totoprayogo1916 / settings.json
Created October 16, 2020 17:55
[MY] VS Code settings
{
"compile-hero.typescript-output-toggle": false,
"diffEditor.maxComputationTime": 0,
"editor.multiCursorModifier": "ctrlCmd",
"git.autofetch": true,
"git.confirmSync": false,
"git.enableCommitSigning": true,
"json.schemaDownload.enable": false,
"php.validate.executablePath": "",
"window.menuBarVisibility": "toggle",
@totoprayogo1916
totoprayogo1916 / customPagination.php
Last active January 10, 2024 08:36
Codeigniter 4 Pagination (manual setting $limit & $offset)
$page = (int) $this->request->getGet('page'); //
$limit = config('Pager')->perPage; // see Config/Pager.php
if (!isset($page) || $page === 0 || $page === 1) {
$page = 1;
$offset = 0;
} else {
$offset = ($page - 1) * $limit;
$page = $page;
}
@totoprayogo1916
totoprayogo1916 / template.xml
Last active April 5, 2025 15:04
Blogger Template with Bootstrap v5 Starter
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html>
<html b:css='false' b:js='false' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head>
<!-- Required meta tags -->
<meta charset='utf-8'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<title><data:view.title.escaped/></title>