Tuesday, July 19, 2005

How to Write Comments

Last edited: 2006 January 16

Should I write comments? What is good comment? Is it possible to write comment for a class in 5 minutes? I would discuss these questions. I would be happy if, after reading, you will be thinking that good comments are an important thing to your project success.

I must admit that I hated to write comments. I was finding them boring and unnecessary. And the worse thing is that I was afraid that during my design some of my methods or classes might go away together with my time spent for writing my good comments. So the first thing I would discuss is


Why?

Here is the first reason for comments. Comments can make your design clearer. You could mark the class with its responsibilities using comments. You can check then how much your class respects its responsibilities, and that it don’t do something which is not its responsibility. Moreover, you can check how much your class respects Single Responsibility Principle and make some decisions to improve the design.

But I think that primary reason which can force you to write comments is to make your code understandable for others. The rule is simple. If you will hide your code for forever - nobody is going to know if it is commented or not. As soon as you are going to share your code with some other person - unless you are not writing it all together from the beginning - he or she will be happy to see your class comments.

Of course you could be happy to explain it to everyone personally. But you want to avoid phone calls asking what your class does while you are on vacation.

Updates are here!
Some person recommends to comment hard things. Absolutely.
Many people w
rite comments for themself. Hire them now.

Do you know any other reasons which make you to start writing comments? If yes - I will be happy to include them here. Personally I find an important reason to have a good rest on vacation. So the next question will be -


How?

What is good comment? Should we judge how good the comment is by its word count? Should we have each method commented? I would say we don’t, or else our comments could end up time-consuming for us and being boring for our readers.

Antipattern
It’s so easy to mark a class with extended description of its name. We end up with class TransactionManager marked as Represents a Transaction Manager. Would this be descriptive enough? No sense to include this in comments at all. I can read a class name by my own. I would be more happy to see TransactionManager marked as Manages (creates, disposes and provides) transactions.
Personally I find very useful an old proven approach for class comments. CRC cards was used for a long time (since at least 1989) and hugely adopted with modern techniques like Agile Development (see http://martinfowler.com/articles/designDead.html and http://www.agilemodeling.com/essays/agileModelingXP.htm). We can take two good things from there and supply our comments with: class responsibilities, and class names our class is planned to communicate with.

Note that OO design tells our class to respect Single Responsibility Principle. Here is where your comment becomes an important design tool. If you find it impossible to name your class’s responsibility with a single combination of verb and noun – it is a good chance your class is taking too much on itself and should be split. One trick here is - use of manages helps.

Antipattern
Someone might want to describe here how other classes are going to communicate with our class. I would move this information into corresponding class.
We should end up with class comments which are pretty short but descriptive enough. And what about method comments? No clear recommendation for now. I would recommend to name a method as much descriptive as possible. It could make its comment unnecessary. I would mention some exception situations however. For example, I would describe what the method does if no item with given key available. Will it return null? Will it throw an exception?

Ok! Now we know which kind of comments we are going to write. Now the question is


When?

I dislike doing something which will be thrown away. I dislike writing comments which will be thrown away. During my design, I create new classes, play with them, throw them away and create new instead. I would find a way to save my time and write a comment when I have a decent hope my class will remain within the system.

The point to start writing comments is... when the code is ready to be presented for others. This could be the time before commit to a main source repository, or insert your case here. For this time, I have pretty stable class design, and good chance my comments will live long. I am pretty sure with my class’s responsibilities and what classes it will collaborate with. I can spend as much as 2 minutes writing this information as a class comment. Everybody’s happy!

809 Comments:

Blogger dkrukovsky said...

Open source project will definitely have a good advantage if its code will be well understandable. In this article, I tried to show several problems which stops from writing comments, and how to deal with them.

Fri Jul 22, 03:53:00 PM GMT+3  
Anonymous Anonymous said...

Beginning coders comment nothing;
Novice coders comment the obvious;
Experienced coders comment the reason for the code;
Master coders comment the reason for the code not used

Tue Nov 22, 09:40:00 PM GMT+2  
Anonymous Anonymous said...

Good thoughts on comments. As an embedded developer attempting at times to use open source stuff I would plead with the community to please comment your routines. In the embedded world a lot of times we don't have a POSIX environment or sometimes even an OS. Trying to adapt open source stuff becomes a challenge because we cannot just configure make... We have to re-write the code to adapt it to our environment. The greatist help here is comments on each of the routines (methods) so we can see the gazinta's and gosouta's what they do and what the routine does. I've given up on a number of interesting open source tools or libraries because they don't do this and I don't have the time to decode cryptic routine parameters and try to guess what the routine does and what the output might be.

Anyway, document your stuff and your project might just end up in every parking meter on the planet...

Wed Nov 30, 06:08:00 PM GMT+2  
Anonymous Anonymous said...

You say But I think that primary reason which can force you to write comments is to make your code understandable for others.

Actually I think the primary reason is to make your code understandable to yourself and actually I tend to write comments before I write the code itself...

Wed Nov 30, 06:14:00 PM GMT+2  
Anonymous Anonymous said...

I would disagree that the primary reason for commenting is to make your code understandable to others . Yes, it is a nice (and necessary) byproduct, but the primary reason Is that the act of documenting will improve the quality of the code you write. This sounds strange, but it's much harder to document poorly written/designed code. Thus, you become much more aware of the inconsistencies and design flaws, and tend to avoid them.

More from me on this subject here

Wed Nov 30, 06:19:00 PM GMT+2  
Anonymous Anonymous said...

I like milk

Wed Nov 30, 06:29:00 PM GMT+2  
Blogger Neil Cherry said...

I'm an old time assembly language programmer (I do hardware) and comments are extremely important. The first comments are documentation that I gather from elsewhere. Then the steps to do something manually. Then I describe the routine, function, whatever. My 'main' routine usually has few comments as the names are self describing (tend to be high level) such as get_cli_options() or setup_daemon() (for those that use C). The actual comments start in the sub files where I've put together an API. The further down you get the more into the bits you get.

Wed Nov 30, 06:30:00 PM GMT+2  
Anonymous Anonymous said...

"Comments can make your design more clear." You mean, "clearer"?

Wed Nov 30, 06:33:00 PM GMT+2  
Anonymous Anonymous said...

ewww... I forgot what I wanna comment :P

Wed Nov 30, 06:42:00 PM GMT+2  
Blogger dkrukovsky said...

Thanks for your comments and grammar fixes everyone. Definitely one of the important things comments can give you is clearer vision of your design! You might even trigger design changes as long as you write comments.

Wed Nov 30, 06:43:00 PM GMT+2  
Anonymous Anonymous said...

Hi.

Interesting read, but a few comments.

Disclaimer: I am a teacher in embedded systems/robotics/computer architecture/...

When I teach programming, an integral part is spend on how to comment code. It is not only important, as you said, to explain code to others. It is also important to keep remembering what you actually did with the code you wrote several months after you wrote it and after you have moved on to a different project.
Secondly writing your comments before you write code (as some other poster here mentioned) can lead to a clearer/more structured implementation of your routine/method/class whatever. It can help you to think about how to write the code the best way possible (i.e. design code, not 'hack it together'*). A clear overview of the arguments a function will take and what it returns can lead to a cleaner implementation of the code to do the actual work.
If not, write comments as soon as some part is 'finnished', whatever that means.
And by the way, keeping your comments up to date should be a part of the code maintenance process.
In the embedded world especially (as again someone mentioned here) it is very good practise, and luckily very common, to see very good code commenting. To see an excellent example, get your hands on the uC/OS-II source written by Jean J. Labrosse.
Lastly, it is my opinion that well documented/commented code looks better than non-commented code.

* Use of the word 'hack' due to better alternative, but you get the point, no need to point it out to me how wrong it is for me to use the word in this context ;-)

P.S. English is not my native language, so sue me for my spelling/grammar mistakes. I will reply to your allegations in my native Flemish, or even the language of the country where I am now, Finnish :-)


Best regards and happy holidays,
Johan

Wed Nov 30, 06:46:00 PM GMT+2  
Anonymous Anonymous said...

A programmer doesn't truly learn the importance of comments until he has enough experience under his belt to have been in the horrible situation of staring at code he wrote years ago... and not understanding a thing!

I like writing comments. Kind of the icing on the cake.

I wish my development environment would support fancy typography in the comments: fonts, bold, tables, etc.

Wed Nov 30, 06:46:00 PM GMT+2  
Anonymous Anonymous said...

The only effective way I have convinced someone to comment their own code is to present them with a lot of code with which they must work that is poorly commented. After an hour or so of using their editors find tool they have been convinced that good comments are the path to nirvana.

Wed Nov 30, 06:54:00 PM GMT+2  
Anonymous Anonymous said...

I comment before I write the code, the comment describing the contract for what I'm about to write. It's good to comment on preconditions and post conditions.

Within the code I find it good to comment on why some things are done the way they are, or if its complex refer the reader to some reference or design material. A block comment called "Calculate the determinate of the matrix" can be quite nice. Not had much need for that recently as more and more of the complex stuff is done in libraries nowadays.

A lot of code nowadays can be autocreated. If the generator were to pass comments from the source definition into what it creates then it would help with things like intellisense. Unfortunately the one I'm using at the moment doesn't.

Combine this with a tool that complains bitterly if something is missing a comment and you get problems - compiler output with hundreds of warnings that if you tried to fix, your work would be overwritten next time the code generator runs on next compile. All these warnings hide the really important "variable used when not initialised" that you really need to see.

Should you comment a method that implements an interface or and abstract method if the comment on the interface or abstract method's comment is enough?

Javadoc and Eclipse are quite sensible here. Eclipse generates a non-Javadoc comment, and Javadoc uses the interface's comment.

NDoc on the other hand insists on a comment on the implementation which is a real pain as keeping all those identical comments in sync is hard - and typing "Look at interface foo" is pointless.

Wed Nov 30, 07:07:00 PM GMT+2  
Anonymous Anonymous said...

Ehh... all of that sounds rather complicated and isn't what I've experienced.

Remember, comments are not documentation. Writing a few comments here and there or hundreds of them won't necessarily make your code more understandable.

As a rule of thumb, use comments to excuse or blame. If you're finding other reasons for needing comments, I'd say there's a good chance your documentation isn't sufficient or your code sucks and is too cryptic for another to grasp -- in which case comments probably shouldn't be your largest concern.

Wed Nov 30, 07:21:00 PM GMT+2  
Anonymous Anonymous said...

Last thing I had to do in my last project was to complete and translate to Spanish all comments/javadoc. I even had to document other's code. During that process I discovered that some comments were a little difficult to write, like the ideas didn't fit quite naturally. Then I realized that the code wasn't as good and simple as it should be.

If I refactored the code in a way that the comments and docs were simpler that would mean that the code would represents the ideas behind it in a more elegant manner. And I think it will represent better code.

If you cannot easily explain what you are doing...something is wrong (either with your doings or you) ;).

Totally agree with neil cherry: Assembler without comments it is worhtless ( or a good trick to keep your job).

Wed Nov 30, 07:29:00 PM GMT+2  
Anonymous Anonymous said...

The main reason to comment is to understand the reason for writting the code. If you can't come up with clear comment for an API - don't write it. It means you don't understand the task at hand. So - originally write comments that make you better understand design of the API. Add comments latter to expand original so other will understand you.

Wed Nov 30, 07:32:00 PM GMT+2  
Anonymous Anonymous said...

I agree with most of what you said, but one thing to take into consideration is the time when you should right your comments. I tend to write mine as I code or else sometimes when I come back through a larger class I can not remember the exact reason I did everything I did... this also makes debugging a lot easier.

