Skip to content

Instantly share code, notes, and snippets.

@ibrahimokdadov
ibrahimokdadov / youtube_mp3.py
Created March 25, 2020 07:46
youtube to mp3
#prerequisites:
#ffmpeg and youtube-dl
#python youtube_mp3.py <youtube_url>
import youtube_dl
import sys
params ={
'format': 'bestaudio/best',
@ibrahimokdadov
ibrahimokdadov / imgPreview.html
Created May 31, 2016 08:35
Snippet to show file preview before uploading using JS and Jquery
<input id="file1" type="file" >
<img id="img1" src="" alt="imge here">
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.2.min.js"></script>
<script>
$("#file1").change(function () {
showImage(this);
});
function showImage(input){
var reader = new FileReader();
@ibrahimokdadov
ibrahimokdadov / main.css
Created December 20, 2015 13:26
Simple timeline boostrap
.btn-circle {
width: 30px;
height: 30px;
text-align: center;
padding: 6px 0;
font-size: 12px;
line-height: 1.428571429;
border-radius: 15px;
}
.timeline {
@ibrahimokdadov
ibrahimokdadov / my-account.php
Last active August 29, 2015 14:18
Change woocommerce My Account Page to Tabs [bootstrap]. It is always advised to make the changes in your child-theme. It should be in child-theme/woocommerce/myaccount/my-account.php.
<?php
/**
* My Account page
* Assumes you are using bootstrap
* @author WooThemes
* @edited by Ibrahim Mokdad
* @package WooCommerce/Templates
* @version 2.0.0
*/
if (! defined ( 'ABSPATH' )) {