Skip to content

Instantly share code, notes, and snippets.

@jQsafi
jQsafi / frutiger-aero-card.markdown
Created October 16, 2025 02:41
Frutiger Aero Card
@jQsafi
jQsafi / notes.md
Created May 31, 2023 08:33 — forked from ihabhamad/notes.md
How to run multiple Redis instances on Ubuntu 16.04

Create the directory for the new instance

$ sudo install -o redis -g redis -d /var/lib/redis2

Create a new configuration file

$ sudo cp -p /etc/redis/redis.conf /etc/redis/redis2.conf
@jQsafi
jQsafi / index.html
Last active March 18, 2019 17:35
Playing Cards with HTML+CSS
<section class="cardholder">
<div class="cards hearts">
<span class="a">♥</span>
</div>
<div class="cards hearts">
<span class="b">♥</span>
<span class="b">♥</span>
</div>
<div class="cards hearts">
<span class="c">♥</span>
@jQsafi
jQsafi / Web developer Portfoilo
Last active February 16, 2019 08:40
Web developer Portfoilo
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="profile" href="http://gmpg.org/xfn/11"/>
<link rel="pingback" href="http://sktperfectdemo.com/demos/webprogrammer/xmlrpc.php" />
<title>WEB PROGRAMMER</title>
@jQsafi
jQsafi / timeline.html
Last active March 5, 2017 21:17
Timeline style
<style>
.main-timeline{
position: relative;
transition: all 0.4s ease 0s;
}
.main-timeline:before{
content: "";
width: 3px;
height: 100%;
background: #bfbfbf;
@jQsafi
jQsafi / database_operation.php
Last active March 5, 2017 21:10
An useful library
<?php
/*
* Database_operation library
* Shafayat Hossain
*
*
*
* Version 1.1
*
* Copyright 2015 HnH Soft
@jQsafi
jQsafi / gtext.php
Created October 1, 2015 18:38
Google texter - v0.2
<?php
/*
** Google texter - v0.2
** This experimental script creates a random text by
** using google search as source.
**
** Warning: Do not execute this script on a webserver!
** This script was made to execute from a command line.
**