How to take Projects? [closed] - projects

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
please tell me how to take projects of any kind such as C,C++,JAVA, Web-Development. Please tell me authentic sources. Can anyone help me in this regard.

I'm going for my first "reversal" badge here...
I'll go out on a limb and assume that you want to get work coding in C, C++, Java, etc.. You should find plenty of work on RentACoder http://www.rentacoder.com/RentACoder/DotNet/default.aspx. There you can find projects that are in your area of expertise, bid on them, get work, deliver results, and get paid.
You will need to improve your communication skills! I understand that English is not always everyone's first or favorite language. But to be in this business (and particularly freelance programming), you need to be very clear on what you are proposing to deliver. You need to find that perfect balance between customer delight and making lots of money. You can't do that with poor communication skills, no matter how good your programming skills are.
I wish you luck.

Related

SSRS Full Text Justification [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I've read dozens of threads about this subject and i know it is not possible to justify text in reporting services as in Word, Excel, Crystal Reports, etc. ..
I also know that it is unacceptable that in 2013 Microsoft has not put this option available, but I really have to solve this problem in one way or another ...
So, as I said, after reading dozens of threads on this subject, I concluded that my only option is to make a custom report item... but the problem is I cannot do it because it's to complex to me...
Is there anyone who has built a custom report item for this purpose and it's kind enough to share it?
Many thanks in advance!!
A bit of Googling shows that there are third-party products that can provide this additional functionality.
Aspose is one example: http://www.aspose.com/docs/display/pdfreportingservices/Justify+FullJustify+Text+Alignment

How to compare different programming languages? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Sorry, but I couldn't find any relevant questions on Stack Overflow. However, I found this info graphic.
https://www.udemy.com/blog/wp-content/uploads/2012/01/PROGRAMMING-LANGUAGE-3.png
So. I often hear that some languages are said to have higher perfomance or to be more productive. For example, in introduction to The Pragmatic Programmer's Guide Yukihiro Matsumoto calls his language "more powerful than Perl, and more object-oriented than Python". While it is obvious that representatives of different paradigms have their own pros and cons (C generally has higher perfomance while Python makes the process of development more simple), it's still unclear what are the criteria in comparison within the same paradigm and how the ties are broken.
Take a look at the Computer Language Benchmarks Game (aka Programming Language Shootout):
https://benchmarksgame-team.pages.debian.net/benchmarksgame/performance/mandelbrot.html

Bot vs Rest Based Calls - Media Wiki [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
What's the difference between a bot on MediaWiki vs using the Rest Based api to do the operations?
If by "bot" you mean screen-scraping, such "bots" are severely discouraged and we developers don't make any guarantee that screen-scraping will work reliably, i.e. HTML output can drastically change at any moment without any prior notice. On the other hand, MediaWiki's web API is designed with stability in mind - in addition to other benefits such as machine-readable output (ol' good JSON is much easier to parse than tag soup) and better performance (we don't spend server resources on sking rendering, you don't spend bandwidth on receiving it).

What's the fastest way to search through a MySQL database containing billions of records? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I've been looking for a very fast and efficient way to search a database of an enormous size without using anything other than PHP and Mysql. What would be some options I could use?
The exact same way you would do it if you had 100's of rows. That's what indexes are for.
The most you can do is pay attention to the design of the tables, indexing strategy, and throw enough hardware at the solution.
If there was a silver bullet that anyone could answer in a paragraph or two here that applied universally (since you didn't give any insight to your table structure), don't you think it would already be built into MySQL?
The good news is that you will probably find that for most searches MySQL will do the job just fine even on massive databases.

How dbms like Oracle, MySql and Sql Server manage "free space"? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
thish is a general question about the "big" database player.
I want to know how these DBMS manage deleted record. In particular: does they free space and re-utilize that free space ?
Hope not to be off topic.
Thank you!
In general, they mark a deleted record as deleted, and they keep track of how much free space is available (and where), and will reuse the storage eventually (for new or updated records), but not necessarily in a timely manner.