Web development is a broad term for the work involved in developing a web site for the World Wide Web or an intranet.
-6
votes
0answers
44 views
Why to use Webmatrix if I have another cool IDE? [on hold]
Why indeed? Usually I'm working on WebStorm or PHPStorm which seem have more rich set of options. Well, It's obvious there are some advantages of Webmatrix like a smooth deployment and integration ...
-4
votes
0answers
60 views
So many Web Development Frameworks and Libraries; where to begin? [on hold]
So I've been developing Web Applications for about 6 months now with HTML, CSS, PHP, MySQL and JavaScript (including some JQuery and D3) but I think my method is outdated.
I currently write every ...
-1
votes
1answer
69 views
How do I get my first Job as a Front-End Web Developer [closed]
I am having trouble understanding what I need to do in order to get a job in Front-End Web Development. I already know HTML, CSS, JavaScript, and jQuery. What do I do next to get my first job???
...
1
vote
3answers
275 views
Pluggable UI Components in Java Web Applications
I will try to explain my question with an example. Let us say that we are writing a hotel reservation system which is web based using Java. We will have different payment methods, say Paypal, Master ...
1
vote
1answer
198 views
Should I hide certain HTTP status codes?
So I have different seniors taking different positions on this. Some saying hide nothing, those codes are there for a reason. Others saying to hide most status codes, reducing the number to a much ...
-1
votes
1answer
66 views
Learning About Different Architecture Set Ups [closed]
I'm sorry in advance if this isn't a good fit here, as it is a pretty open-ended question.
In a nutshell: where / how / when does one learn about application architecture(s)?
Normally for web ...
4
votes
2answers
240 views
Whose responsibility is it to create the interface and/or acceptance testing? Developer or QA?
I am a backend developer and always create tests for my applications.
Recently I study and apply the interface tests (using selenium), but I doubted whether I who should create these tests, developer ...
0
votes
1answer
173 views
Website with a lot of sound [closed]
I am building a website with a large amount of sounds that should be played upon clicking elements. (It is a language learning website, and many words and phrases will be clickable, to hear ...
21
votes
4answers
3k views
Choosing a Programming Language Systematically [closed]
I am looking for a methodology for choosing a language. I am not asking for opinions about languages. I have been tasked with the process of comparing our shop's current language with others that are ...
0
votes
3answers
90 views
Website testable design [duplicate]
I have developed two web services. The main service is a RESTful service (using DB), and another UI service that uses the RESTful service.
Say I want to test the UI for now (integration tests), every ...
0
votes
0answers
97 views
More efficient management of assets(image, documents) in a large web project
I am beginning to refactor a large, very old, messy project. One of the biggest issues is the lack of a central location on the filesystem for simple things like images, icons, documents, csv, etc.
...
-2
votes
0answers
103 views
Is it possible to change out an image src=“” before the original image loads [migrated]
I've been looking at Javascript that can change the src of an image. I'm simply wondering if this can be done before the browser attempts to fetch the original image.
Example.
Src="Large-Image"
...
2
votes
1answer
130 views
What's the best way of building an administrative UI for an existing SPA application?
I’m working on an application where the client-side interface and backend server are completely separate applications. The backend is written in Ruby and only serves JSON via HTTP. The client is a ...
13
votes
2answers
1k views
What is “presentation logic” and how much is acceptable in views?
In my web application I have to provide a form for creating and editing. The forms for creating and for editing have minor differences, so I am thinking of doing something like this in my view:
...
1
vote
1answer
174 views
Would it be a wise decision to opt for just Javascript to create a single page application, instead of HTML and CSS?
I've mainly done application development, but have also worked on simple web projects (where the HTML and CSS were created by the web dev guys).
Recently I tried creating a website for myself, and ...
-1
votes
1answer
57 views
How does contenteditable work?
I recently came across an article where if you enter
data:text/html,%20<html contenteditable>
into the address bar of a browser that supports HTML5, you can type in the window.
I managed to ...
0
votes
3answers
240 views
How should I “dig deeper” as a web developer? [closed]
I am currently a full-stack web developer working mainly in Ruby/Rails/Javascript. The languages I use on a daily basis (ruby, css, javascript, php) are great, but they are very dynamic, high level ...
0
votes
1answer
86 views
Anonymous access to api REST, protection
I have a public website that does not require authentication. It's a lighting calculator for indoor cultivation. Anyone can enter and complete the process and ultimately save your settings for future ...
0
votes
1answer
152 views
What is a good generalization of web development architecture? [duplicate]
I'm new to web development. From looking at popular open-source frameworks for both front-end and back-end, I have a general idea of what the modern full-stack web setup looks like:
Database <-> ...
0
votes
1answer
162 views
Version controlling of a web project
We (2 developers) are developing a cakephp app that is running on a remote server. In NetBeans we both have project set up as "PHP application from remote server".
The problem is that whenever one of ...
1
vote
2answers
172 views
Website compatibility with old operating systems [closed]
I'm a web developer. I most often come across this critical situation when the website layout fits with the design when run on Windows 7 or 8 and Mobile Operating Systems (Android, iOs, Windows 8).
...
0
votes
1answer
121 views
Viable method of sharing our PHP project [duplicate]
We are two developers that have no previous experience in sharing one PHP project. In particular, cakePHP.
We both use NetBeans and we have set the project up as a "PHP application from a remote ...
1
vote
1answer
149 views
In MVC design, do I use a base class over an interface?
In web MVC most designs I've seen, (just choosing model layer as an example) the domain problem class, say students, always inherits the superclass "Model." The name is irrelevant, but why do they ...
0
votes
0answers
53 views
How achieve a page-change proof player?
I am interested in develloping a web music player similar to the soundcloud one
However, I can't figure out one thing: How player like soundclou one (and some other one) can "resist" a page change, ...
0
votes
0answers
58 views
Consistent header HTML across multiple sites
We've got several sites. Some are HTML/Angular, some are built on a CMS, some are built on other code. What we'd like to do is have a consistent header experience for each site. I'm trying to figure ...
-1
votes
1answer
66 views
Sending e-mail from a web application without being filtered out [closed]
For a web application I'm working on right now it's very important that automated e-mails arrive at the recipient. I've set up the mail server on the VPS that the application is going to run on. I've ...
2
votes
0answers
225 views
Breadcrumbs in a modern web application, make sense? [closed]
I'm currently beginning with the development of a new web application. The whole web application is going to be bookmarkable and all the pages accesible via GET requests and url parameters. Having ...
4
votes
2answers
357 views
How to layer if statements when order of logic is irrelevant?
Basically I have a series of logic in my website that can lead to 5 total outcomes. Basically two different if tests and then a catch all else statement.
For example:
if cond1:
if mod1:
...
2
votes
1answer
283 views
GIT workflow for web development
Long ago the small team of web developer I work with started using git for web development. Back then we just committed to staging or master directly and then merged frequently between the two. It was ...
-2
votes
2answers
163 views
Fullstack programmers and web design [closed]
I have been looking into full stack developments and I am confused as I am getting different answers from people.
I know that full stack developers are responsible for front end and back end ...
0
votes
0answers
28 views
Product Configuration with conditional options
Suppose you need to create a website where you can choose a Widget, and then configure all of the various options to go with that widget.
The options have many interactions. For example, if you ...
0
votes
2answers
158 views
Should the check correctness of a time constrained puzzle game application be done on the server side?
I am working on an application where a user has to complete a puzzle and check within a given time limit.
This is an HTML5 based game, I can't keep the solution on the client side.
but I also want ...
2
votes
3answers
216 views
Phone Number based Login
I'm trying to implement a phone number based login and not sure if I should ask the users for full number, i.e country code + number or just the number.
What I have in mind so far:
Attempt ...
1
vote
2answers
231 views
What is the purpose of RESTful URIs for POST/PUT/PATCH/DELETE methods?
In the process of conceiving a web application framework, I spent some time pondering the notion of RESTful paths. If I wanted to create e.g. a new topic, I might send a POST request to /topics. The ...
2
votes
3answers
108 views
Integrating a mobile website into a mobile app
I'm trying to redevelop a mobile website so we can integrate it into a mobile app that is being developed by another department, but still keep it functional on the web. The app has its own menu, so ...
0
votes
1answer
141 views
What is design pattern/paradigm for ASP.NET web-apps? [closed]
I don't actually know if my question is correct, but working on a webapp porting from ASP.NET world to Java + Spring platform I came up with this question in mind.
Using Spring MVC, the new version ...
0
votes
2answers
147 views
secure offline PC storage accessible through javascript
I'm attempting to build a browser-based HTML5 application that has the ability to store data locally on a PC (not mobile device) when offline. This data is sensitive and must be secure.
Of course the ...
0
votes
0answers
25 views
What's the Content-Security-Policy-friendly way to hand data from the server to the browser on page load?
When developing for the web, I often find myself wanting to pass a few variables from the server scripts to my javascript - data pulled from a database, and set differently on different pages running ...
0
votes
0answers
30 views
Are Components ideal for packaging and reusing find() requests?
I find myself loading several models over and over again throughout my application. Instead of typing the code to load the model, run a find, would it be reasonable to put that code in a method and ...
0
votes
0answers
54 views
Hosting image oriented ASP.NET MVC site; how to keep things fast?
I have a site that heavily relies on high res images being uploaded and viewed constantly. Currently it's hosted internally which keeps everything fast. I now want to move the site externally, but I ...
1
vote
1answer
101 views
Web-app filtering information client-side vs server-side?
I have a web-app that provides data (that is updated on an interval) for intranet users, who are able to filter information by location.
I was having a discussion with a co-worker about whether that ...
-1
votes
1answer
57 views
Deleting dynamic elements from a database [closed]
I have a select dropdown, with '+' and '-' buttons that add and remove items before submission.
I would like to be able to remove the elements with the '-' button after they have been added to the ...
3
votes
1answer
268 views
Good way to handle the notification counter like Facebook does
I want to build a similar notification mechanism that Facebook handles.
I actually store the user's notification in an SQL table (actually it's a graph database but everybody master RDBMS terms).
...
0
votes
0answers
92 views
Rendering STL file to STL viewer which is in new page
I've uploaded a STL file as an additional file for a product. And it gets downloaded in frontend as shown in screen shot.
When I click on that link for STL Downloader, then that STL file will be ...
0
votes
0answers
123 views
What techniques should I use when implementing infinite scrolling on a website?
I am currently working on a website which implements infinite scrolling on it's search page (the results themselves coming from Elastic search) and, unsurprisingly, the more you scroll the slower ...
2
votes
2answers
143 views
Should we always create web application scalable? [closed]
Fact that now a days everyone is moving to cloud due to ease in scalability, configuration and maintenance.
But my question is should we develop all web application scalable event if it is not ...
0
votes
1answer
172 views
What is the proper way to use an IDE to work on remote code?
One of the code bases I work on has a development environment that is running on a dev server and cannot be copied over to my PC to locally test and develop. I am wondering what is the proper way to ...
1
vote
1answer
172 views
Should we live by using Suhosin with PHP?
A lot of my security experienced friends have told me that I need to code my web applications for working under the Suhosin PHP patch, Suhosin being "an advanced protection system for PHP ...
1
vote
2answers
155 views
Is it ok to start with templates in MVC development?
I'm new to web development and I've started working on a project in my company that uses DJANGO. I feel it flexible to start my development straight first from the templates. I think it will be easier ...
1
vote
0answers
38 views
Synchronizing web ui and third party async services
I'm looking for concepts, approaches or even Framework/libraries to help me synchronize state reliably from web UI to a third Party Service.
For example: creating a JavaScript irc Client ui you need ...