• 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

    • The Light of Life? We actually do glow till our Death, study finds by Sayan Sen Image by Rafael Rendon via Pexels A study by researchers at the University of Calgary has found that living organisms produce an extremely faint light known as ultraweak photon emission, and that this glow appears to drop significantly after death. The research was published in the Journal of Physical Chemistry in April 2025 and quickly drew widespread attention, leading to more than 200 news stories about the findings. Ultraweak photon emission (or UPE), sometimes called biophoton emission, refers to tiny amounts of light released by living cells as a result of normal biological activity. A photon is the basic particle of light, and researchers say every living system examined so far, including plants and animals, has been found to emit these photons. The glow is far too faint to be seen by the human eye. “I suppose it has a little to do with people being reminded of auras,” says Dr. Christoph Simon, PhD, one of the authors of the study and a professor in the Department of Physics and Astronomy in the Faculty of Science. “It is a fact that living beings glow. It’s a very weak glow, but it’s there and visible with very sensitive cameras.” According to the study, the light involved is extremely weak, ranging from 10 to 1,000 photons per square centimetre per second across a spectral range of 200 to 1,000 nanometres. For comparison, a nanometre is one-billionth of a metre and is commonly used to measure wavelengths of light. Detecting emissions at such low levels requires highly specialized equipment. To study the phenomenon, researchers used electron-multiplying charge-coupled device (EMCCD) and charge-coupled device (CCD) cameras. These imaging systems are designed to detect extremely small amounts of light, including individual photons, while minimizing background noise. The technology allowed researchers to capture signals that would otherwise be impossible to observe. The team worked with the Human Health Therapeutics Research Centre at the National Research Council of Canada (NRC) in Ottawa to examine photon emissions in mice. Researchers took two-hour exposure images of the animals before and after death and compared the results. “We saw that the level of light that they emit – this biophoton glow – is distinctly different between living and dead animals,” says Dr. Daniel Oblak, PhD, an associate professor in Physics and Astronomy and the corresponding author of the study. The images showed a clear decrease in photon emissions after death across the entire body of each mouse. According to the researchers, this provided direct evidence that living and dead tissue produce different levels of ultraweak photon emission. “It’s a very small amount and it’s, of course, very tricky to detect,” Oblak says. The study grew out of discussions between Simon, whose research interests include quantum biology, and Oblak, whose work focuses on detecting light for quantum communication experiments. Quantum biology is a field that explores whether processes described by quantum physics, which studies matter and energy at very small scales, may also play a role in living systems. “Since I work as a quantum physicist on light detection for quantum communication, I thought that experimentally we have a lot of the tools to be able to detect the light,” Oblak explains. The researchers also investigated UPE in plants and found that the light changed in response to stress. When plants were exposed to higher temperatures or physically injured, their photon emissions increased. Chemical treatments also affected the glow. Among the substances tested, the local anesthetic benzocaine produced the strongest emission response when applied to injured plant tissue. These findings suggest that ultraweak photon emission is closely linked to biochemical and metabolic activity inside living organisms. Metabolism refers to the chemical reactions that allow cells and organisms to stay alive and function. Because these reactions change when an organism experiences stress, injury or disease, researchers believe UPE may provide a way to monitor those changes. The researchers stress that the glow is a physical and biological phenomenon, not a metaphysical one. Oblak says more research is needed to understand exactly how the light is produced and what information it may reveal about the condition of living tissue. “We must understand what that is to figure out what’s happening,” he says. “If we can understand how that relates to certain influences on the body – stress, diseases – then that could be used as a diagnostic tool.” The researchers believe the technique could eventually help scientists study health and disease without invasive procedures. Because UPE can be measured without adding dyes, markers or labels, it may offer a way to monitor whether tissue is healthy, damaged or alive. In plants, it could help researchers better understand how organisms respond to injury, heat and other forms of stress. While the work is still in its early stages, the study demonstrates that ultraweak photon emission imaging can provide a non-invasive and label-free way to observe biological activity. Researchers say the approach could become a useful tool for studying vitality, stress responses and other important processes in both animals and plants. Source: University of Calgary, ACS publication This article was generated with some help from AI and reviewed by an editor. Under Section 107 of the Copyright Act 1976, this material is used for the purpose of news reporting. Fair use is a use permitted by copyright statute that might otherwise be infringing.
    • Damn, I loved this show back in the day.  
    • Rufus 4.15.2393 Beta 2 by Razvan Serea Rufus is a small utility that helps format and create bootable USB flash drives, such as USB keys/pendrives, memory sticks, etc. Despite its small size, Rufus provides everything you need! Oh, and Rufus is fast. For instance it's about twice as fast as UNetbootin, Universal USB Installer or Windows 7 USB download tool, on the creation of a Windows 7 USB installation drive from an ISO (with honorable mention to WiNToBootic for managing to keep up). It is also marginally faster on the creation of Linux bootable USBs from ISOs. A non-exhaustive list of Rufus supported ISOs is available here. It can be especially useful for cases where: you need to create USB installation media from bootable ISOs (Windows, Linux, UEFI, etc.) you need to work on a system that doesn't have an OS installed you need to flash a BIOS or other firmware from DOS you want to run a low-level utility Rufus 4.15.2393 Beta 2 changelog: Add RISC-V 64 support to UEFI:NTFS Improve the guards for using the "silent" option Improve the ability to cancel during write retries Improve progress reporting for compressed image extraction Fix unrestricted XML entity expansion and integer overflow in ezxml parser (courtesy of @esadowski4) [GHSA-55r2-34wg-8mv9] Fix "silent" Windows installation failing at 75% in most cases [#2960] Fix a crash during boot when using UEFI:NTFS on Snapdragon X based ARM64 platforms [#2934] Fix the first WUE option always being checked by default [#2965] Fix an infinite loop when using Windows ISOs that contain multiple WIMs Fix "Enable runtime UEFI media validation" checkbox not always being properly enabled Other WUE improvements/fixes for OneDrive removal and username validation (with thanks to @christian8641) [#2984, #2991] Download: Rufus 4.15 Beta 2 | 1.9 MB (Open Source) Links: Rufus Home Page | Project Page @GitHub | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Tixati 3.43 by Razvan Serea Tixati is a free and easy to use BitTorrent client featuring detailed views of all seed, peer, and file transfer properties. Also included are powerful bandwidth charting and throttling capabilities, and a full DHT implementation. Tixati is one of the most advanced and flexible BitTorrent clients available. And unlike many other clients, Tixati contains NO SPYWARE, NO ADS, and NO GIMMICKS. Tixati portable version is meant to run on a USB flash drive or other portable media. It stores all its configuration files in the same folder as the executable binary files, and all file paths are stored in a format relative to the program executable folder. It is important you do not delete the "tixati_portable_mode.txt" file within the executables folder. This file is what triggers Tixati to run in portable mode. (The executable binaries are actually the same as the standard edition binaries.) When running the portable edition from a USB flash drive, especially one that is formatted in FAT16/FAT32, you may experience some lag when initially loading a new transfer. This is because initializing and allocating large files on flash-based media consumes a greater amount of time and resources compared to a conventional hard-drive. Tixati has the following features: detailed views of all aspects of the swarm, including peers, pieces, files, and trackers support for magnet links, so no need to download .torrent files if a simple magnet-link is available super-efficient peer choking/unchoking algorithms ensure the fastest downloads peer connection encryption for added security full DHT (Distributed Hash Table) implementation for trackerless torrents, including detailed message traffic graphs and customizable event logging advanced bandwidth charting of overall traffic and per-transfer traffic, with separate classification of protocol and file bytes, and with separate classification of outbound traffic for trading and seeding highly flexible bandwidth throttling, including trading/seeding proportion adjustment and adjustable priority for individual transfers and peers bitfield graphs that show the completeness of all downloaded files, what pieces other peers have available, and the health of the overall swarm customizable event logging for each download, and individual event logs for all peers within the swarm expert local file management functions which allow you to move files to a different partition even while downloading is still in progress 100% compatible with the BitTorrent protocol Windows and Linux-GTK native versions available Tixati 3.43 changelog: Several major DHT improvements Added several screening heuristics to filter malicious DHT nodes, prevent Sybil floods Rewrote DHT search algorithms to add support for multi-path lookups Improved DHT logging, more details in several error messages Extended timeout lengths for outgoing queries over I2P Added incoming query / response per second to DHT table status display Updated Regex engine to PCRE2 Faster Search function, scans channel user profiles in much less time Fixed problems with file name parsing and date handling in RSS Faster and more accurate RSS filtering and episode number detection Several optimizations to global text processing functions, such as UTF-8 cleaning, line splitting, and token parsing Complete update of port-mapping UPNP/NAT-PMP engine, added PCP support, mapping over VPN support, and more Several refinements to default gateway detection on Windows / Android, which is used for port-mapping Support for IPv6 interface-scoped addresses, which is sometimes needed for IPv6 gateway detection and port mapping Full support for PCP port remapping, added backup zero-port query in case requested port is rejected New UPNP/NAT-PMP Monitor in Help > Diagnostics New reflected local port/location tracker that analyzes DHT replies to detect true port/location and NAT mapping type New TCP/UDP Ports monitor in Help > Diagnostics, with several statistic and information tabs, and a detailed event log Calculated/reflected local port is now used for port parameter in tracker queries and peer handshake Fixed several problems with Linux Wayland compatibility Completely replaced tray icon functions in Linux, new SNI implementation is now the default with GSI backup Implemented full DBus-Menu server to be used by new SNI tray icon implementation Replaced Linux tray balloon notification DBus client Rewrote auto-shutdown DBus interface for Linux Rewrote sleep inhibit DBus interface for Linux Dropped deprecated Linux dbus-glib dependencies Completely new Windows asynchronous file handling, now using IOCP model with several block-alignment optimizations Better handling of system network resets and interface down/up cycles Added option to fully clear configuration in Settings > Import/Export Remember last option checkboxes when using Import/Export Fixed minor I2P incoming connection routing problems Much faster I2P vanity host name finder Much faster channel user vanity key finder Raised length limit for torrent tracker remote failure messages to 120 from 64 Fixed problems setting download location on a torrent before the meta info is resolved Added location/MOC paths to category pane tooltips Several minor Web Interface fixes Refinements to static and scrolling ellipsizing layout routines Several fixes and improvements to single and multi-line text edit controls Many other minor fixes throughout the user interface A major overhaul of the Android framework has also been done: API target raised to 35, page alignment set to 16K Rewrote all inset processing routines Full rewrite of foreground service, application, and main activity objects New permission request routines Added multi-cast lock request before UPNP/LPDP discovery operations Fixed file permission and locking problems when loading .torrent from web browsers Fixed problems with Z-ordering of modal / non-modal and popup windows Fixed handling of back gesture on newer OS Added status bar icon adjustment based on status bar background color Added option in Settings > UI > Behavior to continue running in tray when task removed from recents App can be closed by swiping away notification Rewrote IME interface, fixed several problems with auto-correct, on-screen keyboard visibility, and cursor positioning Added full support for Android hardware mouse and keyboard function Added full tooltip implementation for Android hovering via mouse or other cursor device Full rewrite of popup menu widgets to better support hardware pointers and keyboard Added mouse cursor updating framework for Android hovering Added Settings > Import/Export to Android builds Added language file support to Android builds Download: Tixati 64-bit | Tixati 32-bit ~20.0 MB (Freeware) Download: Portable Tixati 3.43 | 114.0 MB Download: Tixati 3.43 for Linux | Android View: Tixati Website | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Firefox 152.0.1 by Razvan Serea Firefox is a fast, full-featured Web browser. It offers great security, privacy, and protection against viruses, spyware, malware, and it can also easily block pop-up windows. The key features that have made Firefox so popular are the simple and effective UI, browser speed and strong security capabilities. Firefox has complete features for browsing the Internet. It is very reliable and flexible due to its implemented security features, along with customization options. Firefox includes pop-up blocking, tab-browsing, integrated Google search, simplified privacy controls, a streamlined browser window that shows you more of the page than any other browser and a number of additional features that work with you to help you get the most out of your time online. Firefox key features Enhanced Tracking Protection (ETP) – Blocks trackers, cookies, cryptominers, and fingerprinters by default. Private Browsing Mode – Deletes history, cookies, and temporary files when closed. Lightweight & Fast Performance – Optimized memory usage with efficient page loading. Cross-Platform Sync – Sync bookmarks, passwords, history, and open tabs across devices. Customizable Interface – Toolbars, themes, and extensions can be tailored to user needs. Strong Privacy Controls – Options to manage cookies, permissions, and site data easily. Reader Mode – Strips away clutter for distraction-free reading. Pocket Integration – Save and read articles offline with Pocket built into Firefox. Picture-in-Picture (PiP) – Watch videos in a floating window while multitasking. Extensions & Add-ons – Vast library for productivity, security, and personalization. Built-in PDF Viewer – No need for external software to view PDFs. Firefox Monitor – Alerts users if their email is part of a known data breach. Multi-Account Containers – Isolate browsing sessions (e.g., work, personal, shopping). Performance & Resource Efficiency – Uses fewer system resources than some competitors. Open Source & Community-Driven – Transparent development with global contributions. Firefox 152.0.1 fixes: Fixed frequent crashes affecting users with Intel Raptor Lake processors. (Bug 2039575) Fixed an issue on macOS where choosing a PDF option, such as "Save as PDF", from the system print dialog would send the job to your printer instead of saving a file. (Bug 2047850) Download: Firefox 64-bit | Firefox 32-bit | ARM64 | ~70.0 MB (Freeware) Download: Firefox for MacOS | 146.0 MB View: Firefox Home Page | Release Notes Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • One Year In
      hhgygy earned a badge
      One Year In
    • One Month Later
      AMV earned a badge
      One Month Later
    • Week One Done
      AMV earned a badge
      Week One Done
    • Collaborator
      ryansurfer98 went up a rank
      Collaborator
    • One Month Later
      Eurosoft10 earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      514
    2. 2
      +Edouard
      169
    3. 3
      PsYcHoKiLLa
      78
    4. 4
      Steven P.
      73
    5. 5
      Michael Scrip
      71
  • Tell a friend

    Love Neowin? Tell a friend!