Skip to content

Instantly share code, notes, and snippets.

View stecb's full-sized avatar
🤓
Ciao!

Stefano Ceschi Berrini stecb

🤓
Ciao!
View GitHub Profile
@stecb
stecb / commonpwd
Created August 28, 2012 12:35
List of common passwords
var commonPWD = ["password", "123456", "12345678", "1234", "qwerty", "12345", "dragon", "pussy", "baseball", "football", "letmein",
"monkey", "696969", "abc123", "mustang", "michael", "shadow", "master", "jennifer", "111111", "2000", "jordan", "superman", "harley", "1234567", "fuckme", "hunter", "fuckyou", "trustno1", "ranger", "buster", "thomas", "tigger", "robert", "soccer", "fuck", "batman", "test", "pass", "killer", "hockey", "george", "charlie", "andrew", "michelle", "love", "sunshine", "jessica", "asshole", "6969", "pepper", "daniel", "access", "123456789", "654321", "joshua", "maggie", "starwars", "silver", "william", "dallas", "yankees", "123123", "ashley", "666666", "hello", "amanda", "orange", "biteme", "freedom", "computer", "sexy", "thunder", "nicole", "ginger", "heather", "hammer", "summer", "corvette", "taylor", "fucker", "austin", "1111", "merlin", "matthew", "121212", "golfer", "cheese", "princess", "martin", "chelsea", "patrick", "richard", "diamond", "yellow", "bigdog", "secret", "asdfgh",
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin");
module.exports = {
optimization: {
minimizer: [
new OptimizeCSSAssetsPlugin({})
]
},
plugins: [
new MiniCssExtractPlugin({
function doubleInteger(i) {
// i will be an integer. Double it and return it.
return i*2;
}
function isNumberEven(i) {
// i will be an integer. Return true if it's even, and false if it isn't.
return i%2 === 0;
}
@stecb
stecb / getorderstotalfromamazon.js
Created November 30, 2015 21:32
get total of orders page on amazon.it
[].slice.call(document.querySelectorAll(".a-span2 .value")).map(function(e){return parseFloat(e.textContent.trim().split("EUR")[1].trim().replace(",","."))}).reduce(function(e,t){return e+t});
import { DEFAULT_ADAPTER } from './constants';
/*
Creates the subscription object
@param component function the React component
@param autoUnmount boolean defaults to true, if it has to remove all subscriptions on cwunmount
@param adapter object the pubsub adapter
@return the subscription object
@stecb
stecb / gist:3958943
Created October 26, 2012 13:51
drop from url (for carrierwave)
- content_for :javascript_page do
:javascript
$(document).bind('drop', function(e) {
var url
, target = $(e.target)
, remote_avatar = $('#user_remote_avatar_url')
;
if (target.hasClass('dropzone')) {
url = $(e.originalEvent.dataTransfer.getData('text/html')).filter('img').attr('src');
if (target.hasClass('attachments-drop"')) {
@stecb
stecb / gist:3839337
Created October 5, 2012 11:31
Select all checkbox fb
!function(){var a=Array.prototype.slice;a.apply(document.querySelectorAll(".checkbox")).forEach(function(a){a.checked="checked"})}()
@stecb
stecb / youtube.com.js
Created September 7, 2012 09:09
dotjs youtube.com
var logo = document.querySelector('#logo')
, cb = document.querySelector('#watch-channel-brand-div');
logo && (logo.src = '//bit.ly/ghD24e');
cb && (cb.innerHTML = 'I h8 fucking IE');
@stecb
stecb / gist:3011759
Created June 28, 2012 14:46
One line add/remove class - js/jquery/mootools
// You know you can write this (96 bytes):
if ( top < 10 ){
header.removeClass('scrolled');
} else {
header.addClass('scrolled');
}
// in this way (60 bytes)?
@stecb
stecb / gist:2852850
Created June 1, 2012 15:12
Hook post-commit to get a snapshot
#!/bin/sh
# Put this in .git/hooks/post-commit (and chmod 755)
CUR_BRANCH=`git rev-parse --abbrev-ref HEAD`
# do this awesomeness if current branch is master
if [ "$CUR_BRANCH" == "master" ]; then
echo "Smile for the camera..."
MSG=`git log -1 --pretty=format:%s`
SNAPSHOT="last_commit.jpg"