Skip to content

Instantly share code, notes, and snippets.

http://rami.ir/fa/wp-content/uploads/2010/11/Avarah.mp3
http://rami.ir/fa/wp-content/uploads/2010/11/Asir-1.mp3
http://rami.ir/fa/wp-content/uploads/2011/12/Onroozo.mp3
http://rami.ir/fa/wp-content/uploads/2010/11/Baron-baraku.mp3
http://rami.ir/fa/wp-content/uploads/2010/11/Bad-omkeh-1.mp3
http://rami.ir/fa/wp-content/uploads/2010/11/Berkeye-khoshk.mp3
http://rami.ir/fa/wp-content/uploads/2010/11/Bolbol-1.mp3
http://rami.ir/fa/wp-content/uploads/2010/11/Bodow-bodow-1.mp3
http://rami.ir/fa/wp-content/uploads/2010/11/Bikasi-1.mp3
http://rami.ir/fa/wp-content/uploads/2010/11/Tanhayi.mp3
@gokulkrishh
gokulkrishh / media-query.css
Last active May 17, 2024 04:45
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */
@itsbalamurali
itsbalamurali / gravatar_function.php
Created November 27, 2012 07:08
Simple PHP Gravatar Function
<?php
/**
Load a gravatar.
*/
function gravatar($email = '', $rating = 'pg') {
$default = "path/to/defava.png"; // Set a Default Avatar
$email = md5(strtolower(trim($email)));
$gravurl = "http://www.gravatar.com/avatar/$email?d=$default&s=60&r=$rating";
return '<img src="'.$gravurl.'" width="60" height="60" border="0" alt="Avatar">';
@jed
jed / LICENSE.txt
Created May 20, 2011 13:27 — forked from 140bytes/LICENSE.txt
generate random UUIDs
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 Jed Schmidt <http://jed.is>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE