Posts

Showing posts with the label IDE

Free Download Code::Blocks

Image
Code::Blocks is a free development environment for the C++ programming language. It supports 20 different compilers, including Microsoft Visual C++, C Tiny, Digital Mars, and Borland C ++. Plugins galore The program is fully configurable thanks to the numerous plugins and options . Features such as automatic formatting of code or even creating short games in the integrated development environment (IDE) can be accessed at any time by selecting the corresponding extension. Fast build process Code::Blocks gets rid of makefiles , making the build process much faster . If support for parallel compilation was added, the speed with which you can bake your binaries would be tremendous. Help is always at hand (in a PDF) What Code::Blocks offers is typical of any IDE worth its salt: tabs, line numbering, colored syntax, code auto completion, smart indentation, and so on. If you ever get stuck, just check out the PDF manual .

16 NetBeans Shortcut Keys for Code Editing

Image
Do you know that shortcuts help you accelerate your development productivity? Indeed, the more time you use keyboards, the higher efficiency you get. Therefore today I’m going to share with you the common shortcut keys which are designed for editing code in NetBeans IDE. NOTE: Standard shortcuts are not covered, such as Ctrl + Space (auto-complete), Ctrl + A (select all), Ctrl + Z (undo), and the like. Ctrl + E or Shift + Delete : deletes the current line. Ctrl + Delete: deletes the next word after the cursor. If it is a compound (i.e. using camel case like fileHandler), then only the first word is deleted. Ctrl + Backspace: deletes the previous word before the cursor. Alt + Shift + Up: Moves up the current line (or a selected block of code) by one line:   Alt + Shift + Down: Moves down the current line (or a selected block of code) by one line: Ctrl + Shift + Up: Copies and moves up the current line (or a selected block of code) by one line:   Ctrl + Shift ...