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

Автор You_are_my_chemistry, 16 месяцев назад, По-английски

I use Sublime Text 4 for C++ coding. I prefer this because it's great and simple to code. Which IDE do you prefer and why?

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

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

I use Visual Studio Code because of the cool extensions that it has and also it's free :-)

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

notepad

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

Use VIM with plugins and receive +20 extra rating points every contest :)

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

    What do you mean by extra 20 points? Could you elaborate?

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

      Extra rating? Just kidding. But seriously, in my opinion full-featured IDE is useless for competitive programming. Lightweight editors with useful text editing features like vim, sublime, etc is the best choice

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

I have created my own one. It's a bunch of scripts designed to work in any terminal. I use VS code as a code editor because it's nice.

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

Try Neovim, and you will never come back

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

Neovim is pretty good, although I still don't know like 95% of its functionality

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

    how do you map keys to compile and run code in neovim

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

      I think you put it in keymaps.lua. At least that's what I did.

      -- build
      vim.cmd([[
          auto filetype cpp nnoremap <F8> :w <bar> !g++-12 -std=c++17 - -Wall -Wshadow -Wextra -fmax-errors=2 -D_GLIBCXX_DEBUG -DLOCAL -O3 % -o %:r<CR>
      ]])
      
      -- run
      vim.cmd([[
          auto filetype cpp nnoremap <F9> :vsplit <bar> term ./%:r<CR> 
      ]])
      
      
»
16 месяцев назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

I use CP Editor because it is specially designed for competitive programming.

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

GNU Emacs! It's free software (as in freedom), and also very customizable (I guess more than any other editor on the planet).

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

    Vim users entered the chat

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

    It is a good OS but a bad editor (not to mention impending Carpal Tunnel Syndrome).

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

      Other editors: I don't like this. — So what? Either use the editor or switch to something else.

      Emacs: I don't like this. — OK, just write a few lines of Emacs Lisp code to make it what you want. (If you hate the keybindings, install Vim keybindings with the Evil package.)

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

CP Editor. It can work perfectly with the extension competitive-companion. They can get all the samples of all problems with a simple click on the problem page. Also, the internal interface of this software is very convenient to use.

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

I use CLion by JetBrains. I love JetBrains IDE (PyCharm, IntelliJ Idea, CLion)

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

Cp editor — we can sumbit problem to codeforces from the editor itself.

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

Last time, I was planning to use** Visual Studio Code**, but now I'm using DEV C++, because my friend spoke " I use DEV C++ and if you will use you can learn C++ easy ".

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

I code on mobile and i use programize :)

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

CLion from jetbrains, it gives me a good themes "which I super like", also a good coding assistance, the most feature I like "don't know if you can find it in other IDEs" that it gives me the time that a code took to run, which leads to complexity optimization. It's up to you in the end, just enjoy your Cp journey & good luck!

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

sublime text 3 cuz sublime text 4 autocompletion system was so bad when I first tried it (not sure if they've updated it since).

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

    Do you have some problems with auto tab detection? In both 3 and 4 (checked recently) I have ridiculous behavior:

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

      Some code formats say that there should be a {} after for statement, whether it controls a single statement. I think this autocompletion system accept this specification by default.

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

I use Visual Studio Code, mainly because I like the extension "CPH".

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

I use Code::Blocks mostly, because it's simple and easy-to-use. Also I started using CodeLite recently because I failed to configure Code::Blocks on linux :)

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

I use c_lion because it's very helpful make suggestion for enhancement in my code showing me if I missed something like infinite loop or recursion calls specially when make a class I learn form it alot

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

i use Geany, there is a video where errichto shows how to install. it's very light, that's why i use it.

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

I use onlinegdb because its the best online compiler I found for java and I use my school computer to code cause I don’t have a computer.

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

I also like Sublime Text,because it can use easily and doesn't have much memory use.

Well,if you are Chinese and want to use sublime,I think you can read this.

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

I use vim. Here you can find my setup as well as reasons why I think it is nice.

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

I use Sublime Text 4 too, with the package called FastOlympicCoding. I wrote a small package to make the code editor interactive with Competitive Companion and my own app of CodeForces.

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

I prefer CP Editor to coding.CP Editor is beatiful and comfortable.

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

INTELIJ