• 0

Current trends for web development?


Question

Sup neowin and pals! Until 10 months ago I thought I had a grasp of Web Technology. Knowing whiz terms like Responsive Web Design, HTML 5, CSS3, jQuery and CMS I thought I had knowledge of what was going on. That's when a friend told me to try out something different than PHP and Drupal, and learn ASP.NET MVC for an upcoming project.

 

OMG. I've felt that I've been living under a rock. This forced me to understand different concepts, frameworks and platforms: In which we include: Dependency Injection (Inversion of Control), MVC (Which got popular thanks to Ruby on Rails), RESTful apps, RESS (Responsive Web Design + Server Side), Node.js (NPM, grunt, gulp) Angular, Backbone, Knockout, github, bootstrap, Web API, React.js, Animate CSS. Cross Site Script Forgery, Debugging sessions in Web Browsers, Agile Web Development, truthful understanding of OOP (I finally understood why was PHP never considered a truly OOP programming language) and many many many much more things.

 

Now that Microsoft has forked Node.js and applied the Chakra engine underneath it, Node.js will get full traction in the upcoming months.

 

So... I think I'm living under a rock. What is worse is that they are concepts that originated YEARS AGO!

 

I'm also on the brim of killing myself for all these tools. I just know little of them, but I also feel the responsibility of knowing how to work with them. My friend told me to take it easy and work with what I need now.

 

 

So I'm asking what are the current trends of web development that I'm also missing that they're very important?

 

Thanks!


I'm also fearing of going into an Analysis-Paralysis for the fear of not doing it "by the standards".

Link to comment
https://www.neowin.net/forum/topic/1258918-current-trends-for-web-development/
Share on other sites

Recommended Posts

  • 0

I usually stick with HTML5/CSS3/Angular/jQuery.  However 99.9% of web development I do at work is ASP.NET

 

I'm still trying to learn jQuery. It hurts my brain. My current task is VB.Net. Using WPF instead of Microsoft's version of it.

 

I ordered a book, and I'm hoping to master it by the end of the year. I've got a lot of programs I want to code, just don't have a good teacher to help me.

  • 0

The project I work on is an ASP.NET MVC application.  Our new application will also be an MVC application as well.  It also has some fairly heavy jquery as well along with using bootstrap, SQL Server, Entity Framework and RavenDB.  It's become my favorite platform, especially over classic asp.net.  Like sbauer said, it varies from location to location.  Here around Memphis, it's a big .NET market here along with Java.  Those are probably the 2 biggest areas recruiters look for people in.  If you have mobile experience (iOS or Android) that would help too.  I hardly ever see any ruby/php/whatever's trendy right now projects in corporate environments though (maybe php, but the others, not so much).

  • 0

My current task is VB.Net. Using WPF instead of Microsoft's version of it.

 

So not web at all then?

 

 

I hardly ever see any ruby/php/whatever's trendy right now projects in corporate environments though (maybe php, but the others, not so much).

 

Agreed. I have just started seeing some NodeJs come in now but it's nowhere near ready for primetime - maybe just POC's.

 

It's difficult for any new platform to come in really. We have so many tools and libraries for Java/.Net that it doesn't make a lot of sense to move away.

  • 0

The project I work on is an ASP.NET MVC application.  Our new application will also be an MVC application as well.  It also has some fairly heavy jquery as well along with using bootstrap, SQL Server, Entity Framework and RavenDB.  It's become my favorite platform, especially over classic asp.net.  Like sbauer said, it varies from location to location.  Here around Memphis, it's a big .NET market here along with Java.  Those are probably the 2 biggest areas recruiters look for people in.  If you have mobile experience (iOS or Android) that would help too.  I hardly ever see any ruby/php/whatever's trendy right now projects in corporate environments though (maybe php, but the others, not so much).

