Блог пользователя o0o0o

Автор o0o0o, 9 лет назад, По-английски

I personally feel good to use Codeblocks, its interface so good and feel free to code !

Can I customize the keyboard shortcuts, shortcut like Vim ?

  • Проголосовать: нравится
  • +20
  • Проголосовать: не нравится

»
9 лет назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

personally i love to use eclipse as is autocompletion is smarter than the one in codeblocks.

»
9 лет назад, # |
  Проголосовать: нравится +20 Проголосовать: не нравится

Visual Studio 13 because of autocompletion.

  • »
    »
    7 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    but visual studio doesn't have gnu g++ compiler right? That's why i stopped using VS 13.

    • »
      »
      »
      7 лет назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      Bad reason.

    • »
      »
      »
      7 лет назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      Actually, after this 21 months I've changed Windows to Ubuntu, and now I use CLion. If I want to specify some libs, then I compile project in console with all necessary keys.

      • »
        »
        »
        »
        4 года назад, # ^ |
          Проголосовать: нравится 0 Проголосовать: не нравится

        Isn't CLion just available for 1 month of free usage? or did you purchase the premium one?

        • »
          »
          »
          »
          »
          4 года назад, # ^ |
            Проголосовать: нравится 0 Проголосовать: не нравится

          it's free for students

        • »
          »
          »
          »
          »
          4 года назад, # ^ |
            Проголосовать: нравится +17 Проголосовать: не нравится

          years after I realized Sublime Text 3 to be the best choice :)

          • »
            »
            »
            »
            »
            »
            4 года назад, # ^ |
              Проголосовать: нравится 0 Проголосовать: не нравится

            How do you deal with infinite loop run? Which cause the output.txt file to increase the size infinitely as I could not stop that activity and hence I need to reboot my PC deliberately? Which is quite painful during the contest time?

            Also how do you deal with any runtime error caused? As many times it don't give the outputs nor show error and looks as the code ran but didn't gave the output.

            • »
              »
              »
              »
              »
              »
              »
              4 года назад, # ^ |
                Проголосовать: нравится 0 Проголосовать: не нравится

              you can find build snippets on github that runs ur output in cmd , that way the infinite loop just terminates after 3 sec . You can also just build ur cpp file and run it from cmd like me , its much more time efficient . All you have to do is set path in cmd to ur cpp file and use Alt+TAB to switch tabs

            • »
              »
              »
              »
              »
              »
              »
              4 года назад, # ^ |
                Проголосовать: нравится 0 Проголосовать: не нравится

              Just go in task manager and stop file execution from there.

              • »
                »
                »
                »
                »
                »
                »
                »
                4 года назад, # ^ |
                Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

                C++ Sublime Text Build for Windows
                https://pastebin.com/raw/6GRXn2yQ

                How to use it?

                1. Sublime => Tools => Build System => New Build System
                2. Copy paste this code into .sublime-build file
                3. Save it as C++_Terminal.sublime-build
                4. Select Sublime => Tools => Build System => C++_Terminal.sublime-build
                5. Open .cpp file write some code
                6. ctrl + b to run your code
»
9 лет назад, # |
  Проголосовать: нравится +11 Проголосовать: не нравится

I use dev C because it is trashy. that way i could show everybody my pure programmings skills :D

»
9 лет назад, # |
  Проголосовать: нравится +26 Проголосовать: не нравится

I mostly use Codeblocks 13.12. I love it. It autocompletes me. Sometimes I use Gedit or Sublime Text and I compile my sources using the linux terminal.

»
9 лет назад, # |
  Проголосовать: нравится +10 Проголосовать: не нравится

I use Far Manager because it is very smart and it is very easy to configure files with Far.

»
9 лет назад, # |
  Проголосовать: нравится +9 Проголосовать: не нравится

