Blagovest Petrov
4 months ago
5 changed files with 71 additions and 0 deletions
@ -0,0 +1,21 @@ |
|||
0x7F0x7F0x7F0x7F1478354964@HethRT @openfestbg: Ако не можете да присъствате, можете да ни гледате чрез лайвстрийм от всяка зала. Повече инфо - https://t.co/P7awnDmOwd |
|||
#Op… |
|||
0x7F0x7F0x7F0x7F1478354964@HethRT @svetlozaurus: #OpenFest2016 "Programmers are good at law-making" Leaves me wondering what if our government was full of programmers? :)… |
|||
0x7F0x7F0x7F0x7F1478354964@HethRT @ShadowmarN: Ако туитнете с хащаг #OpenFest2016Telefon ей тоя телефон звъни и като отворите стивън хокинг ви го прочита. #OpenFest2016 h… |
|||
0x7F0x7F0x7F0x7F1478354964@HethRT @piko1_bg: The #openfest2016telefon setup blast from the past reading #OpenFest2016 tweets @Druaga_1 😂 https://t.co/4baeEbtuyS |
|||
0x7F0x7F0x7F0x7F1478354964@dreamkeeperRT @ShadowmarN: Ако туитнете с хащаг #OpenFest2016Telefon ей тоя телефон звъни и като отворите стивън хокинг ви го прочита. #OpenFest2016 h… |
|||
0x7F0x7F0x7F0x7F1478354964@rvjekovRT @shekeriev: #openSUSE enthusiasts in action at #OpenFest2016. Thanks to @openSUSE and @openfestbg https://t.co/wQ3tDaZYeR |
|||
0x7F0x7F0x7F0x7F1478354964@turbobobiRT @elioqoshi: .@bozhobg keynote at #OpenFest2016 talking about E-Governance https://t.co/x5fawNPVLq |
|||
0x7F0x7F0x7F0x7F1478354964@turbobobiRT @openfestbg: Paper certificates must die! They can be replaced by real time queries between the different administration units. @bozhobg… |
|||
0x7F0x7F0x7F0x7F1478354964@silvina_ghttps://t.co/DyWFUQ99V6 - open source innovation methodologies. You can use, improve them or add your own. #OpenFest2016 |
|||
0x7F0x7F0x7F0x7F1478354964@ontotextRT @silvina_g: Open source is about more than code. It's about community and sharing. #OpenFest2016 |
|||
0x7F0x7F0x7F0x7F1478354964@ontotextRT @dzhuvinov: Yay, new Bulgarian #egov software will be designed for mobile first #OpenFest2016 @bozhobg |
|||
0x7F0x7F0x7F0x7F1478354964@mbdimitrovaI just soldered this cute #ghost at the #Olimex #workshop 😜 #OpenFest2016 👻 https://t.co/fpfh1Yx9ht |
|||
0x7F0x7F0x7F0x7F1478354964@shekeriev#openSUSE enthusiasts in action at #OpenFest2016. Thanks to @openSUSE and @openfestbg https://t.co/wQ3tDaZYeR |
|||
0x7F0x7F0x7F0x7F1478354964@gvergine#vopen.org today at #OpenFest2016 |
|||
0x7F0x7F0x7F0x7F1478354964@jonatoniRT @openfestbg: Paper certificates must die! They can be replaced by real time queries between the different administration units. @bozhobg… |
|||
0x7F0x7F0x7F0x7F1478354964@jonatoniRT @elioqoshi: .@bozhobg keynote at #OpenFest2016 talking about E-Governance https://t.co/x5fawNPVLq |
|||
0x7F0x7F0x7F0x7F1478354964@BORIME4KAМониторингът трябва да е насочен към качеството, а техническите метрики да се използват от бизнес-метриките. Ал. Благоев #OpenFest2016 |
|||
0x7F0x7F0x7F0x7F1478354964@openfestbgRT @jonatoni: Sharing is caring #OpenFest2016 https://t.co/NKD30cLfq3 |
|||
0x7F0x7F0x7F0x7F1478354964@3thelfledaBOO! That was a challange! #OSHW #OpenFest2016 https://t.co/9aesSosCse |
|||
0x7F0x7F0x7F0x7F1478354964@Suela_PalushiRT @jonatoni: @fedora infobooth at #OpenFest2016 https://t.co/MwX30UcGfx |
@ -0,0 +1,27 @@ |
|||
<?php |
|||
$socket = fsockopen("localhost", 8888, $errno, $errstr); |
|||
|
|||
if($socket) |
|||
{ |
|||
echo "Connected!\n"; |
|||
} |
|||
else |
|||
{ |
|||
echo "Connection failed!\n"; |
|||
} |
|||
|
|||
fputs($socket, "feed"); |
|||
|
|||
$buffer = ""; |
|||
|
|||
while(!feof($socket)) |
|||
{ |
|||
$buffer .=fgets($socket, 4096); |
|||
} |
|||
|
|||
print_r($buffer); |
|||
echo "\n\n"; |
|||
var_dump($buffer); |
|||
|
|||
fclose($socket); |
|||
?> |
Binary file not shown.
@ -0,0 +1,7 @@ |
|||
#!/bin/bash |
|||
|
|||
TW_ACCESS_TOKEN=792002880685350912-pe3LyGJMpIqmPUHXPHwqqYNQAT1emgu \ |
|||
TW_ACCESS_TOKEN_SECRET=pjBa0yKQCOPIenpVnRHWiDYWOHCpKfe8teaztRm93OzNf \ |
|||
TW_CONSUMER_SECRET=jRv0PojbRgS4paD4N4sj2eHAAx2aHWLFSLhACF5tbtjicJnsbM \ |
|||
TW_CONSUMER_KEY=s4Mi5GkhWv9d04ydaDr0bwKJs \ |
|||
python server.py 8888 |
@ -0,0 +1,16 @@ |
|||
#!/usr/bin/env python |
|||
|
|||
import SimpleHTTPServer |
|||
import SocketServer |
|||
|
|||
# minimal web server. serves files relative to the |
|||
# current directory. |
|||
|
|||
PORT = 8000 |
|||
|
|||
Handler = SimpleHTTPServer.SimpleHTTPRequestHandler |
|||
|
|||
httpd = SocketServer.TCPServer(("", PORT), Handler) |
|||
|
|||
print "serving at port", PORT |
|||
httpd.serve_forever() |
Loading…
Reference in new issue