Freitag, 28. September 2018

Es wird höchste Zeit, dass das Jugendamtamt Berlin Reinickendorf bei der Familie auftritt



Schlimm wenn Idioten Kinder in die Welt setzen nur weil sich geil auf Befriedigung sind. 

Ihr Brasil Portuguese - seit wahre intelligente Portuguese - Kleinstkinder als Affen auf die Strasse schicken.  

Mit $RS 5,00 ist man dabei ohne gleich Windelscheisser zu produzieren!!  

Montag, 24. September 2018

Noch dämlicher kann kein Mensch sein





Das mit dem Strand stimmt - alles andere ist Lüge - Ausländer Hasser - aufgehetzt durch die kriminelle Sekte Assambleia de Deus. 
Ich war drei Jahre lang dort - ich kann sprechen welche Idioten ich dort vor fand.  
Vor mir wurden zwei US Amerikaner aus dem Land geekelt - ich hielt am längsten durch. Und alle machten bei der Hetze gegen Ausländer mit - selbst Politik. Polizei - die kann man verschenken und keiner will sie haben. 

 Aracati Ceara ist keine internationale Touristen Gegend und wird es niemals werden.  Danbk der intelligenten Portuguese dort!! 

Canoa Quebrada - ein Nepper Strand - wo Touristen ausgenommen werden

Majorlandia Praia mache ein Bogen um den Strand - Ausländer Hetzer 

Ausgeraubte Touristen - Drogen - Raub - und Mord 

 Mit dem Müll in Brasilien ein Vorzeige Objekt
ich habe ihn oft genug gesehen, wärend der Busfahrt. Ganze Felder voller Plastik Abfälle


Die Verschnitt Indios aus dem Nordosten Brasil

Sonntag, 23. September 2018

Escola Cyber Canalha Portuguese Berlin Weidmannslust


Fucking Portuguese Berlin Reinickendorf & Weidmannslust – ihr wollt doch Hacker sein


Das müsst ihr auch English können – sonst seit ihr nur Cyber Lixo – nicht so viel onanieren dann klappt es auch mit Morta

