![]() |
|
Who all actually codes here? - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Coding (https://sinister.ly/Forum-Coding--71) +--- Thread: Who all actually codes here? (/Thread-Who-all-actually-codes-here) |
RE: Who all actually codes here? - Blue - 04-09-2020 (04-09-2020, 11:59 AM)WoahBearOG Wrote:(04-09-2020, 03:18 AM)Blue Wrote:(04-09-2020, 02:51 AM)WoahBearOG Wrote: Something I’d love to try and get into but I don’t even know where to start🤕 I would recommend listening to mothered if this isn't something you couldn't see yourself doing 8+ hours a day, 5 days a week. Specially if you're gonna do it as a career. But If you're wanting to do Web Design, def get up with me I can point you in the right direction. RE: Who all actually codes here? - anonref - 05-08-2020 (04-07-2020, 01:36 AM)Blue Wrote: Just curious who actually codes here like as a full-time profession, even as a side hobby. I do front end stuff professionally (JavaScript, React, HTML, CSS). I'm learning back end stuff (Node.js / MongoDB) in order to become a full stack developer! RE: Who all actually codes here? - miso - 05-11-2020 (04-07-2020, 01:36 AM)Blue Wrote: Just curious who actually codes here like as a full-time profession, even as a side hobby.i've started doing cmd scripts, then vbs & hta apps, i basically has to learn html & css for my hta apps to look good, they were mainly small launchers. i've been coding in Visual Basic for around 2years now, i normally spend around 10-20hrs a week coding, but due to the current pandemic, i can easily spend 40hrs a week since its basically the only thing i can do of my day i've also started cracking apps with osu around a year ago, i just wanted to create a simple mod for it, thats where i've discovered dnSpy and C#. I'd really like to make coding my future job even though im really limited in terms of knowledge towards other languages (like, i basically only know C#, VB.NET & X++ as actual languages, i know the basics of java & python but i can't make a full app using those programming languages) RE: Who all actually codes here? - erd99 - 05-17-2020 Im a coder - i do it for a living, mostly in Javascript, PHP, but in my free time i also code in Python, Delphi (Pascal), C++, ASM, C# and Java. Also some other scripting languages that are nice to work in.. For Javascript i use VueJS and Angular, but for smaller projects i use Vanilla. I have coded alot of desktop applications, also app's for IOS and Android, and for Raspi 2/3. I work with Windows 10 as a dev machine, that runs on a Linux host, on the side i have OSX running .. I code since i was 8yrs (C64 basic), am now 34 :p RE: Who all actually codes here? - critikal17 - 05-22-2020 I'm so all over the board. I do my best to not even think about what the programming language is so that I can keep my focus on the algorithmic process I plan to use. In reality, every sequence of instructions can be recreated on practically every platform and with any language. It's just a matter of understanding the processes the computer has to go through to achieve your computational goal. That being said, I find it most easy to program in Python and JavaScript, as they are very forgiving syntactically. I also do a lot of C# and Java work. RE: Who all actually codes here? - crackingforum - 06-11-2020 I just started learning HTML5, the next step is CSS and then Javascript. Once i have these 3 , i will go for the php. Trying to make my career with the programming languages as the actual job isn't giving me any motivation anymore. RE: Who all actually codes here? - mothered - 06-11-2020 (06-11-2020, 10:58 AM)crackingforum Wrote: i will go for the php.As a starting point, have a look at my thread. The video tutorials are very easy to follow and comprehend. RE: Who all actually codes here? - crackingforum - 06-11-2020 Thankyou for the links. I will surely check them once i have learnt the first three. RE: Who all actually codes here? - Filament - 06-11-2020 (05-22-2020, 09:15 PM)critikal17 Wrote: I'm so all over the board. I do my best to not even think about what the programming language is so that I can keep my focus on the algorithmic process I plan to use. In reality, every sequence of instructions can be recreated on practically every platform and with any language. It's just a matter of understanding the processes the computer has to go through to achieve your computational goal. Haha, unfortunately you do have to keep in mind the programming language at least a little. The algorithm can definitely change depending on the language (if you're trying to follow best practices anyways). Most imperative programming doesn't quite carry over to declarative programming. Albeit they can definitely achieve the same goals, if you go into, for example, Scala, a purely functional programming language, with the mindset of imperative programming, you're going to have a bad time. Similarly tackling SQL, a declarative language, with having only learned imperative Java/Python. Different languages solve different problems better, which is why different languages and paradigms even exist. But I agree, if you're sharp algorithmically, you'll be able to tackle most problems no matter the language. RE: Who all actually codes here? - mothered - 06-12-2020 (06-11-2020, 06:22 PM)Filament Wrote:^(05-22-2020, 09:15 PM)critikal17 Wrote: I'm so all over the board. I do my best to not even think about what the programming language is so that I can keep my focus on the algorithmic process I plan to use. In reality, every sequence of instructions can be recreated on practically every platform and with any language. It's just a matter of understanding the processes the computer has to go through to achieve your computational goal. Very well said. |