I am kind of a n00b but I am studying and learning the Python programming language, can someone tell me what it is capable of apart from graphical design? Can it for instance hack? Another question: has anonymous done any major cyber attacks lately?
Why I did not do anything wrong (at least not severe enough to attract the attention of hackers), I am just a kid with a bad attitude and a small dick so why? And I know how it works man, anonymous has no HQ they are an idea a concept not a group you can sign up for.
Why I did not do anything wrong (at least not severe enough to attract the attention of hackers), I am just a kid with a bad attitude and a small dick so why? And I know how it works man, anonymous has no HQ they are an idea a concept not a group you can sign up for.
Why I did not do anything wrong (at least not severe enough to attract the attention of hackers), I am just a kid with a bad attitude and a small dick so why? And I know how it works man, anonymous has no HQ they are an idea a concept not a group you can sign up for.
python is very terrible language
worse only programs written on it
jews are nasty mandatory otsupy and prisons and concentration camps
so that there is no one to make of a python candy as was done with Perl
Well I just started with Python because I heard it was a good language to start with, Lisp is cool as well and I respect everyone using different languages but that was not my question, I was wondering if I was capable of doing some cool stuff in Python. May I speak to you more?
>>34 |text
What the fuck are you doing, underaged /g/aylord?
Name:
Anonymous2013-07-22 15:46
>>36
Watch your privilege, heterocissexual programmer!
Name:
David2013-07-22 15:55
O not this shit again...
Name:
Anonymous2013-07-22 23:45
DA BEST GAIM DEEZIGN IS MY PYHTONS
CAUSE DEY B-LONG 2 A TOTAL PLAYA
DONT B PLAYA HATIN U
Name:
Anonymous2013-07-23 0:04
>>37
Come to think of it, we haven't had a decent social justice shitthread in ages. I guess this is as good a time as any to start one.
>>36
Homophobia in the tech community is damaging and unconscionable in a particular field which was founded by a persecuted homosexual. It is, however, just another sad instance of geeks' misapplied sense of masculinity. Either way, such /b/ehavior /b/elongs to /b/.
For other tasks Python is fine. The OO system is pretty rough. There is no private modifier. Simplicity seems to be the higher goal in Python. Multiple inheritance is possible though.
It is definitely more thought out than PHP, but less than Ruby. I don't dislike it too much.
Name:
Anonymous2013-07-23 16:09
>>48
Nothing can be less thought out than Ruby, ``faggot''
Name:
Anonymous2013-07-23 23:28
>>47 you actually expect a question like >>1 to get a serious response? Kill yourself.
Name:
David2013-07-24 5:18
>>48 You see I am new, Nikita? Russian I assume? You seem like a good person not part of the troll community and most of all you know what you are doing. Thanks again.
Name:
Anonymous2013-07-24 6:06
Python's good, learn Python.
Start with version 3.3, then if you need 2.7 (and you will), it shouldn't be too hard to learn. Don't be one of those idiots who plebiscit retro-compatibility.
Innovation > compatibility
Nikita is a russian racist who has his own shitty language, Symta and who has no job. If you see anyone saying ''Shalom, Hymie !", that's him.
Name:
David2013-07-24 6:15
>>52 Thanks my friend! I am learning it now from some books, do you know the language and if so could I ask you something? Well thank you at least you know how it is done, may I ask how you got your experience and what on god's green earth convinced you to get up so early?
>>52
The proponents of Python cite 'indentation' as the worst problem, this is a strawman argument 'this is the worst problem and its not really a problem'. This argument has been voted up presumably by people who like the language, because it is certainly not a good reason not to use Python. I am far from an expert at Python, but I have done a couple of semi-serious projects in the language and will try to recall specifically what I didn't like.
- Broken scoping: Python, like many other scripting languages, does not require variables to be declared, as let (x 123) in Lisp or int x = 123 in C/C++. This means that Python can't even detect a trivial typo - it will produce a program, which will continue working for hours until it reaches the typo - THEN go boom and you lost all unsaved data. Local and global scopes are unintuitive. Having variables leak after a for-loop is confusing. Worse, binding of loop indices can be very confusing; e.g. "for a in list: result.append(lambda: fcn(a))" probably won't do what you think it would. Why nonlocal/global/auto-local scope nonsense? Such shortsighted scoping design leads to Python's faulty package system, which exposes everything, so that, for example, typing time.sleep=4 instead of time.sleep(4) would break the system-wide sleep function, while accidentally assigning some method to time.sleep, and you won't even give a runtime error - just a hard to trace bug. Moreover, dynamic scoping impedes encapsulation and compilation, so everything you write will be open source: no FASLs, DLLs or EXEs, while developer may want to have control over the level of access to prevent exposure of internal implementation, as it may contain proprietary code or because strict interface/implementation decomposition is required.
- Inconvenient syntax: FIOC or Forced Indentation of Code (aka "off-side" rule) impedes using CLI, automatically generating Python code and moving around large code blocks. Editing Python code requires special editors (forget about Word/Notepad), that expand tabs into spaces, while transmitting python code through a web post or email breaks indentation. Absence of block-terminator is so utterly confusing, that you'll find yourself ending blocks with #endif anyway. It's painful to deal with other things that need indenting, such as large SQL queries, or HTML when you're using things like mod_python. And why is there ":" when code almost always has a newline after it? Python's whitespace indentation indulges messy horizontal code (> 80 chars per line), where in Lisp one would use "let" to break computaion into manageable pieces: get used to stuff like self.convertId([(name, uidutil.getId(obj)) for name, obj in container.items() if IContainer.isInstance(obj)]), while logical connectives being lost in a pile of other symbols, like "and" in "if y > 0 or new_width > width and new_height > height or x < 0". Instead of usual "fold" and "map" functions, Python uses "set comprehension" syntax, which has a large collection of underlying linguistic and notational conventions, each with it's own variable binding semantics: good luck discerning [f(z) for y in x for z in gen(y) if pred(z)] from [f(z) if pred(z) for z in gen(y) for y in x]. In addition, you will enjoy cryptic expressions like z(*z(*m.i())[::-1]).
- Crippled support for functional programming. Python's lambda is limited to a single expression and doesn't allow conditionals. Python makes a distinction between expressions and statements, and does not automatically return the last expressions, thus crippling lambdas even more. Assignments are not expressions. Most useful high-order functions were deprecated in Python 3.0 and have to be imported from functools. Creating an object just to call a function, like ''.join(map(str, r)), is just annoying sign of bad language design. No continuations or even tail call optimization: "I don't like reading code that was written by someone trying to use tail recursion." --Guido
- Inconsistent type system: no Numerical Tower, meaning 1/2 would produce 0, instead of 0.5, leading to subtle and dangerous errors. Arithmetics on strings is surprising at best: "2" * 3 is "222", "2"+"3" is "23", while sum(["2", "3"]), "2" * "3" and "2"+3 are type errors. Multiple false values: "", [], (), False, 0, 0.0 - all auto-coerce to false, but 0==False and 1==True, while ""!=False and ()!=False; worser, True/False auto-coerce to integers, so False/True==0 and ['no', 'yes'][False] won't give an error, although ['no', 'yes'][0.0] does give an error. Why have both dictionaries and objects? Why have both types and duck-typing? The Python language reference devotes a whole sub-chapter to "Emulating container types", "Emulating callable Objects", "Emulating numeric types", "Emulating sequences" etc. -- only because arrays, sequences etc. are "special" in Python. Subtle data types (list and tuple, bytes and bytearray) will make you wonder "Do I need the mutable type here?", while Clojure and Haskell manage to do with only immutable data.
- Python has too many confusing non-orthogonal features: references can't be used as hash keys; expressions in default arguments are calculated when the function is defined, not when it’s called. Patterns and anti-patterns are signs of deficiencies inherent in the language. In Python, concatenating strings in a loop is considered an anti-pattern merely because the popular implementation is incapable of producing good code in such a case. The intractability or impossibility of static analysis in Python makes such optimizations difficult or impossible. Quirky triple-quoted strings seem like a syntax-decision from a David Lynch movie, and double-underscores, like __init__, seem appropriate in C, but not in a language that provides list comprehensions. There are better ways to mark certain features as internal or special than just calling it __feature__. self everywhere shows that OOP was bolted on. Poor UTF support and unicode string handling is somewhat awkward.
- Poor performance: Python's GC uses naive reference counting, which is slow and doesn't handle circular references, meaning you have to expect subtle memory leaks and can't easily use arbitrary graphs as your data. In effect Python complicates even simple tasks, like keeping directory tree with symlinks. Global Interpreter Lock (GIL) is a significant barrier to concurrency. Due to signaling with a CPU-bound thread, it can cause a slowdown even on single processor. Reason for employing GIL in Python is to easy the integration of C/C++ libraries. Additionally, CPython interpreter code is not thread-safe, so the only way other threads can do useful work is if they are in some C/C++ routine, which must be thread-safe.
- Python has no well-defined and stable API, making life easier for Guido and tough on everybody else - that's the real cause of Python's "version hell". Python has inherited the installation mentality idea that libraries should be installed, so it in fact is designed to work inside unix package management, which basically contains a fair amount of baggage (library version issues) and reduced portability. Of course it must be possible to package libraries with your application, but its not conventional and can be hard to deploy as a desktop app due to cross platform issues, language version, etc. Open Source projects generally don't care about Windows, most open source developers use Linux because "Windows sucks". Python third-party library licensing is overly complex: licenses like MIT allow you to create derived works as long as you maintain attrubution; GNU GPL, or other 'viral' licenses don't allow derived works without inheriting the same license. To inherit the benefits of an open source culture you also inherit the complexities of the licensing hell.
- No outstanding feature, that makes the language, like the brevity of APL or macros of Lisp. Python doesn’t really give us anything that wasn’t there long ago in Lisp and Smalltalk. "This is a hobby project and I neede my time for other things…" --Guido van Rossum (http://1997.webhistory.org/www.lists/www-talk.1993q1/0060.html)
- Author of Python, Guido van Rossum, is Jewish, so if you dislike Jewish omnipresence and dominance, boycott Python.
Name:
Anonymous2013-07-24 7:14
>>51
"Nikita" is the one, who posts anti-python, anti-perl, anti-linux and anti-php copipes, in effect making an/g/ry de/g/enerates replying their butthurt to /q/ with constant whining about lax moderation.
>>57
Don't be a faggot please, not only is LISP old, not only is it used only by neckbeards, but it's a terrible language to learn for a beginner.
Every language has design problems, the point is that Python is a widely used, mostly well designed language, it is used a lot both by the academia and in the "real" world and it is easy to learn.
Don't listen to the language fanatics, a lot of people here will recommend commonlisp or another functionnal language. The point is that you want to start with an imperative language, e.g: Python, C, Java etc..
In my opinion Python is a very good starting point.
Name:
David2013-07-24 7:24
>>56 I wish the guy seems to know what he is doing.
>>57 I assume that wasn't from someone who likes Python very much?
>>51 So instead of letting people help each other he creates chaos?
Name:
Anonymous2013-07-24 7:25
The strongest pipes are always Jewish made ones.
Name:
Anonymous2013-07-24 7:32
>>59
If you think Common Lisp is a functional language, then you aren't worth your salt as a programmer. Then again, that's exactly what one should expect from a Python lover...
Open Source projects generally don't care about Windows, most open source developers use Linux because "Windows sucks". Python third-party library licensing is overly complex: licenses like MIT allow you to create derived works as long as you maintain attrubution; GNU GPL, or other 'viral' licenses don't allow derived works without inheriting the same license. To inherit the benefits of an open source culture you also inherit the complexities of the licensing hell.
Je suis trollé
Name:
Anonymous2013-07-24 9:39
Is Linux easy to use and put on a pc or does it take a lot of memory and is it hard to run?
Seriously leet speak? You sure seem 1337 to me... no offense... but I think that if you were actually leet you wouldn't be on such a forum... especially not using that language.
Name:
Anonymous2013-07-24 17:15
>>81 fuck sorry for (82) I misread... I thought you spoke to moi.
>>80-83
Kill yourself out of /anus/, /g/ samefagging fagshit.
Name:
Anonymous2013-07-24 17:25
>>84 Allow me to give you a tip, I am not from any British (or American if you please) speaking country nevertheless I find it more offensive to be attacked verbally with class it is a lot better to do it with class then just calling me a "samefagging fagshit" because it doesn't sound dangerous at all.
Name:
Anonymous2013-07-24 17:41
What's a taggot?
Name:
Anonymous2013-07-24 17:47
>>85
Allow me to give you a tip: lurk more and fuck off back to your favorite ima/g/ereddit.
Name:
Anonymous2013-07-24 17:48
I've been the only one helping all along op... there are no "guys"
=p. You should really stop asking for help on these forums tho, that's not what they are made for. Use stack overflow or reddit for that.
>>205
You can lead a horse to a suicide request, but you can't make him do it. But it's you who is out of line. Some fucker comes here asking us to do his work for him, and threatens to go to an admin when we tell him to fuck off? Are you fucking serious? Pay me money and maybe if I'm desperate I'll assist a fucker like that.
Name:
Anonymous2013-07-25 5:19
>>207 ... I guess you are right... Sorry guys, but I don't have any money either... Well I will just be a spectator then.
>>208
It's ok to ask for help but don't be a demanding little shit about it. fuck. Ask a question and eventually it'll get answered. It might take a day or so since some people here have busy schedules. I would help you if you hadn't pissed me off so exuberantly with shit like >>205, but I'm sure I'll get over it and help you at a later date.
Name:
Anonymous2013-07-25 6:43
Why do you believe you cannot hack in Python? Python is a complete programming language so it's capable of everything. Anonymous hasn't done any major cyber attacks lately.
Name:
Anonymous2013-07-25 6:57
^ You faggots better listen to the voice of reason
Name:
Anonymous2013-07-25 7:25
>>209 Well I am really new but I was just reading a bit and pulled an all-nighter so now I know what hacking is, finding the vulnerabilities in a system or program and I guess you can do that with any programming language, as I said I am really new and practically just a kid.
>>209 Thanks man, I respect it. I get it, your territory I am the prey here not the hunter.
There is some serious retardation going on. /g/ag on my cock.
Name:
Anonymous2013-07-25 15:27
Hello,
First of all sorry for doing this but I know few good forums that could compare to this one and I know I am just a "fag" but this is a software related question, for a couple of days I have been into Linux and today I finally decided to install it so I download Wubi installer and went on I did not create a second hard drive as there were some complications and I couldn't get it past 1970 MB.
I went on and started the installer (now I do have to mention that I have a PC running windows 8 and it has UEFI-Boot which I heard some rumors about) First it crashed, the second time it went well but I had to close my pc before I could exit the final installation window, when I came back the window was gone and I assumed it was done and over... I couldn't have been more wrong!
I started my PC, which just made a growling noise coming from the right speaker before it shut off again... I then pushed the power button about 30 times and it started fine but after about 3 seconds a window popped up explaining something about a mistake in OS and that it would repair windows.... I then got a windows 8 themed window which gave me the option of what OS to choose, naturally and out of curiosity I clicked Ubuntu which gave me the same error window as before after which I chose windows 8 and it went as normal...
Now the question is: what do I have to do and can I get it to work?
This is not a programming related question. Programming related questions are about: Lisp, scheme, assembler, algorithms, mathematics, c, c++ and haskell.
Not programming related questions are about: Java, python, progressive views on racism, jews, mudslimes, niggers, japs, pedophilia and how-do-i-fix-my-computer-,-because-I-didn't-read-the-fucking-manual?.
Go to /g/. They will help you install ubuntu.
Name:
Anonymous2013-07-25 16:47
Come on, you know most of /g/ are assholes...
Name:
Anonymous2013-07-25 16:49
>>217 WHY THE FUCK
DO YOU NIGGERS
LOVE ABUSING ELLIPSES SO MUCH? WHY?
>>220
Then go to Reddit. They're friendly and helpful, and you will blend in right away,
Name:
Anonymous2013-07-25 17:17
>>223 I don't need nor want friendly or helpful I want cold and professional, why do you think I am still here? Because I frigging love the service? No, because I know there are people out here that now what they are doing. Even if it takes a couple of answers to get to the right one.
>>217
What the hell is Wubi installer.
Why didn't you just install Ubuntu by burning it into a cd?
It's easy as fck, why didn't you RTFM YOU WORTHLESS SANDNIGGER ZDAODUIZEFIEZFGZEIFUGFPEGFPOZEGFUEZDHUIZADHZASA !!!!!!!!!!!!!!!!!!!!!!!
Name:
Anonymous2013-07-25 18:08
>>229
He's used JavaScript for a lot of his iOS apps.
Name:
Anonymous2013-07-25 18:09
>>227
oh hey, it's that skrillex guy from that netscape documentary
>>235 Jamie Zawinski is a Lisp programmer, but most of his projects are written in Perl[8] and C.[9]
I'm an APL programmer, but most of my projects are in Java and FIOC.
Name:
Anonymous2013-07-25 18:46
>>235 Jamie Zawinski is a Lisp programmer, but most of his projects are written in Perl[8] and C.[9]
I'm an APL programmer, but most of my projects are in Java and FIOC.
Name:
Anonymous2013-07-25 19:38
>>235 Jamie Zawinski is a Lisp programmer, but most of his projects are written in Perl[8] and C.[9]
I'm an APL programmer, but most of my projects are in Java and FIOC.
Name:
Anonymous2013-07-25 19:38
>>235 Jamie Zawinski is a Lisp programmer, but most of his projects are written in Perl[8] and C.[9]
I'm an APL programmer, but most of my projects are in Java and FIOC.
Name:
Anonymous2013-07-25 19:43
JEWZ
Name:
Anonymous2013-07-26 5:23
Check em?
Name:
Anonymous2013-07-26 7:32
What are the arguments for using perl, ruby or LISPH?
Name:
Anonymous2013-07-26 7:55
>>242
Perl is great for banging out quick utility programs, I wouldn't use it for any large projects though.
Name:
Anonymous2013-07-26 8:27
>>243 Thanks man, utility programs like? Ruby vs Lisp then?
Name:
Anonymous2013-07-26 8:59
>>244
Like, various format conversions and text mangling, since it has the best regex.
For example, I just wrote a script that scrapes a series of web pages, pulls out select chucks of data and sticks it into an SQL table, plus another script that presents a web page with more advanced queries than the original page offers.
I also use it to proxy and filter RSS feeds so my torrent client can directly download the torrent files from certain broken web sites.
Another does various conversions on Sony's PMF format files. Etc... Oh, and of course there's stuff for spamming /prog/, my favorite being the FrozenChef bot from a few years back.
Name:
Anonymous2013-07-26 9:33
>>245 Damn! That sounds like some awesome hard work! Where did you learn this craft if I may ask?
One day I wish to be like that. But what do you overall use the most?
>>246
I learned Perl when I did sys admin. These days I mostly use MATLAB combined with a few C functions (MEX compiler) for signal filtering and analysis. And I've been dabbling in Android dev, though I'm quickly coming to not like either Java or the platform.
>>248 System admin as in IT computer lessons? I assume you are on the "good" side...
Name:
Anonymous2013-07-26 17:23
>>249
Reddit is waiting for you with open arms, David.
Name:
Anonymous2013-07-26 17:26
>>249
CPAN is the Perl module repository, i.e. the function library. Makes writing that sort of stuff only a few lines of code. And by sys admin I mean configuring and managing racks of servers (as well as 100s of TB of storage, and tape libraries for archiving and backup).
>>255
I'm not pissed off, I just felt sorry about you and your lost time. You can spoonfeed the retards for all I care.
Name:
Anonymous2013-07-26 20:20
You won't learn anything if you just ask questions without actually diving into it.
That being said, helping people really pisses these sandniggers off and that procures me a certain pleasure.
If you want to blend in, just start praising Lithp and Haskell, that should appeal to all the neckbeards.
>>257 Then teach me how to dive... Haha, I know the feeling, I doubt if they are all from the middle east though... I might need a little more than 2 names... who are they and why are they praised?
Name:
Miranda2013-07-27 17:31
Can someone tell me how one finds exploits in a network linked computer without touching the so said computer? Or at least how would you do it and using what?
Do not take advice from anyone on the internet on this subject. Eventually someone will tell you to run their script and then you'll go to jail for 40 years and get out when you're 47.
But if you want, you can start learning how to program right now. Just make something in pygame or something.
Name:
Anonymous2013-07-27 17:48
There are two reasons why you might want to conduct a penetration test. One, you want to know whether a certain vulnerability is present because you're going to fix it if it is. And two, you need a big, scary report to persuade your boss to spend more money. If neither is true, I'm going to save you a lot of money by giving you this free penetration test: You're vulnerable.
Name:
Miranda2013-07-27 17:57
>>262 Did you put serious work into that or did you just tell the hard truth? I was just interested in penetration techniques...
>>261 What do you recommend to start with (language)?
>>263
Python is accessible, has documentation, and libraries. So you might be able to make somethings with that. But if you time on your hands you could also start with real mode assembly and blit the framebuffer.
Name:
Anonymous2013-07-27 18:35
BLIT MY ANUS
Name:
Anonymous2013-07-27 18:37
There are two reasons why you might want to conduct a penetration test. One, you want to know whether a certain Touhou is willing to take it because you're going to convince her to do it if she refuses. And two, you need a big, scary dick to persuade your Touhou to sleep with you. If neither is true, I'm going to save you a lot of money by giving you this free penetration test: *grabs dick*.
Another question: I was messing around in Win8 and I had some trouble, I wanted to change the real text color when for instance searching hoping this was possible just by changing some stuff in the registry I came here, so just to get it clear: I want the actual written text green or any other color (to impress some non computer friends really) So just the text I search with I want green, can this be done? I already configured my browser to display a blood red canvas when loading but I want MORE! Anyone have a solution?