This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
import requests | |
from lxml import html | |
import time | |
import json | |
from account_info import username, password, thread_id, kaczor_id | |
s = requests.Session() # zbiornik na kukizy | |
s.get('https://facebook.com/') | |
site = s.get('https://facebook.com/') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define VERSION "0.6" | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <errno.h> | |
#include "libgadu.h" | |
#include "string.h" | |
int main(int argc, char *argv[]) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/opt/local/bin/bash | |
if [ -z "$1" ] | |
then | |
echo "No argument supplied" | |
else | |
wget -O - "$1" | grep "visibleButtons fileIdContainer" | sed -e 's#.*fileIdContainer" rel="\(.*\)" style.*#http://chomikuj.pl/Audio.ashx?id=\1\&type=2\&tp=mp3#g' | while read line | |
do | |
wget --content-disposition $line | |
done | |
fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'net/http' | |
username = "USERNAME" | |
password = "PASSWORD" | |
def convToHash(text) | |
result = Hash.new | |
text.each_line do |line| |