Wed Nov 30, 07:39:00 PM GMT+2  
Anonymous Anonymous said...

You forgot the most important reason of all: I write comments so I will understand what I've done (and what the code does).
In one or two months from now, you will have no idea what the code does.

Wed Nov 30, 07:41:00 PM GMT+2  
Anonymous Anonymous said...

Don't comment your code if you wana keep your job ;).

Wed Nov 30, 07:51:00 PM GMT+2  
Anonymous Anonymous said...

I have been in the telecom software industry for 16 years designing and maintaining software applications with millions of lines of code and a 10-20 year lifespan. I have worked through the transition from procedural to data abstraction, and have personally struggled through all the challenges. Good comments increase quality of applications and the productivity of developers for applications with long life spans.

One interesting characteristic of OO development is that the design is performed from a static "data" perspective, but diagnosis is done from a dynamic "functional" perspective. In my experience, it is the ability of an individual to translate between the two modes that determines their effectiveness.

While this translation is trivial in some applications like a washing machine or ATM, where the classes implicitly represent functionality(e.g. card reader). It presents a formidable challenge in transaction based systems where classes represent a tiny piece in a heirachy of logical abstractions with no implicit association with external functionality or context within the system.

In conclusion, good comments should mitigate the risks inherent to an OO methodology. This can be achieved by writing comments that provide the reader with what purpose the class serves in terms of the system context as well as assist them on the translation between procedural and data centric analysis.

Wed Nov 30, 07:58:00 PM GMT+2  
Anonymous Anonymous said...

Generally good advice, thanks. This article does however, point out that most engineers are not good writers. Learn some grammar people!

Wed Nov 30, 08:00:00 PM GMT+2  
Anonymous Anonymous said...