I like Sublime Text. I don't need much in an IDE, though — so I use it mostly because it looks good :D

  • »
    »
    9 лет назад, # ^ |
      Проголосовать: нравится +1 Проголосовать: не нравится

    do you use it compiling separately in terminal ?

    • »
      »
      »
      9 лет назад, # ^ |
        Проголосовать: нравится +2 Проголосовать: не нравится

      Yes.

    • »
      »
      »
      9 лет назад, # ^ |
        Проголосовать: нравится +8 Проголосовать: не нравится

      Or you can do Ctrl/Cmd + B if it's just one file. You can also set it up for using the makefiles.

      • »
        »
        »
        »
        9 лет назад, # ^ |
          Проголосовать: нравится +11 Проголосовать: не нравится

        Ctrl+B is pretty nice (vs compiling in terminal). You get automatic scrolling to any line that has a compiler error (which most IDEs have, but terminal doesn't), and you can customize flags so you don't have to remember what to type in the terminal all the time. I only use -O2 --std=c++11 -Wall -Wl,--stack but of course you can go as crazy as you want.

    • »
      »
      »
      7 лет назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      I use SublimeText with this —

      #ifndef ONLINE_JUDGE
           freopen("in", "r", stdin);
      #endif
      

      And also customized the Build Script to have output in the sublime shell :)

      No need to run in separate terminal. And also this works faster than any method, in code testing. Just press Ctrl + B and you have the output :)

      • »
        »
        »
        »
        6 лет назад, # ^ |
          Проголосовать: нравится 0 Проголосовать: не нравится

        Can you tell me how you have customized the Build Script? Also build is taking too long for c++11...

        • »
          »
          »
          »
          »
          4 года назад, # ^ |
            Проголосовать: нравится 0 Проголосовать: не нравится

          You can try this

          • »
            »
            »
            »
            »
            »
            4 года назад, # ^ |
              Проголосовать: нравится +1 Проголосовать: не нравится

            Hey I am also using sublime text 3 with this setup using a txt file as output but it's very slow like the best is 5 sec , the worst is 35 sec and avg might be 15 secs in displaying the ouput. Can you suggest how can i speed it up.

      • »
        »
        »
        »
        4 года назад, # ^ |
          Проголосовать: нравится 0 Проголосовать: не нравится

        Can You share your sublime text Build Script?!

      • »
        »
        »
        »
        4 года назад, # ^ |
          Проголосовать: нравится 0 Проголосовать: не нравится

        Can you share your custom Build Script ?

  • »
    »
    9 лет назад, # ^ |
      Проголосовать: нравится +1 Проголосовать: не нравится

    What OS do you use for programming?

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится -10 Проголосовать: не нравится

    auto keyword not working :(

»
9 лет назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

[deleted]

»
9 лет назад, # |
  Проголосовать: нравится -7 Проголосовать: не нравится

I use gedit :P

»
9 лет назад, # |
Rev. 2   Проголосовать: нравится +20 Проголосовать: не нравится

Hi

I use Emacs because it has some good property.

  • »
    »
    7 лет назад, # ^ |
      Проголосовать: нравится +16 Проголосовать: не нравится

    That's a good operating system, but I prefer Ubuntu. I use Sublime Text with terminal to compile, and I use < and > to redirect input and output from and to files.

»
9 лет назад, # |
  Проголосовать: нравится +23 Проголосовать: не нравится

Vim mostly.Because I don't know how to get out of it.

»
9 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I see sometime , somebody works in black interface like TC , which interface do u like ? (black, white or others )

»
9 лет назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

I use Turbo C++. Life's pretty rough.

»
9 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I use VIM everywhere because its very easy to use (for me) and has very little or no distractions. I have a few shortcuts set up for programming contests for compiling. There is a plugin called syntastic which is very useful for syntax checking and highlighting for C++.

»
9 лет назад, # |
Rev. 2   Проголосовать: нравится +1 Проголосовать: не нравится

Sublime Text.

I split the window in 4 parts — code (on the left), compilation output (just below the code), problem input and problem output (both on the right).

I find snippets are very helpful to automate common tasks, and it provided basic auto-complete that helps to avoid typos. It's easy to compile/execute from within the editor using CTRL + SHIFT + B, and jump to compilation errors from the compilation output.

One of the manual things that I haven't got around automating is when the process gets stuck and needs to be killed. Then I find the process id manually and kill it in the terminal.

»
9 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I use Codeblocks to write competitive programming codes, because it's used in most programming contests and it's fast, open-source. I use VS2013 and Eclipse to write my homework, because they're more convenient.

»
9 лет назад, # |
  Проголосовать: нравится +5 Проголосовать: не нравится

I use codeblocks because it's easy to use.

»
9 лет назад, # |
  Проголосовать: нравится +8 Проголосовать: не нравится

I think this topic is very well covered here.

»
9 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

My heart belongs to MS Visual Studio

»
9 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Intellij Idea. Most of people who use java use it.

»
9 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Screw you all, real men wrote codes with notepad + cmd!! who needs IDE anyway for competitive programming :p

»
9 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I use Ubuntu SDK... Because it's also very smart.

Ohhellotextest

»
9 лет назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

Personally, I use GNU Emacs.( http://xkcd.com/378/ :D)

The main reason is that it has easy commands for almost everything -- basic cursor movement,deleting/inserting text,buffer creation/movement/deletion etc. It also has quite a lot of modes(c++ mode, java mode, fundamental mode), which make it easy to use for all languages. It has also got a pretty easy to understand tutorial, which explains the basics.

»
9 лет назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

I have a terrible experience till now :D
I have almost tried every ide and every text editor and had used visual studio if i had an ide mood and far manager if i'm in an editor mood xD ( they are two powerful as they are :) ).
now i've switched to mac os since about 4 days and till now i can't determine which editor/ide i would use.

»
8 лет назад, # |
Rev. 2   Проголосовать: нравится +5 Проголосовать: не нравится

I use Vim in Terminal.

»
8 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I love to use Sublime text <3

»
8 лет назад, # |
  Проголосовать: нравится -7 Проголосовать: не нравится

I love write program in C# and VS 2013 IDE.

  • »
    »
    8 лет назад, # ^ |
    Rev. 3   Проголосовать: нравится +16 Проголосовать: не нравится

    Once I decided to use Visual Studio for a CF round so I started it a few minutes before the start of the contest and it was ready to use 15 minutes after the contest had already finished. Since then I have never tried to start it again.

    • »
      »
      »
      8 лет назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      It's absolutely unusual, unless in first run.

      Visual Studio is slow in first run. it take several minutes to load

»
7 лет назад, # |
  Проголосовать: нравится +21 Проголосовать: не нравится

Vim is the only option.

»
7 лет назад, # |
Rev. 2   Проголосовать: нравится +6 Проголосовать: не нравится

I use CLion on Arch Linux for easy compilation, nice autocomplete, a nice debugger, live templates, and its built-in static analysis.

Maybe I depend too much on tooling but who cares ¯\_(ツ)_/¯

»
7 лет назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

I program in Java. I really like IntelliJ. Its debugger is absolutely amazing! However, I normally use BlueJ, because I have a shit PC with horrible RAM and programs on IntelliJ take forever to compile.

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится +1 Проголосовать: не нравится

    Bro, ditch IntelliJ. It just sucks on low-end PCs. BlueJ is also crap. Try Eclipse. It is almost like IntelliJ but yeah, it's hell better than BlueJ and runs on my shit machine like an aeroplane.

»
7 лет назад, # |
  Проголосовать: нравится +5 Проголосовать: не нравится

I use notepad++ and g++(cygwin) to play contest.

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I use Sublime Text . I generally write codes in java . And if one has good control over his/her language the editor provides a pretty decent platform to compile , segregate input/output files in tabs and also decent styling.

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

IDEONE lol

»
7 лет назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

I Use Atom... it is cool enough :)

  • »
    »
    7 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    I have also used it, then I switched to sublime text 3. I think sublime is better. If visual assist was free, then I guess visual studio would be better.

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I use VS when my labtop being with me
when using others computers , i use cpp.sh or Codeforces tester.
or if the computer contain gcc then i use any small editor

I like to use JetBrains too

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I use Programmers Notepad (http://www.pnotepad.org/) and I am quite happy with it. It is lightweight, has no distraction, can be downloaded as a portable version, can be easily configured for competitive programming Here is how to set it up to compile your C++ programs => http://algorithm4fun.blogspot.be/2015/08/compiling-c-programs-on-programmers.html

»
7 лет назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

TextWrangler, with Terminal (macOS Sierra). Sometimes IDLE, as I may switch from Python to C++ and vice versa.

When I am at school, I use gedit, with Terminal (Linux Debian). I wish they had SublimeText on their computers, though.

»
7 лет назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

I have used KDevelop since I switch to linux and I have some nostalgic relationship to that IDE :D And yes, I like its semantic analysis and the way of coloring the variables — each variable has a different color :D

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

For competitive programming I mostly use Codeblocks because it's easy to use and sometimes Vim. Eclipse for Java/Python.

»
7 лет назад, # |
  Проголосовать: нравится +54 Проголосовать: не нравится

Mircrosoft Word

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I love to use Code::blocks. It's easy to use and I love the colors the keywords in the editor.

»
7 лет назад, # |
  Проголосовать: нравится +5 Проголосовать: не нравится

VIM <3, I can not go out either :,'v

»
7 лет назад, # |
  Проголосовать: нравится +8 Проголосовать: не нравится

Geany, simple interface, and very lightweight. But lately I start shifting to Visual Studio Code, simple and clean interface, and the integrated terminal is very useful.

»
7 лет назад, # |
  Проголосовать: нравится +5 Проголосовать: не нравится

This blog is asking what IDE do you use not if you write in text editor and compile in terminal. Anyway mentioning that here or even doing that in your life won't get you laid.

»
7 лет назад, # |
Rev. 2   Проголосовать: нравится +3 Проголосовать: не нравится

I love IntelliJ IDEA Community Edition. I code using Java and I think it is the best IDE for Java Coders. The reasons are:

  • Classy interface
  • Option for git integration
  • Option for gist support(I need it as I do blogging)
  • CHelper extension support for automatic parsing of test cases & testing(OMG thing. Go to this link to learn more about this extension. I'm sure you will love it)
  • Topcoder plugin support(Another OMG feature)
»
7 лет назад, # |
Rev. 3   Проголосовать: нравится 0 Проголосовать: не нравится

I code in Java. I usually use BlueJ, but I have recently started using IntelliJ IDEA. I like it better. It feels better.

»
6 лет назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

Hi! I've been working on a lightweight ide for a while. The first release is here, keeping in mind what I really need during the contest. https://github.com/svr8/Desk Would be happy to hear a feedback.

  • »
    »
    6 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Is It For Java Only ? Or I can write on it C++ ?

    • »
      »
      »
      6 лет назад, # ^ |
      Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

      It supports C++(python and many more) syntax colors. In order to compile/execute, you need to know the CMD commands for your language and create a build file(keeping in mind that you are executing in cmd being at a location where application was installed).

      • »
        »
        »
        »
        6 лет назад, # ^ |
          Проголосовать: нравится 0 Проголосовать: не нравится

        Do you Have Video or Explanation ?

        I am not good in such things

        • »
          »
          »
          »
          »
          6 лет назад, # ^ |
            Проголосовать: нравится 0 Проголосовать: не нравится

          Alright, will work on it. Also, I'll roll out a new update soon. It will automatically detect Java, Python and C++ so you don't have to create build files for them.

          • »
            »
            »
            »
            »
            »
            6 лет назад, # ^ |
              Проголосовать: нравится 0 Проголосовать: не нравится

            Okay , I'm Waiting For the Update :)

            When you publish it Please tell me

»
6 лет назад, # |
  Проголосовать: нравится +17 Проголосовать: не нравится

Notepad. It makes me a pro

»
6 лет назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

Sublime Text 3. Light & cool.

»
6 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Sublime Text 3 with vintage(vim mode) on :D

»
6 лет назад, # |
  Проголосовать: нравится -10 Проголосовать: не нравится

Easy way to detect people with IQ < 90

»
6 лет назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

not ide but my favorite program to code is visual studio code :D

»
6 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I think, it's better to use editor.

»
6 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I use vim on cygwin terminal. Once you get used to the shortcuts it's hard to back to editors that force you to use a mouse. It's very customizable, and I have my own scripts to quickly compile/run/debug etc.

One small nice thing about cygwin/unix like environment is you can redirect input using "<" to read from a file, much more convenient than using freopen and having to comment it out when you submit.

»
6 лет назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

I am using Codeblocks. It's Fast and easy to use

»
5 лет назад, # |
  Проголосовать: нравится +5 Проголосовать: не нравится

i write down my code on paper and use ML to transform it into source code in computer

»
4 года назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

my favorite tools is sublime text and c++ mingw64 from codeblocks, sublime text is a cool and powerfull code editor. You can config color, snipet, template, build system, open terminal inside, separate windows view in 1 sublime text, think sublime text like linux, you can edit any thing you want. That make me code faster.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I usually use codeforces' custom invocation

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I use sublime in windows 10 but it takes much time for running the code. Can anyone help me. What i should do, like should i change my build system or anything else?

  • »
    »
    4 года назад, # ^ |
    Rev. 2   Проголосовать: нравится +1 Проголосовать: не нравится

    You can try CP Editor, it can run the code on test cases in one click/shortcut.

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    This is my only reason for switching to the more slower Visual Studio Code. My build times in Sublime Text are like 4-5 seconds, seems a lot of time for me :(

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I do not use IDEs. I use Atom and several plugins.

»
4 года назад, # |
  Проголосовать: нравится +20 Проголосовать: не нравится

I read it to google assistant, it writes

»
4 года назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

I use Vim. It is just like having the master control on the Omnitrix. It becomes one with the body and soul and frees us from the bondage of the mouse (if used with i3wm window tiler).

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Easy to use tool to download, run tests and problems, and commit solutions. CF-Tool greatly integrates with vim in a command line based environment.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Atom, without regret

»
4 года назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

Sublime text is classy and smooth :)

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Vscode as I have 16 gigs of ram on my laptop and I learn more than just competitive programming.

»
4 года назад, # |
Rev. 2   Проголосовать: нравится -9 Проголосовать: не нравится

cp editor

»
4 года назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

I tried codeblocks, sublime text, Clion and Xcode. After all the trial and error I found Xcode pretty good over all other IDEs.

»
4 года назад, # |
  Проголосовать: нравится +8 Проголосовать: не нравится

Vim is the best code editor ever invented. End of discussion.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Am I the only one who uses CLion(by JetBrains)? I personally love CLion because of its easy to use Interface and Dark mode.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I was using VS Code but recently I have switched to Sublime text3. VS code was taking too much time to compile. Sublime is working fine for me so far. If you have any idea about how to compile code faster on VS code, Please let me know.

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    compile and run in terminal. Don't compile a file every time you run it, only compile it when you made a change. precompile stdc++.h.

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      How does precompiling stdc++.h help? Isn't it all templated code, hence generated (and compiled and linked) only when used?

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I use different IDEs for different things. For CP I just use Sublime Text.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I use VSCode in training but I use Dev C++ in codeforces contests because it's fast and simple.

»
4 года назад, # |
  Проголосовать: нравится -8 Проголосовать: не нравится

Why nobody here uses VS Code like a nomral person ??

»
4 года назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

Google docs

»
2 года назад, # |
  Проголосовать: нравится +7 Проголосовать: не нравится

codeblocks