We did a couple MVC Projects here.  Microsoft however has started phasing out MVC in favor of the Entity Framework which handles the entire model structure.  Controllers can then be written as code-behind and the views driven off that.  so while it's still "MVC" it's not an MVC Style project.

  • 0

I'm still trying to learn jQuery. It hurts my brain. My current task is VB.Net. Using WPF instead of Microsoft's version of it.

 

I ordered a book, and I'm hoping to master it by the end of the year. I've got a lot of programs I want to code, just don't have a good teacher to help me.

the way to think of jQuery is to think DOM manipulation.  It's great for making stuff that is already there.. change.  Like I find it is good for sticking html into an existing page, making a header bar correctly set the active page in it's list of pages (if using a master header), that sort of thing.  I am sure it has plenty more uses than that.. but that is what I use it for.

As much as people knock it as sloppy/slow/hard to learn I am really starting to like Angular as a replacement for 90% of what I do in jQuery and since it follows closer to a MVC style I find I can get a lot more power out of the sites than I do with straight jQuery.

  • 0

We did a couple MVC Projects here.  Microsoft however has started phasing out MVC in favor of the Entity Framework which handles the entire model structure.  Controllers can then be written as code-behind and the views driven off that.  so while it's still "MVC" it's not an MVC Style project.

Microsoft isn't phasing it out. The model part is just open to interpretation. Some look at it as a domain model, which EF would handle, while others think it means view models, which EF wouldn't handle. Quite frequently, it makes more sense to pass down view models than the actual entity models.

  • 0

the way to think of jQuery is to think DOM manipulation.  It's great for making stuff that is already there.. change.  Like I find it is good for sticking html into an existing page, making a header bar correctly set the active page in it's list of pages (if using a master header), that sort of thing.  I am sure it has plenty more uses than that.. but that is what I use it for.

As much as people knock it as sloppy/slow/hard to learn I am really starting to like Angular as a replacement for 90% of what I do in jQuery and since it follows closer to a MVC style I find I can get a lot more power out of the sites than I do with straight jQuery.

 

Agreed. I think the problem with jQuery is you can do so much with it. I have seen a lot of sites where jQuery is used and abused with tags created and moved and edited all over the place. You end up with a mess of event handlers with code all over the place which makes it very hard to maintain. I still use jQuery and it works very well, but people seem to be using for things it wasn't meant for - that's where something like Angular (or one of the million alternatives) should come in.

  • 0

We did a couple MVC Projects here.  Microsoft however has started phasing out MVC in favor of the Entity Framework which handles the entire model structure.  Controllers can then be written as code-behind and the views driven off that.  so while it's still "MVC" it's not an MVC Style project.

 

Microsoft isn't being phased it. The model part is just open to interpretation. Some look at it as a domain model, which EF would handle, while others think it means view models, which EF wouldn't handle. Quite frequently, it makes more sense to pass down view models than the actual entity models.

 