As an aspiring programmer (C#), I find it is important to get in the habit of commenting code.

I know the importance of this as a reslut of the many aquisitions in which our current code (VB) was ridiculed and scrutinized for lack of comments.

BTW - I am learning programming for fun - I am networking geek by trade! :D

Wed Nov 30, 08:03:00 PM GMT+2  
Anonymous Anonymous said...

"Don't comment your code if you wana keep your job"....in seven years of professional coding, I've seen a lot of people attempt this strategy, and every one of them eventually got fired.

At some point, management decides that the pain you will continue to inflict in the future exceeds the pain of transition. Also, bear in mind that at some point, your application starts to become obsolete, and nobody will want to give any new projects to you.

Meanwhile, people who write clean, well-commented code keep their jobs because they make everybody happy.

btw, a wonderful example of well-commented code is the source of SQLite.

Wed Nov 30, 08:05:00 PM GMT+2  
Anonymous Anonymous said...

This is actually 1/3 of a research paper I am finishing now. We compared very successful open source projects to student projects. We found a very strong consistency of both length of comments and how often comments occur across all six open source projects we analyzed. Using this data we looked at student projects and in many respects the student projects comments are much shorter and not as frequent. And as a side note, we analyzed comments, global variables, function calls, and out of everything commenting was definetly the most consistent across all of the projects

Wed Nov 30, 08:07:00 PM GMT+2  
Anonymous Anonymous said...

For my money the best reason to comment your work is not for others, but for myself. When I look back at something I did more than a month or so ago, it might as well have been done by someone else. My comments are often the only clue to what I was doing or thinking at the time.
As Oscarruzzo said, I comment first, then use the comments to help me with my structure.

Wed Nov 30, 08:08:00 PM GMT+2  
Anonymous Anonymous said...

Let's cut to the chase - comments should not explain CODE to other, but establish the CODE's structure and define operational stages. Attempting a deeper explaination means spending valuable time in comment management during debug sessions/trial code development. Not spending the time to manage eloquent comments leads to distrust and disuse.

Use block comments for File/Function headers and establish Name, Purpose/Responsibility, Developer, Date. Make some attempt at I/O, but this usually fail over time.

Use code separation comments to document the different stages within a function - limit to 7 but preferably 3 sets per function.

ONLY use inline comments to establish a correlation between data elements. Explaining data elements is also OK but not imperative.

Wed Nov 30, 08:13:00 PM GMT+2  
Anonymous Anonymous said...

I also like milk

Wed Nov 30, 08:23:00 PM GMT+2  
Anonymous Anonymous said...

I tend to comment before writing any code: since I mostly write either shell scripts or code for dynamic web pages (PHP is my preferred languate), I generally write out most of the comments as a layout. For instance:

# Section 1 -- check to see if the command line
# arguments make sense.


# Section 2 -- deal with the -h or --help flags.


And so on. In a lot of cases, if I try something and it turns out not to work, I'll comment it out, then add an explanation. ("This turns out not to work because I'm an idiot. I can't insert this value into the DB because it's a string being inserted into a field that has type int! I rewrote this below to do more checking to see whether the data-type is correct").

That way, if I'm trying to do something similar in the future, or if I look at the code and wonder why I wrote that routine in a way that looks more convoluted than it needs to be, I can see my reasoning and why I didn't do it the simple way.

Wed Nov 30, 08:31:00 PM GMT+2  
Anonymous Anonymous said...

Some advice from a grizzled systems engineer.

Avoid comments.

If a particular piece of code needs comments, first try to reorganize the code lexically and syntactically: apply proper formatting and whitespace and use sensible variable names. It should be a lot more readable now.

Still not immediately clear what the code is doing? Then reorganize your code structurally: move loops and if/else blocks into separate functions, add descriptively named variables to hold the results from complex expressions, strive to replace complex if/else and switch/case blocks by input->action mappings.

If that still doesn't quite work, reorganize your code architecturally: scrutinize the data flow, design a sane API with sensible objects method names. If necessary, go back to the client and verify that you actually understand the problem.

Finally if the code is still not self-explanatory, take all the reasoning that went into the reorganization effort, and use that as a huge big comment block.

Wed Nov 30, 08:37:00 PM GMT+2  
Anonymous Anonymous said...

Two things:

First, comments are useful even if you are hiding your code forever. I can't tell you how often I've come back to an old piece of code, intended only for my own use, and been confounded by its obscurity or pleased to see an explanation in a comment. It makes a difference. It's also a good way to force you to think about what you're doing before you do it. (Even better are languages that allow you to express some of these things in the language itself, so that they are additionally checked by the compiler!)

Two: I'm surprised you didn't explicitly mention pre- and post-conditions, since this has been known for years. When documenting a function, it's critical to state precisely the conditions under which it will work, what it does, and what state of the world it guarantees after being executed. Being specific here helps for the person who wants to call your function, but is even more important for blame assignment: when the program goes wrong, it's important to be able to figure out WHY. Is it the caller or callee? Being able to see that a function is called without its preconditions, for instance, would blame the caller. Seeing that the function doesn't meet its stated specification in a corner case would blame the function itself.

Wed Nov 30, 08:41:00 PM GMT+2  
Anonymous Anonymous said...

I tend to use a lot of comments. Comments not only help you figure out what's going on, but if you are keeping your code organized, then you can use comments to find your way around the code.

Face it - Most IDE/Code editors have syntax highlighting... It goes a lot easier finding a big green comment saying "// interface Drawing starts here" than it does looking through code which is poorly sectioned off. Object Oriented design has done much to alleviate this need, but the need still exists.

Then there's TODO Comments... After you've flow-charted something, or designed something big in UML, etc.... you can place TODO comments to outline the functionality you need to follow in code. Following your design documentation ensures that your code will fit in with everyone else's bit of code.

And, a deleted comment in a deleted code block was still useful. I don't know how many times I've written a comment for what I'm about to do and realized that "This isn't going to work the way it is written". Comments can help you find flaws in your design documentation.

Wed Nov 30, 08:46:00 PM GMT+2  
Anonymous Anonymous said...

You ask, "Do you know any other reasons which make you to start writing comments? If yes - I will be happy to include them here."

When I code, one thing that always triggers a comment in my code is "did I get stuck?". As an experienced programmer, I don't get stuck on the easy stuff. e.g. I can read API docs and if its in there, I don't get stuck. So no comments. Go read the API.

But if I find a bug in the API docs, or if I have to cross reference some arcane document, then the comment will include enough info to reconstruct the document chain or ideas which are necessary to understand why for example an index starts with -1 instead of 0 (there is a bug in the offset algorithm which we don't own which for now adds one to the start index... who knows why, but it happens)

Anyway. That's it. If you have to spend a lot of time getting past some coding aspect of things, I always document the "aha!" or the insight which would have eliminated the need to spend all the time researching at th time.

Wed Nov 30, 08:47:00 PM GMT+2  
Anonymous Anonymous said...

Due to the pace at which we must develop, and our coding style which is very clean and self-descriptive, we rarely document our code. We're dealing with PHP using some high powered libraries I developed (which ARE commented.) Most of the scripts are short and sweet, and their content is enough documentation. This is an issue that we battle over often. I say, for posterity, we must document... and my boss says that's fine, but the deadlines we face make it impossible. We do, however, comment whenever possible... it's just that it usually turns out to be less than 10% of what my professor in college insisted we do.

Honestly, I never have any problems reading code without comments. I read code just like I read English, so most of the time I just skip reading the comments anyways because the code itself gives a more complete description.

Comments are good if not essential for more n00bish people though.

And yes, I've been involved in MASSIVE enterprise projects that have spanned over 5 years of development, upgrades, migration, and maintenance, and I've never struggled because of lacking comments.

Kinda a moot issue. It's all about personal style and employment requirements. Here, it's kinda the opposite of what you'd expect. The developers suggesting more time to do it "right", but the higher ups saying, "too bad, just get it don ASAP and move on." Some companies have a person whose sole purpose is to comment code and document its useage.

I do love looking back in my code from 4-5 years ago and reading a section that says something like, "OMG HACK!" or "Redo this later" -- it never gets fixed when you're an internal solutions developer ;-)

-@

Wed Nov 30, 09:02:00 PM GMT+2  
Anonymous Anonymous said...

Why another reason is because I need to recall me what the code was written for. So comments are not only util for other people, but also for me self. It's pretty much appreciable to read 1 or 2 lines unlike some lines from the code.

Wed Nov 30, 09:08:00 PM GMT+2  
Anonymous Anonymous said...

@grizzled: If you are commenting about how a particular routine works, I agree, it's redundant. But a good comment tells how the routine fits into the larger structure, and no amount of code reorganization is going to do that for you. Download the SQLite sourcecode, and ask yourself whether it would really be as easy to understand what's going on without the comments.

Wed Nov 30, 09:16:00 PM GMT+2  
Anonymous Anonymous said...

comments are for the weak minded, a true hacker will just read the source and compile it in his brain. besides its usually more fun to rewrite things after a few years anyway.

Wed Nov 30, 09:21:00 PM GMT+2  
Anonymous Anonymous said...

My feeling is that the best style for comments is a paragraph at the top of a short block of code (say a page) that clearly describes the functionality of the code. I don't like having comments mixed in with code.

Wed Nov 30, 09:26:00 PM GMT+2  
Anonymous Anonymous said...

The design (descriptive models etc) and following that, the implementation should "speak" the obvious language to anyone who reads the code. The developer should know exactly what the class does before he/she has a first glance at the source code. If I need to read code and embedded comments to understand what a class' responsibility is, then your design is fairly pedestrian if not entirely pathetic. I apoligise if I sound supercilious, but bad design / architecture is almost entirely the cause for 95% of the used/unused software littering the sidewalks.

Wed Nov 30, 10:20:00 PM GMT+2  
Blogger Greg said...

This comment has been removed by a blog administrator.

Wed Nov 30, 10:43:00 PM GMT+2  
Blogger Greg said...

It is possible to write your code without using comments.

I have found that using proper names for variables and methods along with having the each method properly refactored works the best.

This also enables you to see the abstract in your code that allows you to properly move towards using patterns in your code.

My Guidelines

* If you feel the need to write a comment - refactor your code so the comment becomes useless.

* Comments lie over time

Wed Nov 30, 10:44:00 PM GMT+2  
Anonymous Anonymous said...

Adopting a commenting style like javadoc has other advantages. It works with doxygen and enhances the contextual help in editors like Slick Edit( including hyperlinks and fancy formating ).

Wed Nov 30, 10:49:00 PM GMT+2  
Anonymous Anonymous said...

Being a lazy programmer I comment only when I see that the time spent writing the comment is less that the time I (or someone else) would spend trying to understand the code.

This is the only rule, and it works for me.

Wed Nov 30, 11:05:00 PM GMT+2  
Anonymous Anonymous said...

How to write unmaintainable code

Wed Nov 30, 11:15:00 PM GMT+2  
Anonymous Anonymous said...

Comments are there to tell the reader the intent of the code. All that reading the code itself can tell you is what the code actually does. One generally would have no reason to read the code unless there was some discrepancy between the intent and the action; having the two detailed in the same place is A Good Thing [tm].

Wed Nov 30, 11:57:00 PM GMT+2  
Anonymous Anonymous said...

Consider this article as code. What lies 'between the lines' is open to interprtation. Note all of the comments on this article/code! I now understand the orginal article better. How a class/function works should NOT have to be inferred. Without comments, inferences are drawn and errors introduced in the main program flow - the first step towards a debugging nightmare. Think of commenting, whether separate and distinct or part of a naming convention, the first line of defense against debugging hell. Unless you like to debug, then I think you need therapy - or you need to become a therapist. The last thing I want to do is re-learn why I wrote a class/function in the first place by having to re-trace the logic through it because there are no comments! Kinda defeats some of the advantages of OO programming. Comments are no less important to the language you are using than it's syntax.

# inherited by class MySanity which extends class LifeSpan
$timeCommenting = $timeDebugging/2;

Thu Dec 01, 12:00:00 AM GMT+2  
Blogger Matt said...

A QA point...

I seriously want to throttle my developers who don't comment their code. I have the opportunity to look at their code sometimes, and not being an experienced Delphi developer, I need occaisional direction as to where the code is going or what it's supposed to do. The comments come in handy when testing; I know what I'm supposed to be testing, and if commented correctly, what changed without resorting to a diff program. Very handy.

Thu Dec 01, 12:09:00 AM GMT+2  
Anonymous Anonymous said...

Comments are for your own good and yes, they are needed for others to understand what your code does. Comments should be written before any code is written. Think of it as an outline. First do this... Next do this... Last do this... Writing comments first will allow you to gather your thoughts and convey them clearly through code. Any one that does not believe that spending atleast some of your time to develop sound comments on the front end will save you loads of time on the backend simply has not worked on a large project. Just my 2 cents.
Everyone use comments...
-jmm

Thu Dec 01, 12:35:00 AM GMT+2  
Anonymous Anonymous said...

Oh man, I sooooo needed this article! I'm putting together the code standard for our department and the main reason for the standard is to get one developer to comment!

I sent this quote on to my fellow developers:

"Richard C Haven said...

Beginning coders comment nothing;
Novice coders comment the obvious;
Experienced coders comment the reason for the code;
Master coders comment the reason for the code not used"

It seems that there may actually be reasons for not commenting (e.g. language, IDE, 133+n355, etc.) and I'd be interested in encountering a situation where commenting didn't help.

I've been employed as a coder for a little while and for me trying to be 133+ has just lost its novelty. I'm not a compiler and the stress of deadlines and the frustration of absolutely retarded code takes all the fun out of being able to read code without comments. Yes, I could read your code, but I don't want to: I want to jump in your code, find out how to fix it, work with it, whatever, then "mark" my territory with a comment and run away, forgetting I ever had to touch your dirty code.

I'd like to add some reasons for commenting that I don't think have been mentioned:
- you can help others program better by telling them why you did what you did (there are always people more junior than you)
- you can make yourself laugh months and years down the road will silly/sarcastic/rude comments (work should be fun! Too bad it's so much work). Throw in some ficticious variable comments in the comment header and see if anyone notices (FurryWoodlandCreature for instance). Adding quotes is fun too. - when working on multiple projects and fixing bugs across projects it saves "task switching" time: the time it takes to "get out" of one project and "get in" another. I hate spending an hour refreshing my memory on what a coworker's complicated uncommented code does. For me, I like to know why the original developer did what they did so that I can glean business rules, gotchas and limitations from the code.
- Finally, some coders just suck. Therefor if I think someone's code sucks then someone else probably thinks the same of me. So if I'm longing for some comments from them (the crappy coders) then they (the better coders) might be wishing for some insight from me.

Thu Dec 01, 12:40:00 AM GMT+2  
Blogger Stephen said...

Two of the easiest to read chunks of code I've ever encountered were essentially uncommented. One, the 1980s BSD version of tar(1) was around 750 lines. Outside of the odd argv parsing, it was very straight forward.

The other was pretty complicated. It included network server code and supported asynchronous I/O to multiple simultaneous channels, in an era when that was a new thing.

My metric on ease of reading these codes was simply time. Reading was quicker because there was less to read.

If the code doesn't match the comments, chances are both are wrong.

All this said, this isn't the style I use. My style hasn't changed significantly since the mid 70s.

I disagree that the comments are not documentation. The entire source code is documentation, comments and all. About half the time, its all I get.

Its annoying to get block comments like:
# Name:
# Description:
# Change Log:

with nothing filled in. If they bothered to paste in the comment block, why didn't they bother to fill it in?

Thu Dec 01, 12:45:00 AM GMT+2  
Blogger evilmousse said...

learned discipline on ada? my college forced that too. florida tech in melbourne FL. where was your college?

Thu Dec 01, 12:46:00 AM GMT+2  
Anonymous Anonymous said...

comments are used to describe the code....

just make sure they describe what the code actually does, not what the code -should be doing-... :-)

Thu Dec 01, 01:17:00 AM GMT+2  
Anonymous Anonymous said...

Being primarily an OCaml coder (the link is there just in case you've never heard of the language, not as spam...), I find it extraordinarily helpful to read and comment the interfaces to modules before ever coding anything. It makes sure I've thought through my code before I start 'hacking away'.

Also, as it has been pointed out already, comments do not suffice for documentation, contrary to what JavaDoc, Doxygen, OCamlDoc and the rest would like to convince you. Design/Implementation docs and a manual are critical to any serious software.

Thu Dec 01, 01:26:00 AM GMT+2  
Anonymous Anonymous said...

An very competant and seasoned programming collegue *never* comments his code, the reason he gives is "it was hard to write, it should be hard to read". Strangely, his code is actually quite easy to understand...

Go figure.

Thu Dec 01, 01:33:00 AM GMT+2  
Blogger Patrick Meade said...

In my last job, I was forced by management (and later became the enforcer, when I became management) to overcomment the hell out of every single element in the source file. When I say "every single element", this includes every single closing brace, to indicate which construct it was intended to close.

Running a source analysis tool, the result often ran about 60% comments, 40% code. I look back on that job now, thinking two things:

1. Whoever invented syntax highlighting has a permanent spot in my "best friends for life" book. [This was the ONLY way to see through the clutter.]

2. How could top management have developed such an unhealthy neurotic obsession with commenting?

When the company offshored to India, the neurotic commenting standard plus software engineers for whom English was a 2nd or 3rd language really became a fiasco.

I agree that comments are a necessity, but the take away is this: Mae West was wrong; too much of a good thing is NOT that great.

Thu Dec 01, 03:15:00 AM GMT+2  
Anonymous Anonymous said...

Richard C Haven said...

Beginning coders comment nothing;
Novice coders comment the obvious;
Experienced coders comment the reason for the code;
Master coders comment the reason for the code not used

I have to say, this is one of the best summary I have ever read about how code is actually documented, and hereby downgrade myself to "Experienced Coder".

Thu Dec 01, 03:42:00 AM GMT+2  
Anonymous Anonymous said...

Good code should be self-documenting.

This phrase is so true, yet often misused by novinces to justify not commenting their bad/poor/aweful/terrible/noobish code.

Experienced coders comment the reason for the code;

Master coders comment the reason for the code not used


Comments should not be a walk thru of how the code works and execute, as it should be self-explanatory if WELL WRITTEN. If you comment like this, you need to maintain your comments like your code, which often is not done and pretty much useless and verbose.

This does not mean you don't comment. You still need to comment certain design/architecture decisions that are not immediatly clear, why certain things are not done in the usual accepted way etc.

Thu Dec 01, 05:36:00 AM GMT+2  
Anonymous Anonymous said...

Thanks for the thoughtful post on comments.

I guess I'm really old school. I can't fathom the amount of discussion in the world about whether or not to comment code. Its like a discussion about whether or not you should put your car keys in the same place each evening when you get home. In some sense it is up to you. Do it if you want, and skip it if you don't. BUT if you don't do it, chances are you're going to waste a lot of time looking for the keys -- you're human. If you share the car with others, even more so (problem goes like N^2 if you share w/ N people). If you drive a car for a living, and toss the keys randomly, your stealing from your company. Same for code. Isn't it obvious?

Now, the use of classes is less obvious to me. Again, I'm really old school.

PS: I kind of enjoy the pun of adding a comment to an entry about commenting.

Thu Dec 01, 05:58:00 AM GMT+2  
Anonymous Anonymous said...

I agree with the need to comment code.

What people haven't talked about is why so many people hate commenting.

When I was in school, and we had to comment all of the code that we turned in, I'd point to "Hello World" and ask what the hell I should comment.

Of course, when I was an entry level software developer and had to try to decipher a three year old script made on the fly (that was never intended to still be in use), I really wished for comments (even though it was pretty simple to the guy who made it).

The question is what level of complexity requires a comment?

Thu Dec 01, 06:22:00 AM GMT+2  
Anonymous Anonymous said...

Summary: Write comments on the WHY. Let the code explains the WHAT by itself.

Thu Dec 01, 07:04:00 AM GMT+2  
Anonymous Anonymous said...

Very good article...

Thu Dec 01, 08:28:00 AM GMT+2  
Anonymous Anonymous said...

Anywhere you have a class with the name "Manager" it should be a good indication you have an antipattern on your hands.

Thu Dec 01, 07:07:00 PM GMT+2  
Anonymous Anonymous said...

personally, I think it all comes down the the Single Responsibility Principle.

Comments are needed and most used when SRP is violated. The "how" the "what" and the "why" is all munged together, so its hard to read.

So before you write your comments, go back thru your code, and see if you can describe what each method does with a single verb & noun. if you can't, refactor until you can. Then ask if a comment is needed. Most of the time, you'll find a comment isn't needed. If you do, refactor again.

If you're worried about whether or not the code is doing its job, check your tests (JUnit, NUnit, xUnit, whatever), and make sure its doing what it is supposed to do! If it doesn't have a test, WRITE ONE!

If you're spending time writing comments before code, write the same thing in a test (NUnit, JUnit, etc). Then you can verify the code does exactly what it is supposed to.

Fri Dec 02, 01:39:00 AM GMT+2  
Anonymous Anonymous said...

I think things such as Javadoc are tedious at best... however essential if working in an IDE with several other dev's.

Ive been coding for over 10 years, and I comment as I code within the function, and then write a function descriptor when Ive finished the function.

Slightly off topic.. but function and variable naming is just as important as commenting

Fri Dec 02, 02:48:00 AM GMT+2  
Anonymous Anonymous said...

"The point to start writing comments is... when the code is ready to be presented for others."

Shouldn't that be "write the comments before you write the code?"

Sat Dec 03, 10:19:00 PM GMT+2  
Blogger dkrukovsky said...

So we got two extreme opinions here. One is that good code is self-documenting and don't need comments. Another extreme is to comment before coding.

What's best for you?

Mon Dec 05, 08:30:00 PM GMT+2  
Anonymous Anonymous said...

The reason you write comments is the same reason you should teach your craft at some point in your career--you cannot claim mastery unless you can explain it (and clearly) to another.

Fri Dec 09, 07:49:00 PM GMT+2  
Anonymous Anonymous said...

The biggest disadvantage of comments in code is that tools can't warn you when they become outdated and incorrect. Misleading comments suck.

I've been using a homebrew system for a while that addresses this issue by making version control software aware of comments. This allows me to gauge the age of a comment when I read it as well as scan later commits for anything that might break it. Check out a brief writeup on this system
here.

Tue Mar 21, 07:00:00 PM GMT+2  
Anonymous Anonymous said...

There is a load of cobblers written about what is a 'good' comment, and what is worthless.
ANY comment in code is a good comment. I couldn't care less if it is stating the obvious, I'm just pleased to see it. I'm just away from staring at 1400 lines of someone elses code. It's beatifully written, neat and indented correctly, long meaningful variable names, BUT no comments, and I haven't a clue what it is doing or why it is doing it.

It is next to worthless

Fri Jan 26, 04:50:00 PM GMT+2  
Anonymous Anonymous said...

As far as I'm concerned, comments are part of the code, since they give context to what is being done. Anything that helps reinforce the idea of the item adds to the reality of it. Be concise with your words and suddenly you have code which is easy to maintain. Cheers.

Fri Mar 23, 09:26:00 PM GMT+2  
Anonymous Tokk said...

I personally hate to waste a lot of time just only to understand a long piece of code that could be easily commented.
I often have to edit or work on long pieces of code, that should have commented to make extensions (and obviously bug fixing) more easier.

I think the point is that a lot of coders, when doing their job, don't think about who will work on that piece of work later, trying to add some features or improving it. Maybe just for matter of time... well, I usually comment all of my work and I do spend a lot of time doing that...

Get back working... :)
Hotel Parma

Sun Nov 01, 05:00:00 PM GMT+2  
Anonymous Anonymous said...

I think the opposite than the author... if you don't place comments right from the beginning, you'll probably loose the whole project structure.
I place comments right when I start.

Sun Nov 01, 05:09:00 PM GMT+2  
Anonymous Sesli sohbet said...

I comment before I write the code, the comment describing the contract for what I'm about to write. It's good to comment on preconditions and post conditions.

Within the code I find it good to comment on why some things are done the way they are, or if its complex refer the reader to some reference or design material. A block comment called "Calculate the determinate of the matrix" can be quite nice. Not had much need for that recently as more and more of the complex stuff is done in libraries nowadays.

A lot of code nowadays can be autocreated. If the generator were to pass comments from the source definition into what it creates then it would help with things like intellisense. Unfortunately the one I'm using at the moment doesn't.

Combine this with a tool that complains bitterly if something is missing a comment and you get problems - compiler output with hundreds of warnings that if you tried to fix, your work would be overwritten next time the code generator runs on next compile. All these warnings hide the really important "variable used when not initialised" that you really need to see.

Should you comment a method that implements an interface or and abstract method if the comment on the interface or abstract method's comment is enough?

Javadoc and Eclipse are quite sensible here. Eclipse generates a non-Javadoc comment, and Javadoc uses the interface's comment.

NDoc on the other hand insists on a comment on the implementation which is a real pain as keeping all those identical comments in sync is hard - and typing "Look at interface foo" is pointless.

Wed Nov 30, 07:07:00 PM EET


sebastian said...
Ehh... all of that sounds rather complicated and isn't what I've experienced.

Remember, comments are not documentation. Writing a few comments here and there or hundreds of them won't necessarily make your code more understandable.

As a rule of thumb, use comments to excuse or blame. If you're finding other reasons for needing comments, I'd say there's a good chance your documentation isn't sufficient or your code sucks and is too cryptic for another to grasp -- in which case comments probably shouldn't be your largest concern. thankss

Thu Dec 24, 06:54:00 PM GMT+2  
Blogger sharma said...

Nice blog i have an idea on a new set of articles on software development. What if I ask everyone on what the next killer web app will be, and start implementing it with publishing daily articles on how to actually write software from scratch.
eb5 visa

Fri Jan 27, 01:55:00 PM GMT+2  
Anonymous chat said...

wery nice thanks askin
Good thoughts on comments. As an embedded developer attempting at times to use open source stuff I would plead with the community to please comment your routines. In the embedded world a lot of times we don't have a POSIX environment or sometimes even an OS. Trying to adapt open source stuff becomes a challenge because we cannot just configure make... We have to re-write the code to adapt it to our environment. The greatist help here is comments on each of the routines (methods) so we can see the gazinta's and gosouta's what they do and what the routine does. I've given up on a number of interesting open source tools or libraries because they don't do this and I don't have the time to decode cryptic routine parameters and try to guess what the routine does and what the output might be.

Sun Jan 20, 02:47:00 AM GMT+2  
Blogger Ado said...

trchat
trsohbet
geveze sohbet
mynet sohbet
mynet chat
hasret sozler
aşk sözleri
anlamli sözler
sevgi sözler
gay sohbet
lezbiyen sohbet
sohbet
mobil sohbet

Mon May 16, 12:12:00 AM GMT+3  
Blogger mevsimorg said...

sohbet
sohbet odaları
mobil sohbet
chat
cinsel sohbet
chat odaları

Sat Aug 24, 01:55:00 AM GMT+3  
Blogger Credit Loan Solution said...


My name is Leah Brown, I'm a happy woman today? I told myself that any loan lender that could change my life and that of my family after having been scammed separately by these online loan lenders, I will refer to anyone who is looking for loan for them. It gave me and my family happiness, although at first I had a hard time trusting him because of my experiences with past loan lenders, I needed a loan of $300,000.00 to start my life everywhere as single mother with 2 children, I met this honest and God fearing online loan lender Gain Credit Loan who helped me with a $300,000.00 loan, working with a loan company Good reputation. If you are in need of a loan and you are 100% sure of paying the loan please contact (gaincreditloan1@gmail.com)

Tue Aug 27, 12:33:00 AM GMT+3  
Blogger Meraklı Adam said...

Bahisnow kaçak bahis sitesi sorun yaşatmayan kaçak iddaa siteleri arasında yer alır. Dileyen kişiler Bahisnow illegal bahis sitesine kaydolabilirler.

Bahisnow üyelik asla zor değildir. 1 dakika ayırmanız durumunda siz de sitenin üyesi olabilirsiniz.

Bahisnow giriş işlemi asla zor olarak görülmemeli, yeni giriş adresini size bildiren zaten biziz.

Tue Oct 01, 04:47:00 AM GMT+3  
Blogger Kalbin said...

Elexbet giriş adresini sitemizde bulabilirsiniz. Yeni üyelere özel yatırım bonus fırsatlarını kaçırmayın!
Melbet üyelik almak için ve giriş yapmak için güncel adresi sitemizde bulabilirsiniz!
Bonus fırsatı sağlayan bahis siteleri inceleyebilirsiniz!

Thu Oct 17, 10:16:00 PM GMT+3  
Blogger mevsimorg said...

en iyi sohbet sitesi
sohbet odaları
en iyi mobil sohbet sitesi
chat kanalımıza bekleriz
bir muhabbet odasıda sizin için derledik
keyifli cinsel sohbet bizde

Sun Oct 27, 03:24:00 AM GMT+3  
Blogger Tarzsohbet said...

Hemen her tür düşünceye uygun odalara sahip olan sohbet siteleri
nde sizde kendi düşüncenize uygun sohbet odaları
na rahatlıkla girebilmekte ve buralarda yeni yeni insanlarla tanışabilmektesiniz. Bu yazışmak istediğiniz kişilerle seviyeli sohbet
başlatabilir ve düzeyli bir arkadaşlık bile kurabilirsiniz. Tek yapmanız gereken siteye üye olmak ve sonrasında sohbet
e başlamak olmaktadır. Bu odalarda dilediğiniz kişilerle yazışabilir hatta dilerseniz görüşebilirsiniz. sohbet
esnasında hakaret veya daha farklı durumlar yaşandığında bu durumu anında site yönetimi ile paylaşarak sorunu halledebilme imkânına da sahip olmaktasınız.
Özellikle son zamanlarda yaygınlaşan mobil sohbet
siteleri sayesinde, artık bulunduğunuz her ortamdan sohbet
sitesine girebilmekte ve muhabbetinizi yarıda bırakmak zorunda kalmamaktasınız. Ayrıca bu sohbet siteleri
üzerinde sadece sohbet
etmekle kalmıyor, bu chat odaları
nda bulunan üniversite öğrencileri veya öğretmenler sayesinde birçok bilgiye de sahip olabiliyorsunuz. Aklınıza takılan soruları sorarak bu sorulara cevap alma imkânına sahip olmaktasınız.
Yaşadığınız yerde arkadaş bulamamaktan şikayetçi oluyorsanız, sohbet sitelerini kullanmanız aradığınız arkadaşa çok hızlı bir şekilde erişmenize yardımcı olur. Bu sayede sadece dakikalar içimde aradığınız bay veya bayan arkadaşı bulabilirsiniz. Bu sayede zamanınızı en iyi şekilde değerlendirme fırsatı oluşmuş olurken, bulunduğunuz yerde yalnız kalma gibi sıkıntılarda yaşamayacaksınız.
Güvenilir ve kaliteli bir sohbet ortamı yaratan sohbet sitelerigerekli üyelik işlemini tamamladıktan sonra kullanımınıza açılmış olacaktır. Bu adımdan sonra ister kendi şehriniz üzerinden, isterseniz de ülkenin her kesiminden insanla tanışma şansını yakalayabilirsiniz. İsteğinize uygun olmak üzere filtre seçeneklerini kullanabilir ve bunlar üzerinden size özel arkadaş bulma ihtimalini biraz daha artırabilirsiniz. Özetle sohbet sitelerizamanı daha renkli bir hale getirmek için doğru bir tercih olacaktır.

Birçok firma sahipleri de bu siteleri kullanmakta ve bu sitelerden denk geldikleri girişimci ruha sahip bay veya bayanlarla tanışarak bu kişilere firmalarında iş imkânı da sağlamaktadır. sohbet odalarıile hemen her istediğinize ulaşabilmekte ve hayata geçirebilmektesiniz. Gelişen teknolojinin belki de insanlara en büyük faydalarından bir tanesi de, sohbet odalarısayesinde insanları içinde bulundukları yalnızlıklarından kurtarmış olmasıdır. Sizde chat odalarısayesinde ruhunuzun yaşadığı yalnızlığa bir son verebilir ve hayatı kendiniz için daha anlamlı kılabilirsiniz.

Tue Nov 05, 08:39:00 AM GMT+2  
Blogger oktay said...

Gabile Mobil Sohbet Bilhassa yazılı mobil sohbet sistemi uygulandığından, Gabile mobil mobil sohbet odası kullanıcı, şahsi bilgilerini diğerleri ile paylaşma gibi sıkıntılar yaşamazlar. Kendisi beğenilerine uyan tek rumuz seçerek, saklılık olanağı içerisinde, ferah ve sevgi dolu tek mobil sohbet olanağı bulurlar.
Mobil telefon kullanan şahıslar yerine, istedikleri her yerden rahatlıkla gabile mobil sohbet sitesine erişmek mümkündür. Sizin yerine geliştirdiğimiz android tabanlı gabile mobil mobil sohbet uygulamamızı Gabile Mobil chat Google Play Store mağazasından fiyatsız şeklinde indirebilir ve rahatlıkla mobil sohbet odalarımıza sağlamak yapabilirsiniz.

Sat Nov 09, 02:52:00 PM GMT+2  
Blogger asa said...

Gabile Giris Sohbet Ayrı olarak müsabaka ve oyun kanallarımız yarışmaktan beğeni alan insanları konuk ediyor. Bu chat odalarında, verisini deneme etmek isteyen kullanıcılarımız birbirleriyle güzel tek rekabet içerisinde yarışmakta ve her ayın müsabaka birincisine mükafat verilmektedir. Bütün bunları ve henüz çoğunu bulacağınız gabile mobil chat odası sayfalarımız sizi bekliyor. Unutulmaz tek arkadaşlık ortamında, en güzel sohbetleri bulacağınız sitemizde sizlerden tek ricamız başka kullanıcılarla düzeyli tek Gabile Giris chat bağı kurarak, ortamımızın henüz da kalifiye duruma gelmesinde takviye olmanızdır.

Sat Nov 09, 04:01:00 PM GMT+2  
Blogger asa said...

Gabile Mobil itiraf edemeyeceğinizi düşündüğünüz şeyleri, karşınızdaki bireyi rahatsız etmemek şartıyla konuşabileceksiniz. itemizi ziyaret edin Normal gündelik sohbetten tut da Gabile sohbet odalari, dost bulma sohbetleri, iş hayatınızın stresini atmak yerine sohbet odalari edebileceğiniz çoğu sohbet odalari odası bulunmaktadır. Kişiler yalnızlığı sevmezler. Ve yalnız kalmak mecburiyetinde da değiller. Kimi zaman şahıslar sevdiklerini yanlarında bulamayabilirler. Gabile Mobil Ama bu tür hallerde dahi şahıslar yalnız kalmak halinde yaşam sürdürmek zorundasın değillerdir. Bundan sonra sohbet ücretsiz çağında yaşamaktayız ve sohbet ücretsiz bizlere birçok bölgede birçok basitlik sağlamaktadır.

Sun Nov 10, 12:25:00 AM GMT+2  
Blogger asa said...

Gay Sohbet Siteleri Bundan sonra en ehemmiyetli sosyal çevrelerden biri durumuna gelen mobil sohbet platformları insanların çoğu vakit diliminde farklı insanlarla mobil sohbet edebilmesine imkan tanıyor. Eskiye nispeten defa Gay Sohbet Siteleri henüz emin hale gelen ve henüz geniş insan kitlesine hitap eden mobil sohbet ortamları çoğu ön yargının da kırılmasını sağlamıştır.

Sat Nov 16, 10:40:00 PM GMT+2  
Blogger sohbetsec said...

Gabile Mobile Chat Dinleyebilirsiniz. sohbet Sitesine; Bilgisayar, Kapsül ve Mobil Cihazlar Üstünden Fiyatsız ve Üyeliksiz Olarak Kolaylıkla Bağlanabilirsiniz. sohbet Sitemize Bağlantı Sağlamak Yerine Yanlızca Tek Rumuz (Nick) Almanız Yeterlidir. Ayrı olarak Eksper Ekibimiz Doğrulusunda Itinayla Hazırlanan, Gabile Mobile Chat Kullanışlı ve Kolay Olan sohbet Mirc Scriptimizi de Fiyatsız Tek Şeklinde İndirerek, Henüz Basit Tek Bağlantı Sağlamış Olacaksınız.2017 bakımından sohbet Yaşamına Süratli tek Sağlamak Yapmış

Mon Nov 18, 11:41:00 AM GMT+2  
Blogger hasmet said...

Mobil Sohbet Odaları Duygu ve düşüncelerinizi farklı şahıslarla paylaşarak şahsınızı rahatlatabilirsiniz. Gerçekleştireceğiniz sohbetlerin güvenilir olması yerine saklılık ilkelerine ilgi ediyor ve hiçbir bulguyu paylaşmıyoruz. Hiçbir insan tek kalmak istemez. Zira insan bahsetmek mutluluğunu ve üzüntüsünü paylaşma gereksinimi duyar. Fakat kimi haller da sevdikleriniz ve dostlarınız yanınızda bulunmayabilir. Veyahut kimi sebepler ile uzak kalma vaziyeti Mobil Sohbet Odaları yaşanabilir.

Thu Nov 28, 08:34:00 PM GMT+2  
Blogger Kalbin said...

Elexbet güncel adresine giderek %100 casino fırsatından yararlanabilirsiniz! Sitemizde yeni giris linki bulunmaktadır!
Melbet bahis sitesi yeni kayıt olanlara özel tam %100 spor bonusu veriyor! Ayrıca haftalık oyunlardan da her ay iphone kazanma şansınız bulunuyor. Giris adresini sitemizden bakabilir ve güncel sisteme giderek üye olabilirsiniz!

Sun Dec 01, 12:03:00 AM GMT+2  
Anonymous geveze sohbet said...

sanal sohbetin en cok tercih edilen sohbet sitesi bizimmekan sohbet odaları

Mon Dec 09, 02:58:00 AM GMT+2  
Anonymous chat sohbet odaları said...

sohbet
chat sohbet
bedava sohbet
kaliteli sohbet

Tue Dec 24, 03:09:00 PM GMT+2  
Anonymous Anonymous said...

Sultanbet Giriş yapabilmek kolay. Sultanbet Giriş yaparak kazanmaya başlayabilirsiniz. Sultanbet Üyelik İçin Tek yapmanız gereken sultanbet sitesine giriş yapmanız

Wed Jan 08, 03:18:00 PM GMT+2  
Blogger Dinamobet said...

Dinamobet Kazandırmaya Devam Ediyor Dinamobet giriş adresi için dinamobet

Thu Jan 09, 01:20:00 PM GMT+2  
Blogger Dinamobet said...

VDCASİNO bahis sitesi üyeleribde kazandırmaya devam ediyor. vd casino giriş adresine ulaşmak çok kolay
vdcasino


Bahsegel 2013 yılından beri türk kullanıcılarına hizmet vermeye devam ediyor yüksek oranları ile isim yapmış olan bahsegel giriş adresi veya yeni giriş adresine ulaşmak çok kolay
bahsegel


Bahse Giren değil dinamobet ile giren kazanır. En güvenilir sitelerden olan bahis firması dinamobet giriş adresine ulaşabilirsiniz dinamobet tv ile maçları ücretsiz izleyebilirsiniz.
dinamobet






Türk kullanıcıların Yüksek Oranda Tercih ettiği bahis firması tipobet365 veya tipobet türkiye pazarında oldukça büyük bir kullanıcı kitlesine sahiptir Tipobet Giriş Adresi ve yeni giriş adresine ulaşabilirsiniz.
tipobet



Güvenilir bahis siteleri nasıl seçilir, Güvenilir bahis sitelerinde kaçak iddaa. Nasıl oynanır , En iyi Canlı iddaa siteleri ,Canlı casino oyunları
melbet


Marsbahis Giriş Adresine Ulaşmak Çok Kolay. Yüksek Oranları ve çeşitli bonus seçenekleri ile marsbahis kullanıcılarına kazandırmaya devam ediyor. Marsbahis tv adresi üzerindende canlı maç yayınlarınızı izleyebilirsiniz. Eski ismi ile marsbet olarak bilinen firmaya ulaşmanız çok kolay
marsbahis

Wed Jan 22, 05:34:00 PM GMT+2  
Blogger Dinamobet said...



Türk kullanıcıların Yüksek Oranda Tercih ettiği bahis firması tipobet365 veya tipobet türkiye pazarında oldukça büyük bir kullanıcı kitlesine sahiptir Tipobet Giriş Adresi ve yeni giriş adresine ulaşabilirsiniz.
tipobet365

Sat Jan 25, 12:53:00 PM GMT+2  
Anonymous Anonymous said...

vdcasino taklit edenlerde bugün

Thu Feb 06, 05:41:00 PM GMT+2  
Blogger Dinamobet said...

Perabet Bahis sitesi ülkemizde çok uzun yıllardır varolmayadevam etmektedir.
Güvenilirliğini kanıtlamış bir site olarak karşımıza çıkan perabet Bahis sitesinde ilginizi çekebilecek bir çok uygulama barınmaktadır, Bu güzel oyunlara ulaşabilmek için perabet kayıt ol kısmından perabet üye ol yaparak kaydınızı tamamlamalısınız. Sonrasında perabet giriş yapmanız yeterlidir, kazanmak için hersey hazır durumda.
perabet


Melbet bahis ofisine giriş yaparak para kazanabilirsiniz melbete üye olduğunuz zaman kazanma şansınız olduğunu unutmayın canlı olarak maç yayını yapan melbettv üzerinden maçları izleyerek bahis yapabilirsiniz. Türkiyede hemenüz yeni olan bahis sitesi büyümek ve ismini duyurmak adına reklam yayınları yapmaktadır.
<a href="https://ddinamobet.com/“>Melbet</a>

Fri Feb 07, 06:46:00 PM GMT+2  
Blogger Dinamobet said...

Sultanbet
Yeşil ve siyah tasarımıyla mükemmel bir atmosferi yansıtan Sultanbet, Continental Solutions Ltd Curacao Lisansı ile yetkilidir ve güvenli oyun temeliyle hizmet verir.
2016 yılında başladığı hizmetlerine 4 yıldır aralıksız olarak devam eden Sultanbet son derece yüksek hassasiyetli müşteri hizmetleri desteğine sahip olup finansal yönden oldukça güçlüdür.
Sutanbet Giriş
Sultanbet giriş linkiyle siteye ulaşıp üye olmanız durumunda yüksek bonuslar sizi bekliyor olacak. 1500 TL yatırım bonusu ve 555 TL spor bonusuna ek casino için 1600 TL bonus sizin olabilir.
Etkin yatırım yöntemleri ile eşsiz bir bahis keyfine tanık olmanız için yapmanız gereken tek şey Sultanbet’e giriş yapmak! Haydi hemen üye ol ve kazanmaya başla!
superbahis

Wed Feb 19, 04:28:00 PM GMT+2  
Blogger chouaih mohammed said...

i am browsing this website dailly and get nice facts from here all the time

Mon Feb 24, 06:33:00 PM GMT+2  
Blogger Dinamobet said...

Bahis severlerin en çok tercih ettiği sitelerden birisi tipobet365 bahis sitesidir kısaca tipobet olarak anılan bahis ofisi tipobet ile kazanmak çok kolaydır yüzlerce bahis seçeceği ile tipobet veya tipobet365 giriş yaparak kazanmaya başlayabilirsiniz. Tipobet tv ile canlı maç yayınlarınıda izleyebilirsiniz. Ayrıca Tipobet vip sistemi ile size özel bonuslar ve özel müşteri temsilcileri ilede kendinizi güvende hissedebilirsiniz hemen kayıt olarak üye girişinizi yapabilirsiniz.
tipobet

Vdcasino bahis sitesi canlı casino ve casino oyunları ile slot , poker gibi bahis oyunlarını oynatarak sektöre giriş yapmıştır. Vdcasino tam teşekkürlü bir casino oynatıcısı olmasının yanısıra canlı bahis sektörünede girmiştir vdcasino tv ile canlı maç yayınlarını izleyerek bahis yapabilirsiniz vdcasino girişi yapmak çok basittir güncel giriş adreslerini takip ederek vdcasino bonuslarındanda yararlanabilirsiniz.
vdcasino

Bahsegel Bahis Firması oldukça çeşitli bahis seçenekleri ile nam yapmıştır.
Bahsegel yüksek oranları ile türkiyede isim yapmış ve eski ve köklü bir bahis ofisidir. Bahsegel casino ,slot,poker,rulet gibi oyunların dışında canlı bahis veya tek maça bahis yapma gibi seçenekler sunmaktadır.
bahsede vip ve bahsegel tv gibi çeşitli olanaklara sahiptir.
bahsegel giriş yaptıktan sonra üye olabilirsiniz kayır olduktan sonrada bahis yapabilirsiniz.
bahsegel


Bahsegiren değil Dinamobet İle Giren Kazanır sloganı ile türkiyede yüksek sayıda kullanıcıya sahip olan dinamobet dürüst ve ilkeli yapısı sayesinde ismini bahis severlere ezberletmiş bir bahis ofisidir. Dinamobet tv , dinamobet vip gibi kullanıcı dostu yazılımlara sahip olan firma herzaman yeni üyeler beklemektedir.
dinamobet sitesine giriş yaptıktan sonra kayıt ol kısmından üye olabilirsiniz ve kazanmaya başlayabilirsiniz.
dinamobet


Eski ismi marsbet yeni ismi marsbahis olan firma yenilenen arayüzü ve kullanıcı dostu teması ile yeniden kullanıcılarına hizmet vermeye devam etmektedir.
Marsbahis giriş adresine erişmekte çok kolaydır. Hemen yenilenen ismi ve adresi ile marsbahis sitesine kayıt olun. Marbahis tv veya Marsbet tv ile donmadan canlı maç yayınlarını izlemenin keyfini sürün
sultanbet


Melbet büyük ve köklü bir rus bahis sitesidir, 2019 başında türkiyede hizmet vererek türk kullanıcılarınıda kabul etmeye başlamıştır. Melbet giriş yaptıktan sonra poker, slot, canlı casino, casino, basketbol, Melbet tv gibi birçok uygulama karşınıza çıkmaktadır ayrıca melbet üye ol kısmında tek tık ile üye olunma gibi basit bir üyelik sistemide mevcuttur. Melbet bahis sitesi çok kalay bir arayüze sahiptir ve çok çesitli bahis seçenekleri mevcuttur.
melbet

Tue Feb 25, 02:31:00 PM GMT+2  
Blogger Dinamobet said...

Şimdi Redfoxbet Bahis sitesine erişmek çok kolay ! hemen yenilenen tasarimi hizli arayüzü profesyonel çalişanlari ile redfoxbet giriş yaparak üye olun ve kazanmaya başlayin
redfoxbet

Wed Feb 26, 12:23:00 PM GMT+2  
Blogger sohbet said...

chat odası

chat odaları

Fri Feb 28, 10:34:00 AM GMT+2  
Blogger TACO said...

bexbet eski ancak sevilmeyen bir bahis sitesi. Daha iyilerini tavsiye ederiz.

yorkbet bahis sitesi ise sürekli sms gönderiyor ancak kaliteli bir site değil.

sultanbet giriş işlemi yapmak çok mantıklı olmayabilir. Bu siteyi önermediğimizi ifade etmeliyiz.

betticket giriş işlemi de tavsiye etmediğimiz işlemler arasında yer alıyor.

mrbahis eski bir pronet gamin altyapılı site olmasına rağmen isteneni bir türlü veremedi.

Sun Mar 08, 01:10:00 AM GMT+2  
Blogger Java Chat said...

thanks for good share and amazing post.. sohbet odaları

Sat Mar 14, 09:09:00 PM GMT+2  
Blogger SeoUzmani said...

perfects info thank you so much for this well-done written text.

http://www.taliptuncer.com
http://www.anasefim.com
https://temelektromekanik.com

Wed Apr 01, 07:44:00 PM GMT+3  
Blogger home said...

Awesome and interesting article. Great things you've always shared with us. Thanks. Just continue composing this kind of post. Read also – gta san andreas cheats ps2 and for more cheatsFree Thats really fabulous pose,
Just want to share about Hurray
Hurray is one of the leading IELTS/PTE Institute in Bangalore, providing Coaching both Online and classroom training to students who want to clear their exam in one go.
tubidy mp3tubidy video

Music is a type of workmanship that includes sorted out and perceptible sounds and quiet. It is regularly communicated as far as pitch (which incorporates song and agreement), beat (which incorporates rhythm and meter), and the nature of sound (which incorporates timbre, enunciation, elements, and surface).

Tue Apr 07, 05:55:00 PM GMT+3  
Blogger sohbet said...

kaliteli chat 

sohbet ortamı

Thu Apr 09, 10:34:00 PM GMT+3  
Blogger hasmet said...

Sohbet
Sohbet Odaları
Sohbet Siteleri
Chat Siteleri
Mobil Sohbet
Bedava Sohbet
Geveze Sohbet
Mynet Sohbet
Mobil Sohbet Siteleri
Mobil Chat
Chat Odaları
Parasız Sohbet Siteleri
Sohbet Sitesi
Chat
Kaliteli Sohbet
Seviyeli Sohbet

Wed Apr 22, 04:54:00 PM GMT+3  
Blogger By Beluga said...

https://portbetyeni.com bahis sitesine giriş yapabilirsiniz. Sitenin bir çok avantajı var ve sürekli olarak kampanyalar paylaşmaktadırlar.

Wed Apr 22, 08:03:00 PM GMT+3  
Anonymous sohbet said...

tesekkürler

Fri May 08, 02:53:00 PM GMT+3  
Anonymous sohbet said...

tesekkürler

Fri May 08, 02:54:00 PM GMT+3  
Blogger SeoUzmani said...

perfects info thank you so much for this well-done written text.
instagram takipçi hilesi
electrical contractor
ev yapımı saç maskeleri
Define Forumu
kayak alırken dikkat edilmesi gerekenler
seo danışmanlık hizmeti
seo

Sat May 09, 06:38:00 PM GMT+3  
Blogger sohbet said...

chat odaları

Mon May 25, 12:36:00 PM GMT+3  
Anonymous VanessaRiana said...

love your post.
Link Alternatif SBOBET Online

Thu May 28, 11:12:00 AM GMT+3  
Anonymous Sohbet said...

En güzel sohbet arkadaşlıkları için sizde https://www.sohbet.city/ adresimizi ziyaret ediniz.

Fri Jun 12, 11:25:00 PM GMT+3  
Blogger SSD said...

forbidden porn

Sat Jun 27, 01:43:00 AM GMT+3  
Blogger Can GÜLDÜR said...

En kaliteli sohbet sitesi

En kaliteli cinsel sohbet sitesi

En kaliteli gabile sohbet sitesi

En kaliteli sohbet odaları

En kaliteli mobil sohbet sitesi

Mon Aug 31, 01:33:00 PM GMT+3  
Blogger Chat Kanali said...

Türkiye üzerinde arkadaş arayanlar için online bir şekilde arkadaş bulabileceğiniz sohbet odalarını kullanmanızı sizlere öneririz. Özellikle sohbet konuları için sizde bu platformları kullanabilirsiniz.

En güzel sohbet odaları için sitelerimizi kullanmaya özen gösterin. Ücretsiz kaliteli ve seviyeli nezih bir chat ortamı sizler için.

Kaliteli bir sohbet sitesi : https://www.aksohbet.net/

Mobil sohbet için : https://www.askyeri.net/

Seviyeli bir arkadaşlık mekanı : https://www.sohbet.city/

Sun Sep 06, 12:23:00 AM GMT+3  
Blogger mert said...

YEni ve kaliteli Okey sitelerinde sizlerde güzel zamanlar geçirebilirsiniz.

Fri Sep 11, 03:48:00 AM GMT+3  
Blogger mert said...

üye olmadan sizlerde Canlı Okey Salonları ile güzel ve kaliteli zamanlar geçirebilirsiniz.

Fri Sep 18, 07:19:00 PM GMT+3  
Blogger mert said...

Canlı Okey Siteleri ile kullanıslı ve kaliteli bir oyun platformu

Fri Sep 18, 07:19:00 PM GMT+3  
Blogger mert said...

üye olmadan Sanal Okey sitelerine giriş yaparak güzel zamanlar geçirin.

Wed Sep 23, 09:28:00 PM GMT+3  
Blogger mert said...

Bedava Okey siteleri ile güzel zamanlar geçirin.

Fri Sep 25, 11:41:00 PM GMT+3  
Anonymous randiga naglar said...

Amazing post! I read again and again, and noted some tips bro.

Sat Oct 17, 10:12:00 PM GMT+3  
Blogger sami said...

bahisnow üyeliği zor değil burada

Tue Oct 20, 04:47:00 PM GMT+3  
Blogger Avşa said...

Avşa mavi koy ve otelleri için sitemizi ziyaret edip bilgi alabilirsiniz.

Thu Oct 22, 02:45:00 PM GMT+3  
Anonymous Anonymous said...

Son dönemin en çok tercih edilen bahis sitelerinden olan Bahsegel 2000 TL Hoş Geldin Bonusu veriyor. Siteye yeni üye olan herkes bu sitenin bonusundan faydalanabilir. Ülkemizde değil tüm dünyada hizmet veren siteye sadece beş dakika içerisinde üye olabilirsiniz. Verdiğimiz bağlantıya tıklayabilirsiniz.

Wed Nov 11, 11:49:00 PM GMT+2  
Blogger mert said...

Okey mekan salonumuzun dilerseniz kendisi bilgisayarınıza süratli ve basit şeklinde indire bilirsiniz. Okey oynamak yerine mobil kullanıcı da aynısı programlamayı indire bilir ve dilerseniz masa üstündeyken kendiliğinden şifrenizi adisyon ettikten ardından süratli sağlamak olarak kayıtlı olarak sizlere kalifiye olarak kalacaktır. Okey indirmeniz yerine herhangi bedava olarak bundan sonra Canlı Okey Oyna bilirsiniz. Sohbet ücretsiz kotanızın çok gitmeyecek şeklinde süratli ve basit tasarımlanmıştır. Okey oyunu oynamak dilerseniz facebook üstünden de oynaya bilirsiniz.

Thu Nov 19, 09:55:00 PM GMT+2  
Blogger mert said...

Turnuva ödüllerinde çeşitlilik göstererek armağanlar yollamaya devam ediyoruz! Daha oyun salonlarımızda oyun yapmadıysanız derhal oyun salonlarına sağlamak yapabilirsiniz. Sizi oynamaya çağrı ediyoruz. Okey Salonları Işlek okey sitesi yerine oyun odamıza dilerseniz Konuk girişi yapabilirsiniz. Dilerseniz de kendisi üyeliğiniz ile sağlamak yaparak puan kazanmaya başlaya bilirsiniz. Bu oyunu oynamayı bilmiyorsanız internet sitemizde oyunu sebep oynayabileceğinizi gösteren resimli ve videolu makalelere göz atabilirsiniz. Oyun da kaç taş var diye merak edenler yerine kısa tek yorumlama inşa etmek gerekirse. Işlek Okey Oyunu Odası Oyunda toplam 106 vardır. Bu taşlar 1-13 arası 4 gelenek renkten oluşmaktadır.

Mon Nov 23, 05:44:00 PM GMT+2  
Blogger mert said...

Sizi de tabletinizi alıp sitemizde okey oynamaya çağrı ediyoruz. Okeyegel.net ile tableti olan herkes okey oynayabilecek. Kahramanmaraş ilinin kıymetli insanlarına kalifiye olarak paylaştığımız Kahramanmaraş okey oyna sayfamızı bu gün bakımından sizlerin hizmetine açtık. Sanal Okey Bu yazımızda Kahramanmaraşlı ve Kahramanmaraş’ta yaşam sürdüren şahıslara kalifiye olarak paylaştığımız bu sayfayı tanıtacağız. Bu sayfa eşliğinde bütün Kahramanmaraşlı olan ve Kahramanmaraş’ta yaşam sürdüren kardeşlerimiz arzuladığı gibi okey oynayabilecek.

Thu Nov 26, 02:47:00 PM GMT+2  
Blogger oktay said...

Ilerleyen teknoloji eşliğinde hayatımıza giren akıllı telefonlar bir çok istikametten bizlere basitlikler sağlamıştır. Okey Oyna Sohbet ücretsiz üstünde zaman geçirirken en fazla seçenek ettiğimiz oyunlar arasında konumunu alan okey oyunu bundan sonra yeni kuşak okey sistemi vasıtası ile nerede olursanız olun farketmeksizin mobil okey opsiyonu ile basitçe oynanabilmektedir.

Sat Dec 05, 11:22:00 PM GMT+2  
Blogger Yetis Kombi said...

Bağcılar Kombi Servisi

Kış aylarında kombilerde görülen arızalar insanları olumsuz yönde etkilemektedir. Sıcak su ihtiyacınızı giderememe, peteklerin ısınmaması gibi olumsuz nedenlere sebep olan kombi arızalarını 2 sene garantili bir şekilde çözüme kavuşturan Yetiş Kombi Servisi siz değerli müşterilerimize kaliteli bir hizmet sunmaktadır.

Tue Dec 08, 03:31:00 PM GMT+2  
Blogger Beka Tesisat said...

SU KAÇAĞI TESPİTİ
Sorunun çözüme ulaştırılmaması daima ortam için çeşitli türden zarar etkenlerini harekete geçirir. Bundan dolayı kısa sürelerde bu durum fark edilir edilmez daima buna karşı etkin çözümler üretmek gereklidir. Dinleme cihazları profesyonel kapsamda sorunların çözümü noktasında çok iyi geri dönüşlerin alınmasına yardımcı olmaktadır. Dinleme cihazıyla su kaçağı tespiti çalışmalarını firmamız oldukça özenli ve profesyonel bir şekilde yapabilmektedir.

Thu Dec 10, 10:08:00 AM GMT+2  
Blogger oktay said...

Mynet okey oyunları oyna olanaklarına sitemizi ziyaret eden ve kullanan herkes sahip olabilir. Okey oyunlarını çevrimiçi ortamda oynamak bugünkü epey sık tek şeklinde daima seçenek edilmektedir. Okey Oyna Epey güzel şeklinde zaman geçirmek yerine en kalifiye oyunlardan bir tanesi olan okey, kendine has kaideleri ve oynanış tarzıyla oyun tutkunlarına çoğu yönden değişik tek tecrübe yaşatabilmektedir. Bu güzel oyunun çevrimiçi platformlara taşınması vasıtası ile okey oyununda deneyim kazanmak isteyen herkes bu talihi elde etme fırsatını yakalamıştır.

Thu Dec 10, 09:37:00 PM GMT+2  
Blogger sohbet mobil siteleri said...

Thank you, we wish you continued success on the subject.

Fri Dec 18, 12:57:00 AM GMT+2  
Anonymous Fashionbet said...

Günün her saati haber yapabileceğiniz Fashionbet bonus sitede lisans emniyeti ile para yatırabilir ve ücretsiz para çekebilirsiniz.

Fri Dec 18, 04:19:00 PM GMT+2  
Anonymous Fashionbet said...

Hem de yeni ve eski üyeler amacıyla yaşanan Fashionbet şikayet hediye kampanyaları ile daha çok oyun, daha çok kazanç fırsatları yakalayabilirsiniz.

Fri Dec 18, 04:40:00 PM GMT+2  
Anonymous Fashionbet said...


2017 seneninse Curaçao oyun lisansı sağlayıcısından alınan Fashionbet para yatırma lisanla heyet Spor, o günden bu yana güncel olarak üyelerine hizmet sağlıyor.

Fri Dec 18, 05:01:00 PM GMT+2  
Anonymous Fashionbet said...


Spor üzerinden spor ve Fashionbet üyelik ajans bağlantıları oynayabileceğiniz gibi, at yarışı, 3D slot oyunları gibi alternatifleri de ziyaret edebilme ihtimaline sahipsiniz.

Fri Dec 18, 05:17:00 PM GMT+2  
Anonymous Trendbet said...

Spor %100 İlk yatırım hediye: Trendbet giriş türk kullananlara 350 TL kadar hoşgeldin hediye olanağı sunmaktadır.

Fri Dec 18, 05:59:00 PM GMT+2  
Anonymous Trendbet said...

Bu hediyetan yararlanmanız amacıyla ise en az 100 TL ve Trendbet şikayet üzerinde yatırımınız bulunması lüzum etmektedir.

Fri Dec 18, 06:23:00 PM GMT+2  
Anonymous Trendbet said...

Kullanıcılar tarafından biçimlendirildiğinde ise Trendbet bonus hediye çevrim koşulunun diğer sitelere miktarla daha vaka ve anlaşılır bulunduğu göze çarpmaktadır.

Fri Dec 18, 06:59:00 PM GMT+2  
Anonymous Trendbet said...


Spor Hediye Çevrimi; İlk yatırım hediye Spor Trendbet kayıt bünyesinde tespit edilen “Spor bağlantıları” “Poker Lobisi” ve “Canlı Ajans” seksiyonlarından rastgele birisinde çevirmeniz yeterli olacaktır.

Fri Dec 18, 07:23:00 PM GMT+2  
Anonymous Trendbet said...

Çevrimini poker lobisinde tamamlamak isteyen Trendbet üyelik kullanıcılarımız ise 1 TL üzeri masalarda 1500 el oyunlara katılımı yeterli olacaktır.

Fri Dec 18, 07:42:00 PM GMT+2  
Anonymous Gorabet said...

Spor çevrimiçi oyun sitesi son derece vaka ve tüketimi vaka olan bir gorabet mobil programı ile kullanıcıların mobil üzerinden hesaplarınadır.

Sat Dec 19, 02:48:00 PM GMT+2  
Anonymous Gorabet said...


Rahat bir biçimde erişebilmelerine olanak sağlayarak, gorabet para yatırma ve para çekme gibi finansal prosedürlerinde bünyesinde içermektedir.

Sat Dec 19, 03:52:00 PM GMT+2  
Anonymous Gorabet said...


Online haber kullanıcılarının vazgeçilmezi olan gorabet giriş canlı haber seksiyonunu araştırdığımızda ise canlı haber seksiyonundadır.

Sat Dec 19, 04:20:00 PM GMT+2  
Anonymous Gorabet said...

Bilhassa futbol, basketbol ve tenis karşılaşmalarına diğer gorabet bonus sitelere miktarla çok daha çok maçın bulunduğu göze çarpmaktadır.

Sat Dec 19, 04:38:00 PM GMT+2  
Anonymous Betluxor said...


Yatırımların yükselmesi, meselesiz biçimde kazançların olması amacıyla betluxor giriş spor para çekme prosedürlerinin de yapılması sağlanıyor.

Sat Dec 19, 05:11:00 PM GMT+2  
Anonymous Betluxor Üyelik said...

Para çekme betluxor adresi prosedürünü nasıl yapacaksınız? İlk olarak Spor para çekme nasıl olur sorusunun cevabı amacıyla hesaplarınıza giriş yapın.

Sat Dec 19, 05:38:00 PM GMT+2  
Anonymous Betluxor Kayıt said...

Bu prosedürler amacıyla teşhis edilen betluxor para yatırma teknikleri kullanabilmeniz mümkün. Yöntemler amacıyla limitlere uyarak, anında yatırımların biçimlenmesini sağlayarak üstünlük elde edebilirsiniz.

Mon Dec 21, 09:21:00 AM GMT+2  
Anonymous Betluxor Bahis said...


Daha sonra para çekiminin sağlanması betluxor bonus amacıyla teşhis edilen tekniklerden birini biçimlendirin. Hem emniyetli hatta süratli, meselesiz bir hizmet sunuluyor olacak.

Mon Dec 21, 09:51:00 AM GMT+2  
Anonymous Bahiscin said...


Haber sitesinde yatırımlarınız bahiscin giriş ile kazandınız. Spor para çekme ile de kazançlarınızı hesaplarınıza aktarın.

Mon Dec 21, 10:44:00 AM GMT+2  
Anonymous Bahiscin Kayıt said...

Değerlendirmeniz durumunda doğrudan yatırımlardan bahiscin para yatırma kazandıklarınızı çekebilirsiniz. Anında para yatırma ve çekme prosedürleri işlemi onaylanacaktır.

Mon Dec 21, 02:55:00 PM GMT+2  
Anonymous Bahiscin Üyelik said...

Bakıldığında paranızın çekilmesi amacıyla yaşanan teknikler arasında bahiscin adresi banka havalesi vb. EcoPayz, AstroPay gibi ödeme tekniklerinin bulunduğu görülür.

Mon Dec 21, 03:25:00 PM GMT+2  
Anonymous istanbul bahis said...

istanbul bahis ücretsiz Promosyon çevrim koşulsuz olarak veriliyor. Dolayısıyla canlı bahis bürosuna yeni hesap açmış olan bahisçilere son derece özel bir jest yapmış oluyor.

Thu Dec 24, 01:55:00 PM GMT+2  
Anonymous istanbulbahis yeni said...

istanbul bahis alt yapı Okey, poker, casino ve diğer kumarhane gibi servislerde daha özel ve spor bahislerinden değişik olarak tasarım edilmiştir.

Thu Dec 24, 02:16:00 PM GMT+2  
Anonymous istanbul bahisadres said...


istanbul bahis Okey canlı bahis şirketi içerisinde kazandırma seviyesi en yüksek olan bahis seçeneklerinden bir tanesidir.

Thu Dec 24, 02:37:00 PM GMT+2  
Anonymous istanbul bahisnet said...

istanbul bahis bahis oyna servisinde değişik maçlarda yüksek miktarlı bahisler yapma olanağınız vardır.

Thu Dec 24, 03:03:00 PM GMT+2  
Anonymous istanbulbahis adresi said...

istanbul bahis 'de promosyondan faydalanmak amacıyla bahsetmiş bulunduğumuz servislerde en az 250 TL tutarında net kayıp bildiriminde bulunmanız gerekmektedir.

Thu Dec 24, 03:31:00 PM GMT+2  
Anonymous betluxorgiris said...


Betluxor 'da hemen bahis oynamak dilerseniz, üye olabilir ve bahis yapmaya başlayabilirsiniz.

Mon Dec 28, 11:49:00 AM GMT+2  
Anonymous betluxoradresi said...

Betluxor bahis sitesi, üyelerinin memnuniyetini dayanıklıca amacıyla yatırım prosedürlerinde en az limitlere olanak tanıyor.

Mon Dec 28, 12:47:00 PM GMT+2  
Anonymous betluxornet said...

Betluxor slot oyunları ne kadar nitelikli, çok yönlü ve ilgi çekici olsa da oyunların düşük olması bu keyfi bir anda aşağıya çekebiliyor.

Mon Dec 28, 01:22:00 PM GMT+2  
Anonymous FlashResim said...

Güncel sağlık makaleleri ve birbirinden ayrıntılı içerikleri ile flashresim insanların ilgisini çekmeye devam ediyor. Kadın, teknoloji ve finans alanlarında flashresim.com liderliğini koruyor.
https://flashresim.com/

Mon Dec 28, 03:35:00 PM GMT+2  
Anonymous Albibet said...

albibet giriş adresine erişmenin en iyi yolu bu sayfayı kaydetmektir ya da Albibet instagram takip etmektir.

Wed Dec 30, 02:06:00 PM GMT+2  
Anonymous Artemisbet said...

artemisbet giriş yeni meşru adresine erişmek amacıyla Telegram ve Instagram ‘daki bu sitesinin sosyal sayfalarına başvurabilirsiniz.

Wed Dec 30, 03:04:00 PM GMT+2  
Anonymous Arzbet said...

Genel olarak, arzbet giriş sitesinin promosyonlarını öğrenmek amacıyla ınstagram ve Telegram 'dan takip etmenizi öneririz.

Wed Dec 30, 03:36:00 PM GMT+2  
Anonymous Artemisbet said...

Esasında, Artemisbet birkaç dakikadan çok kapanmıyor ve bu sitenin yeni site giriş adresi çalışmaya devam ediyor.

Sat Jan 02, 01:20:00 PM GMT+2  
Anonymous Arzbet said...

Arzbet para çekme ‘de hiç ciddî bir mesele gözlemlemiştir. Ödemeleri meselesiz yaptığından fazlası kullanıcı bu siteyi tercih ediyordur.

Sat Jan 02, 02:01:00 PM GMT+2  
Anonymous Aspercasino said...

Aspercasino müşteri hizmetlerini en iyi şekilde ilerletmeye çalışıyor ve bu hususta çokta başarılı olmayı başarmıştır.

Sat Jan 02, 02:47:00 PM GMT+2  
Anonymous Astekbet said...

Ayrıca, Astekbet oyun alanında çok sayıda kullanıcı var ve küme oyun oyunları oynamak amacıyla uzun vakit beklemek mecburiyetinde değilsiniz.

Sat Jan 02, 03:32:00 PM GMT+2  
Blogger Eva Mike said...

Look my articles Natural Remedies for the Severe Allergic Reaction From Blistering nice your post, thank you so much :)

Wed Jan 27, 10:42:00 PM GMT+2  
Anonymous istanbulbahis said...

Müşteri hizmetlerine ulaşabilirsiniz, canlı destek istanbulbahis ile görüşebilirsiniz, elektronik posta gönderebilirsiniz, WhatsApp üzerinden görüşebilirsiniz. Alacağınız cevap açıktır.

Tue Mar 16, 09:37:00 AM GMT+2  
Blogger bet said...

Sorusu da adresin kaç gün geçerli olacağı gibi trendbet cevapsız sorular arasında bulunmaktadır. Ancak elinde hazırladığı adresi önceden duyurması gibi bir durum söz konusu değildir.

Tue Mar 16, 09:48:00 AM GMT+2  
Blogger bet said...

Güvenmemelisiniz, önce Spor sitesi hakkında kapatılma fashionbet kararının verilmesini beklemelisiniz. Daha sonra yeni giriş adresini araştırmanız gerekecektir.

Tue Mar 16, 10:24:00 AM GMT+2  
Blogger bet said...

Spor yeni adresi belirlenip, hizmetlerin verilmeye başlandığı maltbahis yazı içeriğinde defalarca sizlere anlatılmıştır. Şimdi farklı bir konu üzerine sizlere bilgi verelim.

Tue Mar 16, 10:47:00 AM GMT+2  
Blogger bet said...

Türkiye’de bir şahıs, Türkiye’de gerçek bir kişilik ya da Türkiye’de gorabet tüzel bir kişilik tarafından adres belirleme çalışması yapılmaz. Türkiye’de bulunan bir ortaklık yoktur.

Tue Mar 16, 11:41:00 AM GMT+2  
Blogger bet said...

Bilgi teknolojileri iletişim kurumu kararı ile kapatıldıktan sonra, yeni bir atlantisbahis adres daha belirlenmiştir. 2017 yılında futbol sektörüne ve 2017 yılında onun sektörüne giriş yapan Spor markası, geçen yıllar içerisinde Türkiye pazarına da kapılarını açmıştır.

Tue Mar 16, 12:22:00 PM GMT+2  
Blogger bet said...

Ancak sonsuza kadar kullanacağınız, değişmeyecek betgarden tek adres olarak düşünmemelisiniz. Elbette burada açıklanmış yeni giriş adresi hakkında da bir kapatılma kararı gelecektir.

Tue Mar 16, 12:32:00 PM GMT+2  
Blogger bet said...

Spor yeni adresinin değiştirdiği içerikler betcool konusunda araştırma yapmanıza, vakit kaybetmenize gerek bulunmamaktadır.

Tue Mar 16, 01:11:00 PM GMT+2  
Blogger bet said...

O adresi içinde kapatıldı ya da devre dışı kaldı zarbet ifadeler kullanılacaktır. Spor77 adresinden sonra da, geçmişte olduğu gibi gelecekte de, yeni giriş adresleri belirlenmeye devam edecektir.

Tue Mar 16, 02:48:00 PM GMT+2  
Blogger bet said...

Futbolleri inceleyebilirsiniz, canlı futbolleri bahiscin nceleyebilirsiniz. Oyun oyunlarına ya da canlı oyun oyunlarına bakabilirsiniz. Canlı oyun seçeneklerini inceleyebilirsiniz.

Tue Mar 16, 02:55:00 PM GMT+2  
Blogger bet said...

Üyelik işlemlerinin gerçekleştirilmesinin ardından maltbahis oynanabilmesi için öncelikli olarak siteye yatırım yapılması gerekmektedir.

Tue Mar 16, 03:46:00 PM GMT+2  
Blogger bet said...

Yatırım işlemlerinin ardından futbol severlerin geniş gorabet futbol arşivi üzerinden dilediği futbol seçeneği üzerinden futbol oynayabilmesi mümkündür.

Tue Mar 16, 04:07:00 PM GMT+2  
Blogger bet said...

Üyelik işlemleri esnasında site tüm futbol severlere site kurallarını onwin sunmaktadır. Site üzerinden futbol oynanırken nelere dikkat edilmesi gerektiği hakkında kullanım şartları alanı yer almaktadır.

Tue Mar 16, 04:22:00 PM GMT+2  
Blogger bet said...

Üyelik işlemleri esnasında futbol severlerin siteye sunmuş atlantisbahis oldukları çeşitli bilgiler bulunmaktadır. Bu bilgiler hakkında futbol severlerin akıllarında Spor üyelik bilgilerim güvende mi sorusu akıllarda yer almaktadır.

Tue Mar 16, 04:57:00 PM GMT+2  
Blogger bet said...

Ancak, kullanılan bir adres hakkında, bilgi teknolojileri iletişim betgarden kurumu tarafından erişim engelleme kararı verilmeden bir sonraki adresin piyasaya duyurulması gibi bir uygulama söz konusu değildir.

Wed Mar 17, 09:22:00 AM GMT+2  
Blogger bet said...

Elbette gereken altyapı hazırlıkları şirket tarafından tamamlanmıştır. Elbette betcool Türkiye piyasası için gerekli tedbirler alınmıştır. Bu yöndeki paylaşımların hiçbiri gerçekçi değildir, hatalı bilgi almanıza sebep olacaktır.

Wed Mar 17, 09:39:00 AM GMT+2  
Blogger bet said...

Spor üyelik sonrasında tüm üyelerine güvenli bir şekilde futbol vbetturkiye imkanı vermektedir. Yatırım işlemlerinin ardından futbol severlerin geniş futbol arşivi üzerinden dilediği futbol seçeneği üzerinden futbol oynayabilmesi mümkündür. ilgi almanıza sebep olacaktır.

Wed Mar 17, 10:38:00 AM GMT+2  
Blogger bet said...

Bu sekme üzerinden giriş yapılmasının ardından bahiscin kullanıcı adı ve şifre bilgilerinin belirlenmesi gerekmektedir. Futbol severlerin şifrelerini siteye iki defa girmesi gerekmektedir.

Wed Mar 17, 11:19:00 AM GMT+2  
Blogger bet said...

Üyelik esnasında futbol severlerin üyelik işlemlerini ne gorabet şekilde yapabileceği konusunda siteden yardım alabilmesi ise mümkündür. Bunun için Spor üyelik yardımı sitenin canlı destek uygulaması ile sunulmaktadır.

Wed Mar 17, 12:28:00 PM GMT+2  
Blogger bet said...

Spor üyelik işlemleri esnasında futbol severlerin onwin ne şekilde üyelik bilgilerini doldurması gerektiği hakkında bilgilendirme seçenekleri sunulmaktadır. Bu bilgilerin sunulmasının ardından üyelik gerçekleşmektedir.

Wed Mar 17, 01:07:00 PM GMT+2  
Blogger bet said...

Yeni adresi üzerinden alacağınız hizmet içeriğinde, atlantisbahis herhangi bir değişim yoktur. Adres yenilenmiştir ancak, futbol sağlayıcıları ve oyun sağlayıcıları aynıdır.

Wed Mar 17, 01:19:00 PM GMT+2  
Blogger bet said...

Bu sosyal medya hesaplarında yeni bir giriş adresi betgarden belirlendiğinde, anında yeni giriş adresinin yayınlandığı görülecektir.

Wed Mar 17, 01:49:00 PM GMT+2  
Blogger bet said...

Spor Twitter hesabından öğrenebilirsiniz, Spor betcool Facebook hesabından öğrenebilirsiniz, Spor Instagram hesabından öğrenebilirsiniz, Spor Telegram hesabından öğrenebilirsiniz.

Wed Mar 17, 02:22:00 PM GMT+2  
Blogger bet said...

Cep telefon numaralarına, kısa mesaj aracılığı ile trendbet yeni giriş adresi anında duyurulmaktadır. Fakat burada küçük bir detaydan bahsetmek gerekecektir.

Wed Mar 17, 02:55:00 PM GMT+2  
Blogger bet said...

Spor dahil olmak üzere, herhangi bir sitede böyle bir gorabet uygulama yoktur. Evet futbol karşılaşması başlar başlamaz, yaptığınız tahmin tutmuş olabilir. Bunda bir sıkıntı yoktur ancak, kazandığınız paranın hesaba geçebilmesi için, karşılaşma bitecektir.

Wed Mar 17, 03:03:00 PM GMT+2  
Blogger bet said...

Elbette Türkiye pazarına ilk giriş yaptığı andan itibaren, trendbet orijinal adresini kullanmıştır. Zaman içerisinde tespit edilmesi ile birlikte kapatılmış, kapatılması ile birlikte, yeni giriş adresleri peş peşe gelmeye başlamıştır.

Thu Mar 18, 09:34:00 AM GMT+2  
Blogger bet said...

Aynı hesabınızı kullanıp, siteyi açacaksınız Promosyonları onwin görebilirsiniz. Hiçbir şekilde, hiçbir içerikte güncelleme ya da değişim yapılmamıştır, yapılması gibi bir ihtimal bulunmamaktadır.

Thu Mar 18, 09:44:00 AM GMT+2  
Blogger bet said...

Bu bilgilerin girilmesinin ardından ikinci aşama içerisinde atlantisbahis futbol severlerin isim, soy isim, yaş, e-posta ve adres gibi bilgilerini siteye sunması gerekmektedir.

Thu Mar 18, 10:57:00 AM GMT+2  

Post a Comment

<< Home