Skip to content

Instantly share code, notes, and snippets.

View ToNyRANDRIAMANANTSOA's full-sized avatar
💭
..

ToNy RANDRIAMANANTSOA ToNyRANDRIAMANANTSOA

💭
..
View GitHub Profile
@ToNyRANDRIAMANANTSOA
ToNyRANDRIAMANANTSOA / History|-11a11f81|entries.json
Last active September 9, 2023 14:14
Visual Studio Code Sync Settings Gist
{"version":1,"resource":"file:///home/hero/Dev/Apps/r2e2f-mada/src/markdown/about/history/mg.md","entries":[{"id":"vafb.md","source":"renamed.source","timestamp":1691790573584},{"id":"2xfB.md","source":"moved.source","timestamp":1691790648436},{"id":"lOz6.md","timestamp":1691792883817},{"id":"Loeu.md","timestamp":1691793507404},{"id":"oSmf.md","timestamp":1691793519317}]}
@ToNyRANDRIAMANANTSOA
ToNyRANDRIAMANANTSOA / .gitconfig
Created September 2, 2022 11:42 — forked from piotros/.gitconfig
Some useful git aliases that I use
[alias]
# add all
aa = add .
# branches list
bl = branch
# branches list long
bll = branch -vv
@ToNyRANDRIAMANANTSOA
ToNyRANDRIAMANANTSOA / laracast_video_links_grabber.js
Created August 9, 2021 04:03 — forked from mahadirz/laracast_video_links_grabber.js
Grab laracast all video download links for series and to be used by IDM. Useful in case you want to watch the videos later from you own saved copy
@ToNyRANDRIAMANANTSOA
ToNyRANDRIAMANANTSOA / .htaccess
Created June 22, 2021 07:43 — forked from alexsasharegan/.htaccess
Apache Config for React Router
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /index.html [L]
@ToNyRANDRIAMANANTSOA
ToNyRANDRIAMANANTSOA / .htaccess
Created June 22, 2021 07:43 — forked from alexsasharegan/.htaccess
Apache Config for React Router
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /index.html [L]

Host react application on Apache server

Step 1 : Create your app

$ npm install -g create-react-app 
$ create-react-app my-app

Step 2 : Build it for production

@ToNyRANDRIAMANANTSOA
ToNyRANDRIAMANANTSOA / package.json
Created January 6, 2020 08:00 — forked from mburakerman/package.json
Webpack 4 config.js (SCSS to CSS and Babel) 👌 The Simplest Usage 👌
{
"name": "webpack-sass",
"version": "1.0.0",
"scripts": {
"start": "webpack-dev-server --open --mode development",
"build": "webpack -p"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",