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
Dear Recruiter, | |
please fuck off and never come back. | |
Obviously you can not read profiles - neither my profile nor the requirements of your customers. | |
So no match between my profile and your customers requirements. | |
So why did you contact me? | |
What is your right to exist in your job? Obviously none. | |
Now move on recruiter loser and don't waste my time anymore. |
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
def context_property(name, default=None): | |
def getter(self, default=default): | |
return getattr(self.context, name, default) | |
def setter(self, value): | |
setattr(self.context, name, value) |
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
def context_property(name, default=None): | |
def getter(self, default=default): | |
return getattr(self.context, name, default) | |
def setter(self, value): | |
setattr(self.context, name, value) | |
def deleter(self): | |
delattr(self.context, name) |
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
/home/ajung/.buildout/eggs/setuptools-21.0.0-py2.7.egg/pkg_resources/__init__.py:187: RuntimeWarning: | |
You have iterated over the result of pkg_resources.parse_version. | |
This is a legacy behavior which is inconsistent with the new version class introduced in setuptools 8.0. | |
In most cases, conversion to a tuple is unnecessary. For comparison of versions, sort the Version instances directly. If you have another use case requiring the tuple, please file a bug with the setuptools project describing that need. | |
stacklevel=1, |
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
@font-face { | |
font-family: "SwiftEF"; | |
src: "SwiftEFReg.ttf"; | |
} | |
@font-face { | |
font-family: "SwiftEF"; | |
src: "SwiftEFRegIta.ttf"; | |
font-style: italic; | |
} | |
@font-face { |
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
# ext needed but not the basename | |
base, ext = os.path.splitext(name) | |
if ext in (....): | |
... | |
import something | |
# module somthing is not used but it's import is need for initializing something |
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
<html> | |
<head> | |
<style type="text/css"> | |
.rotated { | |
color: blue; | |
font-size: 2em; | |
page-break-after: always; | |
} | |
.rotated:left { |
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
Sehr geehrte/r {kunde_text}, | |
Ihr Kundenkonto mit der Kennung {kennung} wurde in unserem Webportal gelöscht. | |
Damit wurden alle persönlichen Bestelldaten aus unserem System entfernt. | |
Vielen Dank, dass Sie unsere Dienste genutzt haben. | |
Sollten Sie noch Fragen zur Löschung Ihres Kundenkontos haben, wenden Sie sich | |
bitte an unsere Kundenbetreuung .... |
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
def context_property(name, default=None): | |
def getter(self, default=default): | |
return getattr(self.context, name, default) | |
def setter(self, value): | |
setattr(self.context, name, value) | |
def deleter(self): | |
delattr(self.context, name) |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
body { | |
background: rgb(0, 255, 94); | |
background: -moz-linear-gradient(326deg, rgb(0, 255, 94) 20%, rgb(255, 255, 250) 77%); | |
background: -webkit-linear-gradient(326deg, rgb(0, 255, 94) 20%, rgb(255, 255, 250) 77%); | |
background: -o-linear-gradient(326deg, rgb(0, 255, 94) 20%, rgb(255, 255, 250) 77%); |