Skip to content

Instantly share code, notes, and snippets.

#http://stackoverflow.com/a/27029144
RewriteEngine On
# match any URL with www and rewrite it to https without the www
RewriteCond %{HTTP_HOST} ^(www\.)(.*) [NC]
RewriteRule (.*) https://%2%{REQUEST_URI} [L,R=301]
# match urls that are non https (without the www)
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} !^(www\.)(.*) [NC]
$query="SELECT * FROM word WHERE day = current_date() LIMIT 1";
$result = mysql_query($query);
if ($result) {
// echo "Query executed";
$row = mysql_fetch_assoc($result);
$word = $row['word'];
$definition = $row['definition'];
$definitionB = $row['definitionB'];
} else {
echo "Query not executed";
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule ^(.*)$ $1.html [NC,L]
DirectoryIndex index.html index.php
https://www.facebook.com/sharer/sharer.php?u=
https://www.linkedin.com/shareArticle?mini=true&url=http://google.com&title=Google%20dot%20com&summary=Google%20home%20&source=LinkedIn
https://twitter.com/intent/tweet?text=ENCODEDTEXT&url=ENCODEDURL
ffmpeg -i input.mp4 -strict -2 -movflags faststart -vcodec libx264 -crf 24 output.mp4
@jopfre
jopfre / OSOpenSpace.js
Created December 17, 2018 02:24
os-leaflet with 250px tiles
/**
* os-leaflet ; A [Leafletjs](http://leafletjs.com/) TileLayer to display Ordnance Survey
* data in your Leaflet map via the OS OpenSpace web map service.
*
* https://github.com/rob-murray/os-leaflet
*/
(function (root, factory) {
// UMD for Node, AMD or browser globals
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
@jopfre
jopfre / bash loop
Last active February 8, 2021 13:37
for file in ./*.png;
do
if grep -q ${file:2} ./fileslist.txt;
then
echo "skipping $file"
else
echo "moving $file"
mv "$f" ./newdir
fi
done