What Is a Hacker?
The Jargon File contains a bunch of definitions of the term ‘hacker’, most having to do with technical adeptness and a delight in solving problems and overcoming limits. If you want to know how to become a hacker, though, only two are really relevant.
There is a community, a shared culture, of expert programmers and networking wizards that traces its history back through decades to the first time-sharing minicomputers and the earliest ARPAnet experiments. The members of this culture originated the term ‘hacker’. Hackers built the Internet. Hackers made the Unix operating system what it is today. Hackers run Usenet. Hackers make the World Wide Web work. If you are part of this culture, if you have contributed to it and other people in it know who you are and call you a hacker, you’re a hacker.
The hacker mind-set is not confined to this software-hacker culture. There are people who apply the hacker attitude to other things, like electronics or music — actually, you can find it at the highest levels of any science or art. Software hackers recognize these kindred spirits elsewhere and may call them ‘hackers’ too — and some claim that the hacker nature is really independent of the particular medium the hacker works in. But in the rest of this document we will focus on the skills and attitudes of software hackers, and the traditions of the shared culture that originated the term ‘hacker’.
There is another group of people who loudly call themselves hackers, but aren’t. These are people (mainly adolescent males) who get a kick out of breaking into computers and phreaking the phone system. Real hackers call these people ‘crackers’ and want nothing to do with them. Real hackers mostly think crackers are lazy, irresponsible, and not very bright, and object that being able to break security doesn’t make you a hacker any more than being able to hotwire cars makes you an automotive engineer. Unfortunately, many journalists and writers have been fooled into using the word ‘hacker’ to describe crackers; this irritates real hackers no end.
The basic difference is this: hackers build things, crackers break them.
If you want to be a hacker, keep reading. If you want to be a cracker, go read the alt.2600 newsgroup and get ready to do five to ten in the slammer after finding out you aren’t as smart as you think you are. And that’s all I’m going to say about crackers.
1. Learn how to program.
This, of course, is the fundamental hacking skill. If you don’t know any computer languages, I recommend starting with Python. It is cleanly designed, well documented, and relatively kind to beginners. Despite being a good first language, it is not just a toy; it is very powerful and flexible and well suited for large projects. I have written a more detailed evaluation of Python. Good tutorials are available at the Python web site.
I used to recommend Java as a good language to learn early, but this critique has changed my mind (search for “The Pitfalls of Java as a First Programming Language” within it). A hacker cannot, as they devastatingly put it “approach problem-solving like a plumber in a hardware store”; you have to know what the components actually do. Now I think it is probably best to learn C and Lisp first, then Java.
There is perhaps a more general point here. If a language does too much for you, it may be simultaneously a good tool for production and a bad one for learning. It’s not only languages that have this problem; web application frameworks like RubyOnRails, CakePHP, Django may make it too easy to reach a superficial sort of understanding that will leave you without resources when you have to tackle a hard problem, or even just debug the solution to an easy one.
If you get into serious programming, you will have to learn C, the core language of Unix. C++ is very closely related to C; if you know one, learning the other will not be difficult. Neither language is a good one to try learning as your first, however. And, actually, the more you can avoid programming in C the more productive you will be.
C is very efficient, and very sparing of your machine’s resources. Unfortunately, C gets that efficiency by requiring you to do a lot of low-level management of resources (like memory) by hand. All that low-level code is complex and bug-prone, and will soak up huge amounts of your time on debugging. With today’s machines as powerful as they are, this is usually a bad tradeoff — it’s smarter to use a language that uses the machine’s time less efficiently, but your time much more efficiently. Thus, Python.
Other languages of particular importance to hackers include Perl and LISP. Perl is worth learning for practical reasons; it’s very widely used for active web pages and system administration, so that even if you never write Perl you should learn to read it. Many people use Perl in the way I suggest you should use Python, to avoid C programming on jobs that don’t require C’s machine efficiency. You will need to be able to understand their code.
LISP is worth learning for a different reason — the profound enlightenment experience you will have when you finally get it. That experience will make you a better programmer for the rest of your days, even if you never actually use LISP itself a lot. (You can get some beginning experience with LISP fairly easily by writing and modifying editing modes for the Emacs text editor, or Script-Fu plugins for the GIMP.)
It’s best, actually, to learn all five of Python, C/C++, Java, Perl, and LISP. Besides being the most important hacking languages, they represent very different approaches to programming, and each will educate you in valuable ways.
But be aware that you won’t reach the skill level of a hacker or even merely a programmer simply by accumulating languages — you need to learn how to think about programming problems in a general way, independent of any one language. To be a real hacker, you need to get to the point where you can learn a new language in days by relating what’s in the manual to what you already know. This means you should learn several very different languages.
I can’t give complete instructions on how to learn to program here — it’s a complex skill. But I can tell you that books and courses won’t do it — many, maybe most of the best hackers are self-taught. You can learn language features — bits of knowledge — from books, but the mind-set that makes that knowledge into living skill can be learned only by practice and apprenticeship. What will do it is (a) reading code and (b) writing code.
Peter Norvig, who is one of Google’s top hackers and the co-author of the most widely used textbook on AI, has written an excellent essay called Teach Yourself Programming in Ten Years. His „recipe for programming success“ is worth careful attention.
Learning to program is like learning to write good natural language. The best way to do it is to read some stuff written by masters of the form, write some things yourself, read a lot more, write a little more, read a lot more, write some more … and repeat until your writing begins to develop the kind of strength and economy you see in your models.
Finding good code to read used to be hard, because there were few large programs available in source for fledgeling hackers to read and tinker with. This has changed dramatically; open-source software, programming tools, and operating systems (all built by hackers) are now widely available. Which brings me neatly to our next 

Freitag, 14. September 2018

Mein Test mit IT Export Idioteren >Berlin Weidmannslust

Mein Test im Internet
mit den IT Export Idioten aus Brasilien - Berlin Weidmannslust


CLICK MICH MAL


und alle clickten wie die Weltmeister


der Test liegt Heute noch auf dem Provider Server



das sind die Idioten, welche seit 2016 meinen sie seien Elite Cyber Hacker aus Brasilien - jeden Tag versuchen meine Server platt zu machen und ihre Chance als Idiot steigt damit. 
Die mit Handy auf die Strassen rennen um Cyber Hacking zu wollen 
Das sind die wo über Lautsprecher und Handy schreien sie wollen mich Internet Morta

Schluchseestr - bei mir im Haus, Nebenhaus - Titiseestr bis hin zur Pankower Allee Berlin Reinickendorf & Weidmannslust 

Ihrem Geschrei und Sprüchen nach - Intelligenzbestien - schlauer als jeder der was mit IT Technik zu tun hat. Sieht man genauer hin - über 12 Millionen Analphabeten Brasiliens reichen nicht aus!! 

Seit 2016 - zu oft getestet - Deutschland hat sich die besten Idioten aus Brasilien ins Land geholt

DANKE DEUTSCHLAND - IHR VERWÖHNT MICH!!

Mittwoch, 12. September 2018

Samstag, 1. September 2018

IT Export Idiota do Brasil - Berlin Reinickendorf

Portuguese - Uma bunda é mais inteligente que produz pelo menos merda !! Quem é tão estúpido e desde 2016 tenta hackear como se ele estivesse deitado no Telma é ainda mais estúpido que um ASS!

Portuguese – Ein Arsch ist intelligenter der produziert wenigstens Scheisse!! Wer so dämlich ist und seit 2016 versucht zu hacken als liege er auf der Telma der ist noch dämlicher als ein ARSCH!!