Skip to content

Instantly share code, notes, and snippets.

View but1head's full-sized avatar
🔥

Nikita Radionov but1head

🔥
View GitHub Profile
@andronex
andronex / parser.php
Created June 20, 2016 09:29
Парсер вопросов/ответов с сайта pravoved.ru для наполнения сайта на MODX Revolution
<?php
/**
* требуется библиотека phpQuery
**/
$parserURL = array(
'Уголовные дела' => 'https://pravoved.ru/questions/criminal-law/'
,'Дела семейные' => 'https://pravoved.ru/questions/family-law/'
,'Недвижимость' => 'https://pravoved.ru/questions/realty/'
,'Автоюрист' => 'https://pravoved.ru/questions/auto-law/'
,'Наследственные дела' => 'https://pravoved.ru/questions/inheritance/'
@alexpchin
alexpchin / socket-cheatsheet.js
Created December 15, 2015 16:58
A quick cheatsheet for socket.io
// sending to sender-client only
socket.emit('message', "this is a test");
// sending to all clients, include sender
io.emit('message', "this is a test");
// sending to all clients except sender
socket.broadcast.emit('message', "this is a test");
// sending to all clients in 'game' room(channel) except sender