Skip to content

Instantly share code, notes, and snippets.

View picwellwisher12pk's full-sized avatar
😶
https://github.com/picwellwisher12pk/animated-education

Amir Hameed picwellwisher12pk

😶
https://github.com/picwellwisher12pk/animated-education
  • Pakistan
View GitHub Profile
@picwellwisher12pk
picwellwisher12pk / basicbootsraptemplate.gst
Last active August 29, 2015 14:27
Basic Bootstrap Template
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap 101 Template</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media
queries -->
@picwellwisher12pk
picwellwisher12pk / TTL2016.txt
Created April 19, 2017 06:15 — forked from CHEF-KOCH/TTL2016.txt
Torrent Tracker List [2016 Edition]
udp://tracker.coppersurfer.tk:6969/announce
udp://p4p.arenabg.ch:1337
udp://p4p.arenabg.com:1337
http://bttracker.crunchbanglinux.org:6969/announce
http://tracker.aletorrenty.pl:2710/announce
var path = require('path');
var sass = require('sass-loader');
var autoprefixer = require('autoprefixer');
var webpack = require('webpack');
var findCacheDir = require('find-cache-dir');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var CaseSensitivePathsPlugin = require('case-sensitive-paths-webpack-plugin');
var InterpolateHtmlPlugin = require('react-dev-utils/InterpolateHtmlPlugin');
var WatchMissingNodeModulesPlugin = require('react-dev-utils/WatchMissingNodeModulesPlugin');
var getClientEnvironment = require('./env');
let
env_dev = true,
env_debug = false,
//CSS
sass = require('gulp-sass'),
// autoprefixer = require('gulp-autoprefixer'),
autoprefixer = require('autoprefixer'),
minifyCSS = require('gulp-cssnano'),
postcss = require('gulp-postcss'),
@picwellwisher12pk
picwellwisher12pk / scrapper.py
Last active June 6, 2019 12:31
Python based scrapper for smartybro
# Import libraries
from bs4 import BeautifulSoup
from contextlib import closing
import requests
from requests import get
from requests.exceptions import RequestException
import time
import sys
import os
import webbrowser
@picwellwisher12pk
picwellwisher12pk / tmux-cheatsheet.markdown
Created October 22, 2019 07:09 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@picwellwisher12pk
picwellwisher12pk / console.js
Created December 23, 2019 08:19 — forked from Harshmakadia/console.js
Mastering JS console like a Pro
// time and time end
console.time("This");
let total = 0;
for (let j = 0; j < 10000; j++) {
total += j
}
console.log("Result", total);
console.timeEnd("This");
// Memory
@picwellwisher12pk
picwellwisher12pk / github_resource_of_resources.md
Last active September 23, 2020 09:29
Resource of Resources

This is a list of list of resources.

  1. awesome-math (A curated list of awesome mathematics resources)
  2. free-for-dev
  3. awesome-for-beginners (A list of awesome beginners-friendly projects.)
  4. awesome (😎 Awesome lists about all kinds of interesting topics)
  5. nodebestpractices (The Node.js best practices list)
  6. javascript-questions
  7. wtfjs (A list of funny and tricky JavaScript examples)
  8. awesome-selfhosted (List of Free Software network services and web applications which can be hosted locally)
  9. awesome-sysadmin (A curated list of amazingly awesome open sour
@picwellwisher12pk
picwellwisher12pk / Free hosting providers for web applications.md
Last active February 6, 2024 05:58
Free hosting providers for front-end & back-end applications
function downloadFile (url) {
let name;
fetch(url)
.then((resp) => {
resp.headers.forEach((header) => {
if (header.includes("attachment")) {
const filename = header.match(/filename="(.*)"/);
name = filename[1];
}
});