Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. coding for nothing but coding

coding for nothing but coding

Scheduled Pinned Locked Moved The Lounge
ai-codingtoolsquestion
43 Posts 22 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C CodeWraith

    Sometimes it's better not to get too lazy and use that stuff between the ears not only to keep them apart. :-)

    I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.

    H Offline
    H Offline
    honey the codewitch
    wrote on last edited by
    #20

    The reason for generation is not to save on thought. It's to save on bugs. Complex parsers like a C# parser for example, can be difficult even to test, much less develop. Being able to generate the tens of thousands of lines of code necessary to parse something like again, C#, from an input specification saves countless hours debugging and testing.

    Real programmers use butterflies

    1 Reply Last reply
    0
    • D Daniel Pfeffer

      honey the codewitch wrote:

      I've tried to simplify my project, and simplify describing that project but it's like trying to simplify Roslyn.

      That's what a good technical writer is for. Explain to them what the tool does, and let them write the final documentation. IMO, having access to such resources is one of the advantages of working for a large company.

      Freedom is the freedom to say that two plus two make four. If that is granted, all else follows. -- 6079 Smith W.

      H Offline
      H Offline
      honey the codewitch
      wrote on last edited by
      #21

      I should note that Microsoft's documentation for Roslyn is currently trash :~

      Real programmers use butterflies

      D 1 Reply Last reply
      0
      • H honey the codewitch

        I should note that Microsoft's documentation for Roslyn is currently trash :~

        Real programmers use butterflies

        D Offline
        D Offline
        Daniel Pfeffer
        wrote on last edited by
        #22

        They must have fired the technical writers along with the QA department. :) :sigh:

        Freedom is the freedom to say that two plus two make four. If that is granted, all else follows. -- 6079 Smith W.

        1 Reply Last reply
        0
        • H honey the codewitch

          Not to start DAW wars or anything but FL Studio lets you build dashes like that with no coding. Just sayin'

          Real programmers use butterflies

          R Offline
          R Offline
          Ron Anders
          wrote on last edited by
          #23

          What's a dashes?

          H 1 Reply Last reply
          0
          • R Ron Anders

            What's a dashes?

            H Offline
            H Offline
            honey the codewitch
            wrote on last edited by
            #24

            midi controller dashboards for instruments. Panels you can control or link to other controllers. They have different ones for different instruments. At least i think you and i are talking about the same thing, but since we each use different DAWs (and FL is a bit weird) we may be using different jargon i've never actually described one before. :-\

            Real programmers use butterflies

            R 1 Reply Last reply
            0
            • H honey the codewitch

              midi controller dashboards for instruments. Panels you can control or link to other controllers. They have different ones for different instruments. At least i think you and i are talking about the same thing, but since we each use different DAWs (and FL is a bit weird) we may be using different jargon i've never actually described one before. :-\

              Real programmers use butterflies

              R Offline
              R Offline
              Ron Anders
              wrote on last edited by
              #25

              Yeah. Sonar uses COM for it's control surface interface. Old code from the before times. :-D Works though.

              1 Reply Last reply
              0
              • H honey the codewitch

                MFW I devote a huge amount of effort to create a developer tool that is poorly understood and not really used despite being very useful for what they were designed to do. 😔 I've tried to simplify my project, and simplify describing that project but it's like trying to simplify Roslyn. There's just too much there to be able to make it simple. Oh well, I guess. I use it in my own code generation projects and it makes them heckin cool. :cool: Do you ever write non-trivial tools that you swear by, but only you will probably ever use?

                Real programmers use butterflies

                K Offline
                K Offline
                kmoorevs
                wrote on last edited by
                #26

                honey the codewitch wrote:

                Do you ever write non-trivial tools that you swear by, but only you will probably ever use?

                I have a dozen or more personal apps that increase productivity that I'd probably classify as trivial in the sense that they aren't terribly complicated...however I'd classify many as non-trivial regarding usage pattern and time saved/errors reduced. Hand-rolled apps I use often: 0: Password keeper 1: FTP client 2: Database connection getter/setter for main products 3: Encryption/Decryption tool 4: Database Object Modeler/Script Generator (one of my first) (pre .NET) - spits out either paste ready code or creates a script file that can be posted for a customer to 'pick up' and run by one of our distributed products. This one saves me the most time overall and I'm the only one that knows how to use it. 5: Database Upsize/Downsize/Copy/Offload/Backup/Restore/Prep utilities 6: Color Editor ('cause I just wanted something local, light-weight, lets me lock sliders, and gives me the color codes back in multiple formats) I also have the fortune of creating a number of features that are complicated enough that the end users usually don't even attempt to do it themselves...such as enabling field parsing on text-based imports with a position of 2F4, 2L4, 3M5:2, or 3E5:-. I even added an expression builder with examples and everything, but have yet (in over 5 years) seen an end user or colleague/trainer use without my help. :sigh: At least I'm indispensable! :laugh: Sorry for the rambling. My Covid-19 project (won bid in early March) went live 3 days ago and I'm in observation mode, watching the mutant managers end users test it. So far only one major error caught the first day, and a handful of user mistakes. (yes, I know I'm supposed to prevent user mistakes!) :) This tool was created by a tool.

                "Go forth into the source" - Neal Morse

                1 Reply Last reply
                0
                • H honey the codewitch

                  MFW I devote a huge amount of effort to create a developer tool that is poorly understood and not really used despite being very useful for what they were designed to do. 😔 I've tried to simplify my project, and simplify describing that project but it's like trying to simplify Roslyn. There's just too much there to be able to make it simple. Oh well, I guess. I use it in my own code generation projects and it makes them heckin cool. :cool: Do you ever write non-trivial tools that you swear by, but only you will probably ever use?

                  Real programmers use butterflies

                  M Offline
                  M Offline
                  Mycroft Holmes
                  wrote on last edited by
                  #27

                  Of course, I created an entire eco system for production of winforms applications, converted that to Silverlight and then to WPF. I inflicted that system on every company I worked for since the mid 90s, some may even still use it but I doubt it. The tools allowed me to produce LOB solutions astonishingly fast. I once did a "prototype" in WPF in 2 months that took a team of 10 outsourced developers over a year to duplicate as a web solution. The prototype performed better!

                  Never underestimate the power of human stupidity - RAH I'm old. I know stuff - JSOP

                  1 Reply Last reply
                  0
                  • H honey the codewitch

                    MFW I devote a huge amount of effort to create a developer tool that is poorly understood and not really used despite being very useful for what they were designed to do. 😔 I've tried to simplify my project, and simplify describing that project but it's like trying to simplify Roslyn. There's just too much there to be able to make it simple. Oh well, I guess. I use it in my own code generation projects and it makes them heckin cool. :cool: Do you ever write non-trivial tools that you swear by, but only you will probably ever use?

                    Real programmers use butterflies

                    S Offline
                    S Offline
                    Slow Eddie
                    wrote on last edited by
                    #28

                    "

                    Quote:

                    that is poorly understood and not really used despite being very useful for what they were designed to do. 😔 I've tried to simplify my project, and simplify describing that project but it's like trying to simplify Roslyn. There's just too much there to be able to make it simple.

                    There's your Problem. People can't use any tool that is poorly documented. Additionally, by the time someone would figure it out, and start using it, the OS, Language, framework, and libraries will have all changed....

                    Get the Zarking Zark out of here! - Zaphod BeebleBrox

                    H 1 Reply Last reply
                    0
                    • H honey the codewitch

                      MFW I devote a huge amount of effort to create a developer tool that is poorly understood and not really used despite being very useful for what they were designed to do. 😔 I've tried to simplify my project, and simplify describing that project but it's like trying to simplify Roslyn. There's just too much there to be able to make it simple. Oh well, I guess. I use it in my own code generation projects and it makes them heckin cool. :cool: Do you ever write non-trivial tools that you swear by, but only you will probably ever use?

                      Real programmers use butterflies

                      M Offline
                      M Offline
                      Marc Clifton
                      wrote on last edited by
                      #29

                      honey the codewitch wrote:

                      Do you ever write non-trivial tools that you swear by, but only you will probably ever use?

                      What's worse is when I write a non-trivial tool that I write with the idea that other people will use it and nobody but me does. :( An example is a tool I wrote to test credit card and ACH processing for the various processors we support, that lets you select between a direct API call or going through our back-end server, as well as using test and live accounts, test and live card numbers, etc. Well, as you say, it's useful to me.

                      Latest Articles:
                      Proxy class for TypeScript/Intellisense DOM manipulation

                      H 1 Reply Last reply
                      0
                      • M Marc Clifton

                        honey the codewitch wrote:

                        Do you ever write non-trivial tools that you swear by, but only you will probably ever use?

                        What's worse is when I write a non-trivial tool that I write with the idea that other people will use it and nobody but me does. :( An example is a tool I wrote to test credit card and ACH processing for the various processors we support, that lets you select between a direct API call or going through our back-end server, as well as using test and live accounts, test and live card numbers, etc. Well, as you say, it's useful to me.

                        Latest Articles:
                        Proxy class for TypeScript/Intellisense DOM manipulation

                        H Offline
                        H Offline
                        honey the codewitch
                        wrote on last edited by
                        #30

                        Yeah, i recently posted something here for others to use "Slang" and the "CodeDOM Go! Kit" - and the effort i put into it because of that was a lot more than if i had simply wrote it for myself. And it's got like 18 downloads in 2 days. :) Oh well. It makes my code generators that much more powerful than they'd have otherwise been. My Parsley project that used it for example, would let you embed code in its spec files, and it could render the generated code in C# or VB.NET even though you write your embedded code in a subset of C# It's no joke. But it's also hard to explain how to use it and the full scope of what it does. :~

                        Real programmers use butterflies

                        1 Reply Last reply
                        0
                        • S Slow Eddie

                          "

                          Quote:

                          that is poorly understood and not really used despite being very useful for what they were designed to do. 😔 I've tried to simplify my project, and simplify describing that project but it's like trying to simplify Roslyn. There's just too much there to be able to make it simple.

                          There's your Problem. People can't use any tool that is poorly documented. Additionally, by the time someone would figure it out, and start using it, the OS, Language, framework, and libraries will have all changed....

                          Get the Zarking Zark out of here! - Zaphod BeebleBrox

                          H Offline
                          H Offline
                          honey the codewitch
                          wrote on last edited by
                          #31

                          I've put more effort into documenting it than i have many of my other projects. Code generation tends to be complicated to begin with, and libraries to facilitate it are rarely simple. This is that. I've posted articles here explaining how to use it, and I know that at least one person is playing with it. We'll see. I've dumped all I've got in me into documenting this thing so far, and I'm burnt out on it for now.

                          Real programmers use butterflies

                          S 1 Reply Last reply
                          0
                          • H honey the codewitch

                            MFW I devote a huge amount of effort to create a developer tool that is poorly understood and not really used despite being very useful for what they were designed to do. 😔 I've tried to simplify my project, and simplify describing that project but it's like trying to simplify Roslyn. There's just too much there to be able to make it simple. Oh well, I guess. I use it in my own code generation projects and it makes them heckin cool. :cool: Do you ever write non-trivial tools that you swear by, but only you will probably ever use?

                            Real programmers use butterflies

                            B Offline
                            B Offline
                            Bruce Greene
                            wrote on last edited by
                            #32

                            Yup! I wrote an amazing little tool that reads in an Excel spreadsheet specification document and generates an entire buildable C# project from it. I spent a ton of time refining it... and only used it twice. The tool was great fun to develop though!

                            1 Reply Last reply
                            0
                            • W W Balboos GHB

                              If you check my bio page[^], third paragraph, it clarifies you post (maybe?).

                              Ravings en masse^

                              "The difference between genius and stupidity is that genius has its limits." - Albert Einstein

                              "If you are searching for perfection in others, then you seek disappointment. If you seek perfection in yourself, then you will find failure." - Balboos HaGadol Mar 2010

                              R Offline
                              R Offline
                              RandMan7557
                              wrote on last edited by
                              #33

                              I like the cheap hooker analogy!

                              1 Reply Last reply
                              0
                              • H honey the codewitch

                                MFW I devote a huge amount of effort to create a developer tool that is poorly understood and not really used despite being very useful for what they were designed to do. 😔 I've tried to simplify my project, and simplify describing that project but it's like trying to simplify Roslyn. There's just too much there to be able to make it simple. Oh well, I guess. I use it in my own code generation projects and it makes them heckin cool. :cool: Do you ever write non-trivial tools that you swear by, but only you will probably ever use?

                                Real programmers use butterflies

                                P Offline
                                P Offline
                                Philip LaBrosse
                                wrote on last edited by
                                #34

                                I have created a project that used a tool that nobody else ever used. But it only had a use in a specific area, and that was decoding a one of a kind telemetry for a one of a kind device. If you want to create a killer tool, you broaden the area of usefulness, like Wireshark. Then many will want to use your tool.

                                H 1 Reply Last reply
                                0
                                • P Philip LaBrosse

                                  I have created a project that used a tool that nobody else ever used. But it only had a use in a specific area, and that was decoding a one of a kind telemetry for a one of a kind device. If you want to create a killer tool, you broaden the area of usefulness, like Wireshark. Then many will want to use your tool.

                                  H Offline
                                  H Offline
                                  honey the codewitch
                                  wrote on last edited by
                                  #35

                                  Yeah part of it is the tool is necessarily niche, as it's intended for developers who are writing code generators. I've created some more popular tools and posted them here, but in one case, a 1st place CP winner, my winning tool was built using the technology provided by this tool - without which it wouldn't have been possible. :-D I'm just trying to give other people access to this tech, not so much try to make the most popular tool. It's a great tool for creating potentially popular tools is what I'd say. :laugh:

                                  Real programmers use butterflies

                                  P 1 Reply Last reply
                                  0
                                  • H honey the codewitch

                                    MFW I devote a huge amount of effort to create a developer tool that is poorly understood and not really used despite being very useful for what they were designed to do. 😔 I've tried to simplify my project, and simplify describing that project but it's like trying to simplify Roslyn. There's just too much there to be able to make it simple. Oh well, I guess. I use it in my own code generation projects and it makes them heckin cool. :cool: Do you ever write non-trivial tools that you swear by, but only you will probably ever use?

                                    Real programmers use butterflies

                                    G Offline
                                    G Offline
                                    GDFrank
                                    wrote on last edited by
                                    #36

                                    Oh yes ... coding for no useful purpose other than coding. I'm way retired and don't code for anyone else ... and have a large library of code I love to gander at and tweak and tweak to my heart's content ... ever delving into a better abstraction or simpler way to do it with less and more precise noun, verb, and property names (lots of refactoring) ... code that no one other than myself will ever see or care about. It's kind of like being one of those monks that spend days making incredibly intricate, delicate, and beautiful graphics with tiny sand particles and then upon a final reverent moment of acknowledging the impermanent nature of the universe, blow it away or scoop it all up into a bag and go home. Perhaps this is the truth of all code ... ultimately just bits in the wind. I say you can take the programmer out of the do loop, but you can't take the do loop out of the programmer. Programming: fierce and relentless abstraction audits achieved by creating or investigating large collections of mnemonics ... way more fun than crossword puzzles or video games.

                                    H 1 Reply Last reply
                                    0
                                    • H honey the codewitch

                                      I've put more effort into documenting it than i have many of my other projects. Code generation tends to be complicated to begin with, and libraries to facilitate it are rarely simple. This is that. I've posted articles here explaining how to use it, and I know that at least one person is playing with it. We'll see. I've dumped all I've got in me into documenting this thing so far, and I'm burnt out on it for now.

                                      Real programmers use butterflies

                                      S Offline
                                      S Offline
                                      Slow Eddie
                                      wrote on last edited by
                                      #37

                                      I feel your pain. Been there and didn't like it at all. To this day I struggle with documenting Support notes. Just trying to say Don't feel too bad about it. I looked at your stuff and it was way over my head. I am just an old VB6 programmer converting my code from VB6 to C# while teaching myself C# at the same time.

                                      "What?" - Arthur Dent

                                      1 Reply Last reply
                                      0
                                      • G GDFrank

                                        Oh yes ... coding for no useful purpose other than coding. I'm way retired and don't code for anyone else ... and have a large library of code I love to gander at and tweak and tweak to my heart's content ... ever delving into a better abstraction or simpler way to do it with less and more precise noun, verb, and property names (lots of refactoring) ... code that no one other than myself will ever see or care about. It's kind of like being one of those monks that spend days making incredibly intricate, delicate, and beautiful graphics with tiny sand particles and then upon a final reverent moment of acknowledging the impermanent nature of the universe, blow it away or scoop it all up into a bag and go home. Perhaps this is the truth of all code ... ultimately just bits in the wind. I say you can take the programmer out of the do loop, but you can't take the do loop out of the programmer. Programming: fierce and relentless abstraction audits achieved by creating or investigating large collections of mnemonics ... way more fun than crossword puzzles or video games.

                                        H Offline
                                        H Offline
                                        honey the codewitch
                                        wrote on last edited by
                                        #38

                                        ALL RELATABLE CONTENT!!! I don't code for money anymore, but it's still art and almost even spiritual for me sometimes. :) Maybe that's silly of me but I don't care.

                                        Real programmers use butterflies

                                        G 1 Reply Last reply
                                        0
                                        • H honey the codewitch

                                          ALL RELATABLE CONTENT!!! I don't code for money anymore, but it's still art and almost even spiritual for me sometimes. :) Maybe that's silly of me but I don't care.

                                          Real programmers use butterflies

                                          G Offline
                                          G Offline
                                          GDFrank
                                          wrote on last edited by
                                          #39

                                          And it keeps the synapses exercising ... staving off the inevitable. :-)

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups