Skip to content

Instantly share code, notes, and snippets.

View JuniorTak's full-sized avatar

Hyppolite T. JuniorTak

View GitHub Profile
@JuniorTak
JuniorTak / excerpt.js
Last active August 29, 2024 15:21
Excerpt with JavaScript
// excerpt will be the shortened text of content, position being the start index of string method lastIndexOf.
excerpt = content.substr( 0, content.lastIndexOf( ' ', position ) ) + '...';
@JuniorTak
JuniorTak / .htaccess
Created August 15, 2024 18:29
To force traffic to HTTPS using .htaccess file
# HTTP to HTTPS force redirection
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]