EvilZone
Community => News and Announcements => : Kulverstukas December 24, 2013, 10:51:21 AM
-
Hello,
Christmas is tomorrow, but it's been decided to post it today :)
The staff tries to always do something special for EZ every christmas, this year was a tough one, but all in all it seemed like a good thing, EZ is striving!. The gift was done by Daxda and me.
This year it is something personal. Seeing how bluechill stirred the whole thing about avatars being "personal faces on the web (http://evilzone.org/feedback/avatar-rule/)" discussion, and many people agreed.
We thought it would be a very nice gesture to make something out of those personal faces of the web, as a thanks to the whole community of active (and not so active) members. If you had at least few posts AND had an avatar, you should find yourself in there :)
And here it is, the gift!: http://i.imgur.com/jCNY9yK.jpg (http://i.imgur.com/jCNY9yK.jpg)
Whole project: http://upload.evilzone.org/download.php?id=4556409&type=zip
Scripts used for the project:
'''
Script that extracts nickname and profile link
from sensitive data cluster that is available to the admins.
Data file is not included, fuck you.
'''
import re
DATA_FILE = "data.txt"
OUTPUT_FILE = "output.txt"
CHECK_BY = "profile"
URL_RE_PATTERN = "http://evilzone.org/profile/\?u=\d+"
NAME_RE_PATTERN = "\">.+?</a>"
inF = open(DATA_FILE, "r")
outF = open(OUTPUT_FILE, "w")
passed = False
finalStr = ""
counter = 0
for line in inF:
if ((CHECK_BY in line) and passed):
passed = False
counter += 1
nameMatchObj = re.search(NAME_RE_PATTERN, line)
urlMatchObj = re.search(URL_RE_PATTERN, line)
if ((urlMatchObj != None) and (nameMatchObj != None)):
finalStr = "%d;%s;%s" % (counter,
nameMatchObj.group(0).replace("\">", "").replace("</a>", ""),
urlMatchObj.group(0))
outF.write(finalStr+"\n")
print finalStr+"\n"
else:
passed = True
inF.close()
outF.close()
'''
Author: Kulverstukas
Website: http://9v.lt
Date: 2013.12.08
Description:
This script is part of a project for 2013 Evilzone christmas.
What it does is gathers user's avatars and downloads them.
'''
import os
import re
import urllib
import urllib2
#=== CONSTANTS ===
AVATAR_FOLDER = "EZ_Avatars"
INPUT_FILE = "output.txt"
AVATAR_RE = "<img class=\"avatar\".+?/>"
DEFAULT_EXT = "png"
#=================
def readAndStructure():
print "========= STRUCTURING THE FILE ========="
finalArr = []
with open(INPUT_FILE, "r") as f:
for line in f:
dataArr = line.strip().split(";")
finalArr.append(dataArr)
return finalArr
#=================
def grabAvatars(dataArr):
print "========= GRABBING AVATARS ========="
for item in dataArr:
print "Retrieving avatar for "+item[1]
try:
urllib.urlretrieve(item[2], "%s/%s - %s.%s" % (AVATAR_FOLDER, item[0], item[1], DEFAULT_EXT))
except:
print "*** Failed retrieving. Continuing..."
#=================
def extractAvatarUrl(dataArr):
print "========= EXTRACTING AVATAR URLs ========="
finalArr = []
tmpArr = []
for item in dataArr:
tmpArr = []
resp = urllib2.urlopen(item[2])
html = resp.read()
avatarUrlMatchObj = re.search(AVATAR_RE, html)
if (avatarUrlMatchObj != None):
tmpArr.append(item[0])
tmpArr.append(item[1])
tmpArr.append(avatarUrlMatchObj.group(0)
.replace("<img class=\"avatar\" src=\"", "")
.replace("\" alt=\"\" />", "")
.replace("\" width=\"100\" height=\"100", ""))
finalArr.append(tmpArr)
else:
print "No avatar found for "+item[1]
# break;
return finalArr
#=================
def main():
if (os.path.exists(AVATAR_FOLDER) == False):
os.mkdir(AVATAR_FOLDER)
dataArr = readAndStructure()
dataArr = extractAvatarUrl(dataArr)
grabAvatars(dataArr)
#=================
main()
-
This is nice, too bad Axon and me we don't have an avatar.
Cookies for you Kulver and Daxda +1
And merry Christmas.
-
<3
-
Very cool, I like that you made a script for it as well!
Merry Christmas to you guys :)
-
<3
-
This is nice, too bad Axon and me we don't have an avatar.
Cookies for you Kulver and Daxda +1
And merry Christmas.
Yeah I was gonna say the same thing. Anyway, I don't celebrate Christmas and it doesn't interest me at all, but I wish you all happy holidays no matter where you live.
8)
-
Cute :)
Thanks for that warm present Daxda And Kulverstukas.
I gotta say Daxda you are A true new EZ member, we dont have those alot.
Coz its this time of year we can spread some postive :)
Anyways merry something to you all , good to be here my friends.
-
I'm right next to Faction because we are in love. :P Awesome idea. This makes me feel special. Merry Christmas mother fuckers!
-
D'aww Thanks Lol Merry Christmas and a happy New Years :P
-
Thank you guys, it's set as my wallpaper. Merry Christmas to you all!
-
heh nice job guys. cookies all around. hope you got good loot, and good family/friends.
-
Oh wow, good job! This is cool :)
-
Whoa that is really awesome!
-
Worlds smallest resolution you got there, and the font kinda stinks. But the idea is great :)
-
oh come on, it wasn't that bad :P not everyone has million x million resolution with quadruple set of monitors, 4 on each like in some spacecraft :P
-
oh come on, it wasn't that bad :P not everyone has million x million resolution with quadruple set of monitors, 4 on each like in some spacecraft :P
1280 x 720 isn't even full HD. Image should be available in 1366 x 768, 1280 x 720, 1920×1200 and 2560 x 1440 (my size). Alternatively in 2560 x 1600 :)
-
1280 x 720 isn't even full HD. Image should be available in 1366 x 768, 1280 x 720, 1920×1200 and 2560 x 1440 (my size). Alternatively in 2560 x 1600 :)
Dafuq 2560 x 1440? I have a 25 inch and the highest xrandr setting I can use is 1920 x 1200 from my testing. Btw monitors are a nightmare to set up. Especially when you forget about monitors.xml... and have those ati proprietary drivers.. just not fun.
-
You also need a VGA card that renders such high resolutions in addition to the monitor which can display such high resolutions as well.
-
1280 x 720 isn't even full HD. Image should be available in 1366 x 768, 1280 x 720, 1920×1200 and 2560 x 1440 (my size). Alternatively in 2560 x 1600 :)
2880x1800 please.
-
Fu and your Retina! :P
-
Fu and your Retina! :P
<3 my mbp retina
-
*Gives bluechill a knife and a jar of salt*
Here, why don't you just keep on stabbing me in the back and pour salt in it! >:(
-
*Gives bluechill a knife and a jar of salt*
Here, why don't you just keep on stabbing me in the bag and pour salt in it! >:(
*stabs Phage in the back repeatedly*
*pours salt in *
-
I've been away from EZ for far too long....
I wish all a late merry christmas and also a happy new year.
This is awesome btw.