That's how I view it.  The "model" is being handled by EF now, but I still have another project that I use for ViewModels, which is usually what gets passed to the page (and also returned to the controller).  We use Telerik's Kendo UI controls, and if you have relational mappings in your model, things like the grid just do not like the model being passed in, so I have to use a ViewModel in order to get it to play nicely (this is another conversation though).  Overall, MVC is still "MVC", it's just that the "M" is handled by a different framework, but the concept is still the same overall.  Then there's MVVM (like what Silverlight used), which actually introduced me to the MVC like design pattern.  Overall it works very well though.  ASP.NET MVC has been really fun to work with (minus the growing pains of learning what keeps getting changed or added with each new version, like I "still" don't understand Areas yet).

  • 0

Having worked on a Node.js project it's fun but not stable enough for prime time, internal projects maybe but not public facing. Same with Docker and containerisation which seem to be very buzzy but not solid enough although love the idea of Heroku style deployments.

 

I know how you feel about .NET but I still prefer the classics. I'm a big fan on minimalist code that is well written and tidy that I can quickly understand and you control the interaction with.

 

Remember that learning anything is a gamble, my favourite framework is now no longer being supported but things like php will hopefully never go out of fashion.

  • 0

So not web at all then?

 

 
 

 

Agreed. I have just started seeing some NodeJs come in now but it's nowhere near ready for primetime - maybe just POC's.

 

It's difficult for any new platform to come in really. We have so many tools and libraries for Java/.Net that it doesn't make a lot of sense to move away.

 

No, I do, do web stuff. I just lack any motivational drive right now. I need a graphics artist to do a logo for me, but I don't know anyone. I can design the site, I just hate Illustrator for logos. Makes me want to stab someone consistently for hours.

 

I plan on combining SQL + PHP + VB .Net into a program for a friends Game Server he runs, and eventually building a C++ version for Linux/Windows.

I'm going to see if Raphael wants a auto-updater for his Dopamine project, and if he does, work towards that. Makes it easier for him to update things. :)

I have a desire to learn, but not having someone available to explain things, point you in the right direction, it's really hard. I need a C++/C# teacher.

the way to think of jQuery is to think DOM manipulation.  It's great for making stuff that is already there.. change.  Like I find it is good for sticking html into an existing page, making a header bar correctly set the active page in it's list of pages (if using a master header), that sort of thing.  I am sure it has plenty more uses than that.. but that is what I use it for.

As much as people knock it as sloppy/slow/hard to learn I am really starting to like Angular as a replacement for 90% of what I do in jQuery and since it follows closer to a MVC style I find I can get a lot more power out of the sites than I do with straight jQuery.

Yup. Totally lost at the DOM part.

  • 0

 

I have a desire to learn, but not having someone available to explain things, point you in the right direction, it's really hard. I need a C++/C# teacher.

 

Do yourself a favor and learn the C# syntax right now. You know VB.NET so you're literally, for the most part, just learning another syntax. 

 

If you're in this for the long haul, you need to work on the self teaching thing. That doesn't mean go out and read a book. You can read blogs, watch screencasts or conference videos. The problem is that you won't always have someone around to guide you. VB.NET to C# would be a nice opportunity for you to work on this.

  • 0

No, I do, do web stuff. I just lack any motivational drive right now. I need a graphics artist to do a logo for me, but I don't know anyone. I can design the site, I just hate Illustrator for logos. Makes me want to stab someone consistently for hours.

 

I plan on combining SQL + PHP + VB .Net into a program for a friends Game Server he runs, and eventually building a C++ version for Linux/Windows.

I'm going to see if Raphael wants a auto-updater for his Dopamine project, and if he does, work towards that. Makes it easier for him to update things. :)

I have a desire to learn, but not having someone available to explain things, point you in the right direction, it's really hard. I need a C++/C# teacher.

Yup. Totally lost at the DOM part.

The DOM is pretty much the page.  Your Div's,  your tags, whatever is rendered on the page itself.

  • 0

Hint: go mobile, design the next flappy bird and start milking the cash cow...

Hah. I'm actually accumulating ideas for a game I've been wanting to make since I was 9 years old. 17 years of thinking about it. The game was called Helbreath. I wanted to re-create it into a 3D Game. Have it PvP Oriented, hit all the ranges. Create content for the non-competitive players. Something that is still enjoyable but doesn't require too much time. But also create the hardcore raider style or pvp. I wanted to incorporate ideas from Conquer Online, World of Warcraft, EVE Online, Ragnarok Online, and Eudemons Online.

 

The DOM is pretty much the page.  Your Div's,  your tags, whatever is rendered on the page itself.

 

Ahhh. Funny, I've never heard the reference of "DOM" before. Whats it stand for?

Do yourself a favor and learn the C# syntax right now. You know VB.NET so you're literally, for the most part, just learning another syntax. 

 

If you're in this for the long haul, you need to work on the self teaching thing. That doesn't mean go out and read a book. You can read blogs, watch screencasts or conference videos. The problem is that you won't always have someone around to guide you. VB.NET to C# would be a nice opportunity for you to work on this.

 

I have classes available from Udemy, Cybrary, and a few other places. I just can't seem to remember things. I do have Short Term Memory Loss (STML), and that doesn't help at all. Got any resources you can send my way?

 

I just bought the WPF 4 Book from Amazon. I'm going to study through it, and then grab some C# books. I learn better when I have a physical copy in my hand. Sitting at a desk or staring at a screen drives me away from it. I sit on my arse for 8 hours a day, and staring at 3 - 5 monitors for work really puts a damper on things.

  • 0

Hah. I'm actually accumulating ideas for a game I've been wanting to make since I was 9 years old. 17 years of thinking about it. The game was called Helbreath. I wanted to re-create it into a 3D Game. Have it PvP Oriented, hit all the ranges. Create content for the non-competitive players. Something that is still enjoyable but doesn't require too much time. But also create the hardcore raider style or pvp. I wanted to incorporate ideas from Conquer Online, World of Warcraft, EVE Online, Ragnarok Online, and Eudemons Online.

 

 

Ahhh. Funny, I've never heard the reference of "DOM" before. Whats it stand for?

 

I have classes available from Udemy, Cybrary, and a few other places. I just can't seem to remember things. I do have Short Term Memory Loss (STML), and that doesn't help at all. Got any resources you can send my way?

 

I just bought the WPF 4 Book from Amazon. I'm going to study through it, and then grab some C# books. I learn better when I have a physical copy in my hand. Sitting at a desk or staring at a screen drives me away from it. I sit on my arse for 8 hours a day, and staring at 3 - 5 monitors for work really puts a damper on things.

 

Since you have short memory, all you do is study over and over until you remember them very well.  So you don't need to study again unless you need to if you forget again in near future.  Udemy is good.. You are able to study anytime so you can remember them again.

 

Even with the practices over and over so you will be able to code quick enough in short time whatever you have in your mind that help you speed up. If not, you can always go back to Udemy to study again or look up at your saved code notebook you wrote for references.

  • 0

Since you have short memory, all you do is study over and over until you remember them very well.  So you don't need to study again unless you need to if you forget again in near future.  Udemy is good.. You are able to study anytime so you can remember them again.

 

Even with the practices over and over so you will be able to code quick enough in short time whatever you have in your mind that help you speed up. If not, you can always go back to Udemy to study again or look up at your saved code notebook you wrote for references.

 

That's generally what I do for generic subjects like Math, Science, etc.. I find programming to be a fair bit harder to do, but I'll take it one step at a time. Raphael, Dopamine creator, is helping me with WPF and learning that end. Something that'll be nifty for when I learn another language!

  • 0

That's generally what I do for generic subjects like Math, Science, etc.. I find programming to be a fair bit harder to do, but I'll take it one step at a time. Raphael, Dopamine creator, is helping me with WPF and learning that end. Something that'll be nifty for when I learn another language!

Good luck.

  • 0

Hah. I'm actually accumulating ideas for a game I've been wanting to make since I was 9 years old. 17 years of thinking about it. The game was called Helbreath. I wanted to re-create it into a 3D Game. Have it PvP Oriented, hit all the ranges. Create content for the non-competitive players. Something that is still enjoyable but doesn't require too much time. But also create the hardcore raider style or pvp. I wanted to incorporate ideas from Conquer Online, World of Warcraft, EVE Online, Ragnarok Online, and Eudemons Online.

Helbreath was the ######.  I played the crap out of that game when I was like 12-15.  HB-Int I was in some sick guilds... hell I even remember some of the players (Wolfie).  I also used to run my own private server too.   I totally have had the same want as you for a good while now.  Less focus on the PVP but still it being a main part more on the idea of crafting and such.

  • 0

Helbreath was the ######.  I played the crap out of that game when I was like 12-15.  HB-Int I was in some sick guilds... hell I even remember some of the players (Wolfie).  I also used to run my own private server too.   I totally have had the same want as you for a good while now.  Less focus on the PVP but still it being a main part more on the idea of crafting and such.

 

Good to see another player still have the desire to see an exceptional game be made. My other thought for it was to have it educational as well. Take parts from History, Myths, Legends, and make them into Quest Lines, Bosses, Raids, etc.. The game world would be based off of Earth, and it's geography. Every time I come up with a bad ### idea, I write it down.

 

We've gotten a bit off topic though, haha.

  • 0
On 9/22/2016 at 8:32 AM, BarneyJ said:

Try to look here http://djangostars.com/blog/ . These guys've got a lot of interesting stuff, u might 've missed smth.
Good luck!)

