Skip to content

Instantly share code, notes, and snippets.

@truth4oll
truth4oll / gist:04f310ca5b6f4e3edc84
Created January 10, 2016 20:09
Парсинг фото гугл
<?php
/**
* Created by JetBrains PhpStorm.
* User: truth4oll
* Date: 20.11.13
* Time: 17:08
* To change this template use File | Settings | File Templates.
*/
function form_init(form) {
form.find('input,textarea').on('focus',function(){
$(this).removeClass('error')
//$(this).next().fadeOut(100)
})
form.find('select').on('click',function(){
$(this).removeClass('error')
git fetch --all
git reset --hard origin/master
git pull origin master
@truth4oll
truth4oll / vk
Created February 3, 2013 13:01
Delete photos on main page of vk
//сначала делаем
a = document.getElementsByClassName('profile_photo_hide')
//далее выполнять следующий код, пока все фотки не удалятся
for (j=0;j<20;j++){
for (i=0,length = a.length; i < length; i++){
a[i].click();
}
}