Skip to content

Instantly share code, notes, and snippets.

View harizinside's full-sized avatar
🛠️
Chat GPT

Muhamad Haris Setiawan harizinside

🛠️
Chat GPT
View GitHub Profile
@harizinside
harizinside / i18n-express-hbs-app.js
Created June 18, 2021 02:46 — forked from mashpie/i18n-express-hbs-app.js
express + i18n-node + handlebars and avoid concurrency issues
// require modules
var express = require('express'),
i18n = require('i18n'),
hbs = require('hbs'),
app = module.exports = express();
i18n.configure({
locales: ['en', 'fr'],
cookie: 'locale',
directory: "" + __dirname + "/locales"
@harizinside
harizinside / PlayStationBIOSFilesNAEUJP.md
Created September 24, 2022 15:39 — forked from juanbrujo/PlayStationBIOSFilesNAEUJP.md
Files for PlayStation BIOS Files NA-EU-JP
@harizinside
harizinside / .htaccess
Created February 21, 2023 02:30
.htaccess file for React dist
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /subdirectory
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /index.html [L]
</IfModule>
@harizinside
harizinside / bootstrap.example.home.css
Last active April 25, 2023 03:43
Bootstrap add on
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
@harizinside
harizinside / meta-tags.md
Created August 12, 2024 09:57 — forked from lancejpollard/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">
@harizinside
harizinside / Installing ImageMagick from Source with HEIC Support.md
Last active April 4, 2025 08:53
Install Latest ImageMagick From Source

Installing ImageMagick from Source with HEIC Support

This guide will walk you through installing ImageMagick from source on a Linux system (Debian/Ubuntu-based) and configuring it with HEIC format support.

1. Clone ImageMagick Repository

First, clone the official ImageMagick Git repository into /usr/local/src:

sudo git clone https://github.com/ImageMagick/ImageMagick.git /usr/local/src/ImageMagick