Nice. This is an old post. What I'm doing right now is that I subscribed to lots of YouTube channels (O'Reilly Media, Google Chrome Developers, JSConf, Thoughtworks) and I'm visiting infoq.com, asp.net blog, and I feel that I'm less behind than before!

 

Thanks for sharing!.

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Why you need to take back control of your synced passwords and how to go about doing that by Paul Hill Credit: Pixabay Last month, when Google decided to introduce daily and weekly caps for Gemini, it reignited an anxiety of mine, that you can’t really depend on service providers to maintain features forever, and it got me looking into free software (as in freedom) in other areas too. One app I quickly came across was KeePassXC on desktop and KeePassDX on Android as an alternative to password manager lock-in within the Chrome or Firefox ecosystems. I personally like to switch around with browsers, and using either password manager is inconvenient, so something like KeePassXC was interesting to me. The main issue with it now is syncing; I was not sure how to do that. After a bit of research, I came across Syncthing, a tool I was vaguely familiar with but had never used because it seemed complicated. However, I was completely wrong, and honestly, I think everyone should use it if they use multiple devices. It essentially lets you share folders peer to peer across all of your devices, no cloud services that you don’t control necessary! And it was fairly simple to set up, if not a bit clunky. Since setting it up, I’ve also started using Syncthing to back up other apps too, so don’t think it’s limited to just saving password databases. You can use it for pretty much anything you use Dropbox or Google Drive for. Before continuing to talk about those apps a bit more, let’s walk back a bit and talk about browser sync. Ever since the late 2000s and early 2010s, really, since we have been using smartphones, browser sync has been a necessity of life. I don’t know about you, but I have hundreds of passwords saved. For the most part, they’re all unique, so I don’t remember them and rely on software to manage them for me. Until recently, I’ve relied on password managers in Chrome and Firefox, but what I always found annoying was that it can be hard to transfer them between browsers. Sure, on Windows it is simple enough, but on Linux, exporting bookmarks has been temperamental. It works OK nowadays, but not too long ago, Chrome required you to enable exporting passwords in chrome://flags. The situation is even worse on mobile; there is no exporting or importing of passwords of any kind. You literally have to do it on a desktop, which is incredibly annoying in our mobile-first world. Sync also lets us take out bookmarks, history, tabs, and autofill data easily. To enable sync, it’s just a matter of signing into the browser once, and it handles the rest. It’s nice and easy. Obviously, all this has some issues, including those I’ve outlined above about it being hard to transfer data between browsers, but also things such as account suspension, lost account passwords, and other lock-in mechanisms, such as passkeys, being tied to a specific browser. On a sidenote, I have just removed all of my passkeys because they can make it harder to move browsers. I think the biggest threat to your synced passwords, especially if doing this with Google, is having your account suspended. I don’t ever expect mine to be suspended, but you do hear horror stories on Reddit where people lose access to their Google accounts. Imagine if you have hundreds of passwords, then suddenly lose access to them because Google froze your account, what would you do? So yes, it can be nice to use these syncing services for their convenience, but they also have risks. You may have seen me going on about free software quite a bit in my editorials. It’s essentially a concept championed by the Free Software Foundation. It’s software under particular licenses that grant you four freedoms: run the program for any purpose (0), study and change the source code (1), redistribute copies to others (2), and the freedom to distribute modified copies to others (3). For example, if there is an app I use and one day it gets abandoned by the developer, I can keep running it or even clone the software and continue developing it. Look at the myriad of cool services Google has run over the years before killing them. You can’t take the source code for those because they are proprietary, for the most part. Both KeePassXC and Syncthing are free software, so I get the freedoms listed above. In my use case where I’m syncing a database full of my passwords, I also get proper ownership over my data, there is no losing access to the database due to a frozen account, I can access the code of the tools I’m using, and I can get support from real people online if I run into issues, rather than having to consult a vague help page from an opaque company. With the KeePassXC password manager, you create a .kdbx file, which is what will be synced between devices. KeePassXC has cross-platform apps and also has browser extensions so that the browser can fetch passwords from the database once it is unlocked. Meanwhile, Syncthing is a peer-to-peer file sync tool where you can select folders to sync between your devices. Just pop files in the folders you choose, and then they will be available across your other devices whenever they come online. Syncthing is resilient as it works over both LAN and the internet and only ever sends content between your devices, never to a third-party server somewhere else. By combining these two pieces of software, you can essentially replicate the browser sync functionality. I have had a weird, conflicting issue where a new file is appearing, but it doesn’t seem to be impacting my main password database, which is updating between devices just fine. If you want to get a setup similar to what I have, you will need to go here to download KeePassXC for your computer. Once you have that, you will need to download your passwords from your web browser to a CSV file. In Chrome, you can type chrome://password-manager/settings into the URL bar, and you should see an option to download your passwords under Export Passwords. This will give you the CSV file you need for importing into KeePassXC. If you use a different browser, just use a search engine and type “browser-name export passwords” and muddle along. In KeePassXC, you’ll want to press Import File from the home screen, select the CSV file, and create a new database from it. On one of the screens of the wizard, there will be a Title field with a drop-down selected to none. Change this to Title and continue. You’ll select a name for the database, the encryption level (the defaults are fine), and then you will pick a password. I would choose four unrelated words that are easy for you to remember, as you’ll be typing them fairly often to access your passwords. When you have all your passwords in your new database, you will want to set up the browser extension so that your browser can fetch passwords from KeePassXC. Rather than explain how to do that here, refer to KeePassXC’s guide on how to set it up properly. Once you’ve got that set up, you want to install KeePassDX on Android. You can grab it on the F-Droid store and the Google Play Store. For iPhone users, there are other .kdbx-supporting apps, but I haven’t tried any of them, so have a look around and use what suits you. Once you have that done, you will want to install Syncthing on your computer and find a third-party app for your mobile device. On Android, I use an app called BasicSync; there are also options for iOS, but again, I’ve not tried these. Once you’ve got SyncThing, you’ll want to set it up and connect all of your devices together and share a folder between your gadgets. PCWorld has a good tutorial on setting up a synchronized file between your devices using SyncThing. Once you’ve set it up, congrats, you’ll never have to touch that stuff again except for adding or removing devices. I’ll be honest, I didn’t particularly like setting up Syncthing. It didn’t take me a massive amount of time, but I think I had to check online because I found it a bit confusing. That said, I’ve had it running for several weeks now and never need to touch the Syncthing settings, so that’s very nice. I also mentioned a conflicting file. I’m not sure why this is appearing, but the main .kdbx file seems to be updating and syncing just fine. What’s nice is that both KeePassXC and Syncthing are free software, so they won’t just vanish one day; you can take the code and fork the project or use a range of alternative implementations that others have made. It’s also nice that it works over LAN, so even if your ISP is having problems, your passwords will still sync. One area where you will want to be a bit more careful with this setup is if you only have one device. I am OK because I have a computer and two phones, all synced up. If you just have one device, you will probably want to store a backup of your .kdbx file somewhere else. Obviously, you’ll also want to remember your password really well, too. If you get locked out, it's game over. Overall, if you want to take back control of your computing from big tech, taking control of your passwords is an important part of this. You don’t need to immediately clear out your browser’s password manager; try running KeePassXC and the password manager concurrently for a while to see if you run into any problems. If you do try this out, let us know some other creative ways to use Syncthing. I haven’t really come up with a solution about what to do with my bookmarks, for example.
    • If the price was a dollar, someone would complain "Why isn't it free?" If it was free, someone would complain they weren't being paid to play it.
    • That lens of history will burn if you hold it at the right angle... Warn users too late: Shame, Microsoft! That extremely minor update to an obscure Control Panel widget required 2 years of warning. Warn users too early: Shame, Microsoft! We've got better things to do. Pipeline and process be damned, we'll just always be disappointed, eh?
    • Microsoft Paint used to be my favorite Windows app as a kid, and it's still pretty good by Usama Jawad I have been using Windows since the early 2000s, when I was around 10 years old or so. I vaguely remember playing around with Windows 98 and Windows 2000, but that may have been on school PCs which had old operating systems installed. My main OS on the home PC, and the one I recall spending most time with, was Windows XP. At that time, I used the home PC to create Word and PowerPoint documents for school, but a lot of the time, I simply used it to play games. My dad would bring game discs which we would try and install on the PC, sometimes unsuccessfully, and sometimes, we would rely on flash games in the browser, like Bubble Trouble on Miniclip. However, the problem with the latter approach was the internet speed. On a good day, our dial-up internet would offer us speeds of 56 kbps, but on most days, it was closer to 33 kbps. This did not facilitate online gaming as I would often have to wait minutes for a game to load or "draw" on the screen, and trying to download pirated games wasn't simple either. I remember getting tired of waiting for online games to load and just downloading simulator games from the Big Fish Games website instead, only to be disappointed after finding out that I was just being given access to trial versions of the title, and I needed to fork out money to pay for the full version. All of this is to say that it wasn't very easy to find entertainment options on the home PC when I was a kid, due to a number of reasons, mostly outside of my control. This situation pushed me towards a rather unconventional ally: Microsoft Paint. Whenever the internet wasn't working as good as I expected, I would simply spin up Paint and draw complete rubbish on the canvas. Of course, that wasn't always the intention, but it usually happened when I messed up drawing a straight line or something, and then I would give up on that particular piece and simply draw a random collection of objects. Microsoft Paint was extremely accessible and easy to use. Even if you weren't an artist, you could quickly understand the tools at your disposal and how to leverage them on a canvas. The absolute breadth on offer ensured that each painting was truly unique, as you could utilize various combinations of tools like the pencil, paint, spray paint, and more to truly personalize your creation. Since I wasn't particularly good at drawing both on digital screen or a physical screen, I remember that my main style of art would be to insert a bunch of randomly intersecting lines and then fill them with random colors through the paint can. I have trying to replicate that art style in the latest version of Paint below, and as you can see, it's truly Pablo Picasso-esque. The human imagination truly knows no bounds Microsoft Paint kept me occupied for hours and was my best friend when video games on the home PC were inaccessible for one reason or the other. There was no academic or professional reason for which I would need to use Paint, but I still loved using it in my personal time, even if what I created wasn't worth being shown to anyone. It was simply fun. Fast-forward to today, and the situation is mostly the same. Now that I am almost 29 years old, and I still have no reason to use Microsoft Paint in a professional capacity. In fact, I don't even use it in a personal capacity, except to dabble with it from time to time, just to see if core functionalities are still intact. And I'm happy to say that I think Microsoft Paint still offers the same accessibility and inviting experience that it did to me a couple of decades ago, even though its UX has been refreshed and it's been integrated with Copilot features. Interestingly, things could have been a lot different, had Microsoft had its way. Microsoft Paint was marked for deprecation with the Windows 10 Fall Creators Update in 2017, and even began displaying a product retirement alert, urging customers to shift to Paint 3D instead. Fortunately, after consumer backlash, Microsoft reversed course on this decision, and Paint continues to be a native app inside Windows installations that can also be updated quite frequently through the Microsoft Store. Instead, Paint 3D ended up on the chopping block, which is for the better, I think. I have intermittently played around with Microsoft's refreshed Paint experience in the past few years, and I do think it has received worthwhile upgrades. the UI and the UX has been modernized while retaining core functionality, and the app is still fairly easy to use. It doesn't meet any of my use-cases, but I've never really had any use-cases ever, as described previously. Of course, the elephant in the room is the Copilot integration. Personally, I believe that this is one place where Copilot does make sense, environmental concerns aside. I know that a lot of creatives use AI to generate images, and while some may be using professional alternatives, Paint still offers a decent casual experience, with the power of Copilot. Of course, you do need to have a valid Microsoft 365 Copilot license and available credits to use it, but even if you don't, you still get the big Copilot button in the toolbar, unfortunately. All in all, I am glad that Microsoft Paint continues to be a native feature in Windows 11, and a piece of software that has evolved to meet modern needs without cutting off its own roots. It's just an iconic piece of Windows history that was an essential part of my childhood, and while I don't use it anymore, I'm just glad it is still there.
    • 2TB WD_Black SN7100 PCIe Gen4 NVMe SSD drops to its lowest price in over three months by Fiza Ali Amazon is currently offering the 2TB WD_Black SN7100 internal solid-state drive at its lowest price in over three months, so you may want to check it out, if you have been considering a storage upgrade, before the deal dries up (purchase link is toward the end of the article). Featuring a PCIe Gen 4.0 interface and M.2 2280 form factor, the SN7100 promises to deliver sequential read speeds of up to 7,250MB/s and sequential write speeds reaching 6,900MB/s, offering as much as a 35% improvement in performance compared with the previous generation. It also achieves random read speeds of 1,000,000 IOPS and random write speeds of 1,400,000 IOPS. The drive uses Western Digital’s TLC 3D NAND technology for reliable performance and is further supported by a five-year limited warranty. It also offers strong endurance, rated at up to 1,200TBW, making it suitable for demanding workloads such as gaming, content creation, and high-speed recording. Moreover, its DRAM-less architecture claims to improve power efficiency (the SSD relies on system memory for caching via HMB), while the WD_Black Dashboard software enables users to monitor drive health, install firmware updates, and activate Game Mode for potentially better performance. Finally, it operates within an operating temperature range of 0°C to 85°C, and can withstand storage temperatures from -40°C to 85°C. 2TB WD_Black SN7100 PCIe Gen4 NVMe SSD: $242.96 (Amazon US) Check this deal out if you want a 4TB option. Good to know This Amazon deal is U.S. specific, and not available in other regions unless specified. We only use first-party seller links (at the time of article publishing); ensure that you purchase from a first-party seller link only. Check out Today's Deals on Amazon | or our recent tech deals. Become a Prime member (for Students or SNAP) via Neowin Get Prime Access - Prime for half price (for qualifying Medicaid, EBT, SNAP) Subscribe to Prime Video, Audible Plus, Music Unlimited or Kindle Unlimited via Neowin As an Amazon Associate, we earn from qualifying purchases.
  • Recent Achievements

    • Week One Done
      Supreme Spray LV earned a badge
      Week One Done
    • One Month Later
      Genuinetonerink- Dubai earned a badge
      One Month Later
    • Week One Done
      Genuinetonerink- Dubai earned a badge
      Week One Done
    • One Year In
      hhgygy earned a badge
      One Year In
    • Week One Done
      AMV earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      514
    2. 2
      +Edouard
      163
    3. 3
      PsYcHoKiLLa
      87
    4. 4
      Steven P.
      74
    5. 5
      Michael Scrip
      73
  • Tell a friend

    Love Neowin? Tell a friend!