What's your favourite ide/editor?

Sgqvur

FullOfUltimateTruthsAndEt ernalPrinciples, i.e shi
Reaction score
62
1. Dev-C++ (line spacing is so small +1)
2. vim(I know the basics (I guess) but it's a lot of fun it =))
 

DrEvil

FCRI Associate!
Reaction score
111
Code::Blocks 8.02... ( my friends say 10.05 is much better... but... I'm good with this version xD )

I found that I could use CB better than when I tried Dev-C++ dunno why just that I prefer CB more :)
 

Darthfett

Aerospace/Cybersecurity Software Engineer
Reaction score
615
I'm still experimenting.

vim: Very complicated, but I think if I eventually get used to it, it may be useful.

eclipse: I love the auto-format and auto-import options. Auto-format is useful for reading others' code, as most other people use braces next-line (while I prefer same-line). I also like the auto-complete, as if I'm not 100% sure of a function's name or arguments, it shows it to me, without me having to look it up. However, it loads extremely slowly.

PSPad: I used to ONLY use this editor, as it has syntax highlighting for the variety of languages I write in (for classes, experimentation, projects, etc). I stopped using it just a bit ago, for no particular reason other than to try notepad++. It also had a feature to strip all trailing spaces, which I miss.

Notepad++: I'm currently experimenting with notepad++. I enjoy the fast opening, language-detecting syntax highlighting. I'm starting to miss the 'strip trailing spaces' feature from PSPad, as well as the backspace removing 4 spaces as a 'tab' (rather than just one space), as I prefer tabs over spaces.

Visual Studio: Currently being forced to use this for XNA C# development in a school thing I'm in. I'm liking some things in it, but it has terrible auto-formatting, compared to eclipse.
 

Vestras

Retired
Reaction score
249
Visual Studio: Currently being forced to use this for XNA C# development in a school thing I'm in. I'm liking some things in it, but it has terrible auto-formatting, compared to eclipse.

Why do you think the auto-formatting is horrible?

I also use vim btw.
 

GooS

Azrael
Reaction score
154
Visual Studio: Currently being forced to use this for XNA C# development in a school thing I'm in. I'm liking some things in it, but it has terrible auto-formatting, compared to eclipse.

Agreed, I liked eclipse when I used it for C++, im also currently being forced to use Visual Studio for C# assignments.

To continue on vestras question, I just can't get the auto-formatting to work as I want it there's always something wrong when i swap between settings, the most successful settings I made still left me with faulty indents (to my standards).

Otherwise I only use JavaScript and PHP and use Notepad++ for these, no need for anything fancier imo, But then again I've never finished a grand application in any of them, only modules and smaller applications.

If I ever were to create something larger, requires multitudes of classes etc. etc. I would probably be more comfortable with a proper IDE with a project manager.
 

Vestras

Retired
Reaction score
249
I don't find the VS code formatting bad. And if you don't like the style, you can customize everything in the settings.
 

Darthfett

Aerospace/Cybersecurity Software Engineer
Reaction score
615
I don't find the VS code formatting bad. And if you don't like the style, you can customize everything in the settings.

I've customized everything in the settings, and it still insists that certain things be 'next line' instead of same line, such as the names of extended classes ALWAYS going on the next line:

Code:
        public MovingGameObject(String texturePath, Vector2 position): base(texturePath, position)

// Always formats to the following, when I WANT the above, no matter what settings are

        public MovingGameObject(String texturePath, Vector2 position)
            : base(texturePath, position)

It also formats some longer functions so that nearly every argument is on a new line. Here's an example of 'formatted' text:

Code:
                spriteBatch.Draw(
                    this.texture,
                    this.position, 
                    null, 
                    this.tintColor, 
                    this.rotation, 
                    new Vector2(
                        texture.Width / 2,
                        texture.Height / 2
                        ), 
                    this.scale, 
                    SpriteEffects.None, 
                    this.zindex);

Yes, I have line wrapping turned off (or whatever it's called, haven't opened it recently).
 

Vestras

Retired
Reaction score
249
I've customized everything in the settings, and it still insists that certain things be 'next line' instead of same line, such as the names of extended classes ALWAYS going on the next line:

Code:
        public MovingGameObject(String texturePath, Vector2 position): base(texturePath, position)

// Always formats to the following, when I WANT the above, no matter what settings are

        public MovingGameObject(String texturePath, Vector2 position)
            : base(texturePath, position)

It also formats some longer functions so that nearly every argument is on a new line. Here's an example of 'formatted' text:

Code:
                spriteBatch.Draw(
                    this.texture,
                    this.position, 
                    null, 
                    this.tintColor, 
                    this.rotation, 
                    new Vector2(
                        texture.Width / 2,
                        texture.Height / 2
                        ), 
                    this.scale, 
                    SpriteEffects.None, 
                    this.zindex);

Yes, I have line wrapping turned off (or whatever it's called, haven't opened it recently).

I can see the point in the first one, although I personally prefer it being on a new line. There is probably some way to configure it though.
The second one I have never experienced, and I have quite some long expressions. Are you sure you didn't turn that one on yourself?

Oh, and general coding practices say you shouldn't use this. unless it is actually necessary ;)
 

Darthfett

Aerospace/Cybersecurity Software Engineer
Reaction score
615
I can see the point in the first one, although I personally prefer it being on a new line. There is probably some way to configure it though.
The second one I have never experienced, and I have quite some long expressions. Are you sure you didn't turn that one on yourself?

Oh, and general coding practices say you shouldn't use this. unless it is actually necessary ;)

General coding practices don't apply when you're coding along with about 6 other people who have never touched a programming language (other than classes) before. I hate seeing terrible looking code, and this is my way of quickly fixing files.

I've gone through all the settings, and cannot find a fix for the same-line option for the first one.
 

Samael88

Evil always finds a way
Reaction score
181
Dev-C++ is the one I use:thup: It has worked fine most of the time I have used it so I will be sticking with it for as long as possible.
I have tried Virtual Studio but it screwed up my computer completely, after I installed it it has been complaining about errors in some of my exe files on the computer even thought the games have been working fine before:thdown:
 

UndeadDragon

Super Moderator
Reaction score
447
Notepad++ for me for most languages, particularly web languages (HTML, JavaScript, PHP). I also use Eclipse for Java.

EDIT: I also quite like Visual Studio, for C# and C++.
 

tom_mai78101

The Helper Connoisseur / Ex-MineCraft Host
Staff member
Reaction score
1,710
Visual Studio 2005. Currently migrating to DirectX and OpenGL.

I have no problems with Visual Studio, and it's from there that I learned how to code in general coding practices.

Only hate how recent versions of Visual Studio lack the ability to debug local variables (Was reported to Microsoft, and they said they are going to add that hotfix in the next release of Visual Studio, which I guess it could be Visual Studio 2012). The only solution is to use VS2005.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Ghan Ghan:
    Still lurking
    +3
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?
  • The Helper The Helper:
    Happy Thursday!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though
  • Ghan Ghan:
    Heard Houston got hit pretty bad by storms last night. Hope all is well with TH.
  • The Helper The Helper:
    Power back on finally - all is good here no damage
    +2
  • V-SNES V-SNES:
    Happy Friday!
    +1
  • The Helper The Helper:
    New recipe is another summer dessert Berry and Peach Cheesecake - https://www.thehelper.net/threads/recipe-berry-and-peach-cheesecake.194169/

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top