Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API

From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Search - "web"
-
Me: would you like me to design the website as well?
Client: no, we have a web designer. you just have to implement it.
Me: *receives the design, made with powerpoint* 😐21 -
When u use i3 and vim on arch linux so u wont have to touch the mouse and then remember that you're a web dev.23
-
Similarities between this spider and me:
- We both are web developers
- We both live in same room
- We both try to find bugs everyday11 -
Time spent on Web Development :
1% : {
actual productive content and features
}
99% : {
Please. All I want is for this div to vertically align in this other one. Is that too much to ask?
}13 -
Life of a web developer:
*Birth*
*Create awesome looking websites*
*Make them look bad on clients request*
*Death*2 -
People who use WordPress and call themselves web developers are also the ones who think that HTML is a programming language.7
-
My client asked me to add **three levels tab bar** to the web page. It takes 40% space of the screen when open on a mobile.
"How much does it cost?" -- she asked
"Just don't tell anyone that I do this job for you." -- I replied1 -
New client wanted us to redo their site and boost their SEO because "nobody has ever used our contact form".
Looking at their current site, turns out their contact form is POSTed to an HTML page, that obviously does 0 processing on it. Like tossing it on the trash bin.
Their current website is done by a company that claim they're experts on web design for our clients sector.
Still haven't stopped laughing.7 -
Here's how a client does "double murder"
-----------------------------
Client to designer: So you can make it run on IE 6,7,8 right?
---------------------------------
Turns to a web Dev who just mastered Node, React, angular: What if user disables JavaScript? It'll still work right?5 -
More Unix commands are becoming web services. What else can you think of?
Grep -> Google
rsync -> Dropbox
man -> stack overflow
cron -> ifttt"9 -
Pro tip: It is faster and easier to say 'World Wide Web' than it is to say 'WWW'.
You're Welcome!19 -
When people call themselves a "professional web developer," but all they do is set up a Wordpress site with a custom skin. Alright then! 🙄6
-
devRant on desktop web now live! Check it out and let us know if you find any bugs or weirdness: devrant.io/feed/11
-
Anyone else dislike when a company hires you for Backend application development and you start doing front end web development4
-
Can we all take a moment to appreciate what a complete mess web technologies are.
We're abusing a markup language made for scientific writing, by styling it with css and in order to make it dynamic somehow, we run a weird ass scripting language on the clientside.
Because nobody really wants to use this burning garbage can, some of us invented web frameworks.
And let's not get started on php...14 -
Hey, thanks for teaching me JavaScript and HTML. I almost feel like a web developer now.
What about the REST?5 -
The StackOverflow developer insights says they have over 50% web developers. They missed the <title> tag.2
-
Although web developers are widely feared, only a few species are dangerous to people. Web developers will only bite humans in self-defense, and few web developers produce worse effects than a mosquito bite or bee-sting. Most of those with medically serious bites, such as JavaScript web developers and PHP web developers, would rather flee and bite only when trapped, although this can easily arise by accident. There were about 100 reliably reported deaths from web developer bites in the 20th century.2
-
elementor.com, wix.com, fuck this shit. These guys want our death. Nowday customers think "building web site is just drag and drop."13
-
Somebody asked on how to get started on Full Stack web application development.
This is how I got started.
Client side Web Application Development:
---------------------------------------------------------------
• Start with basic HTML, CSS and JS, JSON. For quick learning, see W3Schools for these topic or YouTube it.
• Get a local web server. "200 OK!" webserver chrome extension is a good start. (https://chrome.google.com/webstore/...)
• Learn Chrome Dev Tools to debug the pages. YouTube it.
• Get a good IDE. I am very happy with VSCode. You can use it for very serious WebApps.
• Start learning JavaScript language in depth, but just related to Web Browser related topic or you would get sucked in server side too early.
• Install node.js. Learn NPM package manager. Learn basic node commands.
• Learn complexity of JS file referencing, JS modules in browser. Just learn, don't use it yet, to understand the benefits of code bundlers.
• Learn Webpack code bundler.
• Learn how to make you simple site much faster and using in Mobile using "Progressive Web Apps".
• Now learn to make modular UIs. I love React. Focus on getting the UI code modulear. Create Single Page sites. (You are not there yet to create a Web App) “Create-React-App” started kit is a good starting point.
• Learn to create multi-page site using React-router.
• Learn application state management using Redux.
• Learn to create application decision engine using Redux-Saga.
Practice and master each stage.
Along above, learn git / GitHub (to learn from others code), find good web resources like Medium / Smashing magazine, good YouTube channels etc. I subscribed to some popular Udemy courses too.
Server side Web development:
------------------------------------------
:) First learn client side Web Application development. Server side learning is another story.3 -
Help.
I'm a hardware guy. If I do software, it's bare-metal (almost always). I need to fully understand my build system and tweak it exactly to my needs. I'm the sorta guy that needs memory alignment and bitwise operations on a daily basis. I'm always cautious about processor cycles, memory allocation, and power consumption. I think twice if I really need to use a float there and I consider exactly what cost the abstraction layers I build come at.
I had done some web design and development, but that was back in the day when you knew all the workarounds for IE 5-7 by heart and when people were disappointed there wasn't going to be a XHTML 2.0. I didn't build anything large until recently.
Since that time, a lot has happened. Web development has evolved in a way I didn't really fancy, to say the least. Client-side rendering for everything the server could easily do? Of course. Wasting precious energy on mobile devices because it works well enough? Naturally. Solving the simplest problems with a gigantic mess of dependencies you don't even bother to inspect? Well, how else are you going to handle all your sensitive data?
I was going to compare this to the Arduino culture of using modules you don't understand in code you don't understand. But then again, you don't see consumer products or customer-specific electronics powered by an Arduino (at least not that I'm aware of).
I'm just not fit for that shooting-drills-at-walls methodology for getting holes. I'm not against neither easy nor pretty-to-look-at solutions, but it just comes across as wasteful for me nowadays.
So, after my hiatus from web development, I've now been in a sort of internet platform project for a few months. I'm now directly confronted with all that you guys love and hate, frontend frameworks and Node for the backend and whatever. I deliberately didn't voice my opinion when the stack was chosen, because I didn't want to interfere with the modern ways and instead get some experience out of it (and I am).
And now, I'm slowly starting to feel like it was OKAY to work like this.10 -
Started my internship in web development so far everything is good but the only problem is website is on developed on WIX. No coding necessary 😣😣2
-
To new web devs from a new web dev:
Try to design your site before you write a single line of code. Be it Photoshop, Paint, a piece of paper, a literal goddamn canvas, you name it. You may thank yourself for it later.10 -
While styling a website, I realise that I would be fired on the first day if I had a Web designer job
-
!rant
person1: "So I year your studying to become a web developer"
person2: "Ya I am"
person1: "So what school are you going to?"
person2: "its called w3schools"5 -
What manager says: You should support IE because a very large portion of our userbase is already there and they somewhat comply with web standards so it shouldn't be that hard. Also most good sites support IE so we should support it too.
What web developer hears: blah blah blah SUPPORT IE blah blah blah SUPPORT IE10 -
I worked with Angular for last 1.5 years now.
.
.
Now every web development project I see, I want to change it to angular.
Is it just me or you all feel the same?9 -
I started learning Node.js this morning. Wow, mind blown.
I can see how I could use this in an existing web development project.
What are the barriers to using Node.js instead of something else? Are there support/performance issues?24 -
Question again about hosting web apps, has anyone using the paid bills for heroku? Since they gave 1000 hours uptime for their free version, is it possible to still use it for a web apps? And mix the bills for another web apps? Or is it better to host under vps?23
-
SSH is the most basic thing a web developer should know.
Some people are just lazy to learn something and all they do is give hard time to other people.2 -
I'm honestly so pissed at my product manager right now. He made me stay in the office till 10PM because his stupid manager demanded a hotfix in one of the worst web applications you'll ever see. Fuming. Tried my best to bring some sense into him but to no avail.4
-
Me as a mobile app developer trying to add a button to a page of a .Net website:
So, what do i need to do?
Web developer:
Oh that's easy. You need to edit that template which produces html, add an event in there that will call a javascript function, which is in a .js file, which is generated from a typescript file. Than you should give that button a style. Simply by opening up that .less file here and adding a class which will be translated to css later. In that c# file over there you add a bundle reference which contains the css and js files, but before that, they must be minified. In that other c# file, you add a controller that handles your button.
Aaand... take care of new js features and css features. Most browsers don't support them. Those cool C#7 features you love so much... not in this project. Our build servers don't support C#7. Those new features are evil anyway.
😭5 -
You know that web development realy took the wrong turn, when complex java project compile way faster, than simple javascript one.
Not to say that javascript is interpreted programming language.6 -
I really like the look of the http://devRant.io web page. It has been greatly improved. Shows how far devRant has come in 8 months.
-
A 12-week coding Bootcamp won't turn you into a full stack web developer.
It's like a diet it takes time, it's not over in a few weeks even if you start intensive and really commit to it.5 -
Sometimes I feel like, even thought being a Software Engineer, I know web development better than 70%-80% so called professional "Web Developer"15
-
Our "intern", who is working here about ONE-POINT-FUCKING-FIVE YEARS with web front- and backend, just asked me how it is best to create a link from one page to another page and sending an additional parameter.
Oh boy...8 -
New web devs don't know the struggle of using spacer.gif, nested table layouts, and vibrant "web friendly" colors out of requirement.5
-
I know you all do love the dark side. Let me help out with the web version for ya' too :)
Dark theme:
https://userstyles.org/styles/...
Optimize for big screens:
https://userstyles.org/styles/...
Have fun :)4 -
Chrome 57 adds Web Assembly support.
I just know I'm going to be asked to use it soon. I just know it. It's not even close to a finished specification!9 -
Got a phone interview for a web dev internship while in school. I only took a very intro web design/dev course, and wasn't sure if I wanted to pursue that career. It went well in the beginning though I was getting more and more nervous. Then they asked what I learned in that class. I suddenly remembered something and rambled how the teacher talked about how outdated and not mobile-friendly tables are, and we should never use it in layout. There was a few seconds of silence and someone spoke out "well table is still very useful and we use it a lot in our website".
I didn't get the internship :-) -
Started a new job and our tech lead doesn't know how to use GIT in a team environment, has only ever used it while working by himself on one person projects. Kinda worried...2
-
I'm learning nginx and it's simplying the way I think about web projects.
I used to think that when I used a server side framework, then that should be the master and all should go through it. Noob me.
I used to put client side projects (like create-react-app of vue-cli projects) right inside the server side project.
But with nginx you can just route subpaths to different places, then instead of having, let's say, the react project inside rails, they would be in separate git projects.
In fact, I no longer need to restrict myself to a single server framework.
I love several aspects of rails. I love several others of node. And if I need multithreaded performance, I'd very much use something like phoenix or go.
Again, with nginx, you setup subpaths with the `location` directive in the same server and voila, a no CORS setup, cookies shared and homogenous versatile website.8 -
Putting a PDF Form on the Web this morning.
Money is money... but god damn people are fucking stupid.5 -
Web Developments philosophy - always recreate the wheel. Never hesitate to make it again and again.3
-
Sigh OK, so, my friend we'll call him z has told me he's visiting the deep Web with tor. So I immediately start asking him about what security he uses (which is 3 VPNs tired through each other).
Like no z! You don't go to the deep Web, that's where the bad things happen! 😡8 -
Why has web development become so complicated?
I'm learning React with JSX . Why is JSX even necessary? HTML works fine. Its simple and gets the job done.
I can't stand the node_modules directory either. Opening it up reveals what seems like hundreds it not thousands of dependencies that all have their own recursive node_modules folder and the dependencies continue.
Why are we creating more unnecessary abstractions on top of more unnecessary abstractions? What happened to K.I.S.S?
What was wrong with vanilla Javascript and becoming great at that and using just that?30 -
I love web development and web design. You can make something custom that looks great in a short period of time. Use the many frameworks to your advantage.
Also, for the people hating css, i get it. It's har sometimes but it's not that bad. Flexbox makes your life waaay easier.3 -
https://codecrow.io
Open beta of my startup's web app.
Let me know what you think!
Redesign coming soon!7 -
The Sorry State of Web programming (and who should be punished for it)
"And if you’re really lucky, and your following grows to scientology-levels of fanaticism you may get your own con. Yes con. Like DockerCon, or JsCon, or LongConJs, because thats exactly what all this is — and it’s exactly what we need: more excuses to meet up for the already sterile pollination of bedfellows, the unwashed, unvarnished masses of guys in their 30s, obsessively stroking their perfectly manicured beards and arguing over the comparative differences between vim versus emacs while completely oblivious about things like how you’re supposed to wear an undershirt with your button up. If not for hackathons, and ted talks, and sxsw, and conferences, and SomethingCons, and ‘retreats’, and dozens of other pointless synonyms for ‘people just meeting up’, most of us would still be in our cubicle, office, or room, typing away instead of socializing like normal people."
Full post here because I like to insert pictures because like all normie fucking simpletons I like pictures in my books.
https://medium.com/@swcs/...15 -
My life as a web developer changed forever when I realized that 80% of my layout problems can be solved by adding "display: flex;" to literally everything in sight.1
-
I'm in a programming school that gives only projects in C and a method to learn quickly.
Then we don't have official web classes or anything so we have "Labs" or "Clubs" and last time I was at a web programming club, leaded by students (because it gives me some more credits).
I was very surprised because they began to try to learn us the Javascript without talking about DOM.
And their explications about server-side and client-side codes were not clear (and obviously not exhaustive).
I have some (not a lot neither) experience in web programming so I helped him to make his course more understandable but I can't believe that these courses are given by students who don't have any idea of what's web programming...3 -
Hello guys im observing since some time your rants.
Here are people which are quite experienced.
I want to start as Freelancer in Germany, mostly for Web development.
All of my Customers are looking for a neat looking, responsive and fast Website.
What should I use and what Templates/framework I could take as a blueprint for the future websites.
Any suggest are welcome!8 -
I'm taking a web development course this semester. The course covers front- and backend as well as automation. I know my HTML&CSS but I know next to nothing about the rest (which is why I'm taking the course).
Could you recommend me some good web dev ressources/"absolute classics" for further reading/watching?9 -
Nice work... but I'm sure I won't vote the web developer of this website as the best of the internet.1
-
I am a CS student. I can do core programming(like solving a basic problems) stuff pretty well but, I can't seem to understand UI design.
I was learning web development.
Learnt the basics of HTML, CSS then thought "let's make a simple website".
Couldn't design a single thing.
I mean i know the concepts how to implement forms tables navs etc stuff. But main problem is I can't think of good design.
Am I just not made for web dev or what?
How to be a web dev? I am following Angela Yu's udemy course, should i try freecodecamp?37 -
How to fuck a web developer:
1- Introduce a shiny new shitty web component that is nearly impossible to figure out how to change it’s fucking background color, yeah.
Welcome everyone to 2019 why even it was so easy to change and customize your own shit, let’s just introduce thaaa faaacking web components and fuck everyone else. Let everyone learn again how to do the simplest shit ever.
Yes fuck everyone that is used to change and customize in an easy way.
“yUo wAnT uS nOt tO UsE SoC anD cLEan koOde?”
No no no. We will fuck you instead.2 -
Just curious.
1. How you hosting at deep web?
2. Can your websites become listed in deep web? Why?
I just curious12 -
How do you guys motivate yourself? I'm getting really bored of web development which isn't good as it's my only income7
-
Discussion Question for Web Devs and Server Admins.
Should we use unicode (Non-English/Latin) text in URL?
Eg: unicode blog title converted to use as permalink14 -
! WebDevs
I'm just undecided with which ide for web development I should go..
I'm switching all the time.
I'm working with NetBeans, codepen and brackets.
What do you use and why? (please only free versions)
Thank you
Above are just example pics.24 -
I am planning to learn web development. Should i go for python or php side? Which one will you prefer 😋😐🤔 ?15
-
Sometimes I feel I should switch to android from web even though I don't know anything about it but just feels that it's interesting morebthen web.
But then again I have those thoughts that jack of all and king of nothing is pretty hurtful in career building. Isn't it?5 -
Are WYSIWYG web editors worth it? Or is it better to just code entire websites without something like that? I've only ever done the latter.11
-
Theres so many motherfucking command line utilities in web development that I'm surprised there isn't a 128 megabyte NPM install for a leftpad CLI.
God damn people who develop tooling for web development are some navel gazing cunts.
"How can I feel more self important? Lets put a CLI in front of this web bundler!"
Dumbasses.
What happened to the days of purity? Of cleanliness? Of kosher compliant web development, where all you had to do was include a script tag?
Gone are those days. Welcome to Babel(on)!
I put a CLI in your CLI so you can masturbate while you masturbate!3 -
Someone : How to shutdown the computer from web browser
Others : Mm.. That's not possible 😂.
Me : Try https://github.com/neutralinojs/... 👈🏻 🧐5 -
So I was reading Julia lang's documentation and got mildly triggered due to this, but then they are not web designing project so I guess it's okay5
-
Look at this my university's WEB TECHNOLOGIES paper. It is totally full of crap and shitty questions.😅8
-
Hello guys, what do you think about Tim Berners-Lee's attempt to decentralize the web? Will Solid be the future of web app development or will it just vanish ?7
-
I started in school and i thought it would be enough. My father convinced me to look into php and i inhaled it. Now, 12 years later, I am a self employed web dev and I teach web development. Thanks dad!1
-
Sometimes I think that life is too short to learn everything I need to become an actually good web developer. :(
-
Did any of you made a progressive web app before? If yes; what were your experiences with it? Pro's and cons?4
-
A while back I was learning web development so I could create web apps. I'm by no means any good at graphic design and whatnot, so every time I'd make a page to rig up with some JS I would get really frustrated with trying to make the page look decent and professional (not professional quality design, but usable as an application in a professional setting), even with bootstrap.
Does anyone have tips for getting over that hurdle? I want to learn, but I get discouraged by my graphical ineptitude.1 -
Ever had to work with a Web backend, which is written in C++, has 30000 lines of code and is contains php, JQUERY, HTML as well as a desktop UI? I have to do that right now. Now, I am not the most experienced dev with Web stuff but this is fucking ridiculous.3
-
Angular 2 is really, really satisfying me. Such a very clean and smart way to organize web functionality! And es2015 + typescript is sooo nice to work with.2
-
Constantly feeling like I don't know enough to land a jr. Web dev position. I know html/css/js, I understand the fundamentals of jQuery, I have an early grasp on node and express, and Ive played around with some mongoose and angular. Still, I feel like I'm a thousand steps beyond landing a job. Im about to graduate college in a year and seriously need the money but I have no idea how I'm going to get there.6
-
Got a bad question here. I've got my homepage (login + some archives with access permission) which I made in HTML + php (yeah I know). But I just hate how php looks. So I'd like to rewrite that whole little bastard now using some other language (not php obviously). What do you recommend? Which Lang's/frameworks are being used. I heard python and java spring were good but I wanted to hear the opinion of some real devs I guess. I'm rather a back end dude (c++) but I think it would be useful to learn some web programming too (not interested in fancy animations and shit, just a good ol' single colored site that displays the content)2
-
Received web design PSD version:
- first layer: text
- second layer: text
- ...
- last layer: PNG image1 -
I want to learn app development but, due to some reasons I cannot buy a laptop now. And my current laptop is way too old to support android studio. So I planned to utilize this time to learn web development.
I completed HTML5 and CSS3 and now currently I'm learning JavaScript.
I have made a website which can be used to put emojis in your webpage.
Although, the JS section will be added in further version( after I've finished learning 😅), still it can be used by copy and pasting the cdn and image names.
website link: https://0ishan0.github.io/emojistha...2 -
That moment when full-stack web development suddenly includes troubleshooting the TCP connections on your new listener.
#rememberthatoneclassinundergrad1 -
Well I was in school for web development I chose to take the elective course intro to web as an easy online class. And almost failed an assignment for using css3 for rounded corners and shadowing all because it did not pass validation because it was not standard yet. Shows how little that teacher knew about the industry...... Face palm
-
Web Devs of Devrant, i have a question for you!
How to you efficiently test a website speed?
Sure i know about googles page insight, GTmatrix and all the other "free" testing tools.
But im more interested in a tool i can make run multiple times, and then get a avg (or at least some kind op spreadsheet) showing the time it taken to load - and the different parts.
Say i want a test to run 1 time every 5 min, 20 times - then get data for all those. Any tools that can make such data available to me?
Or should i look at some other tools?3 -
Small warning: The plugin “Web Developer“ was hacked and shows shady ads and does maybe even more in the background. Better disable it for now.2
-
Hey devrant,
Is ASP.NET Core a good web framework to start with. I have no experience with backend web development but I know some C#2 -
"I am really good at web stuff, but I've never heard of python" - guy at university.
Well I'm sure he will go far -
Not really a rant but out if curiosity, what is your favourite text editor for web (so from HTML to JS to anything web) development and why?18
-
I'm sarting to learn web development and back end, but there are many languages that I don't know where to start. What language should I choose to learn first?4
-
Would someone like to review my new website for web development and tech work?
www.thewebnician.com
ToDo
add services via back end(hard-coded in right now)
make it easy to apply discounts
A rating system
add chat to website
add site specs
add a more detailed about page6 -
Wouldn't it just be nice if there was universal browser support and no internet explorer? Web development man
-
Any web developers care to share their file structure when breaking css / pre processed styles into modules? Want to organize but I don’t want to over-do it.1
-
What's your interesting and useful web dev blog that you have subscribed?
I don't like news blog. Prefer an individual developer's or a company's blog where they share their experience, tips, random stuff etc.4 -
If you were to work on pure JavaScript code for local and web development, what IDE would you use? Not a quality question, I'm looking for personal opinions mainly.9
-
Web Developer should not worried much about the older browser and modern browser. If people want to visit today's website without any problem, they should upgrade their browsers.5
-
I've been wondering about the difficulties and security risk of allowing web apps to interact with native functions, such as file management. What would be the difference of letting web apps access native functions, and native apps doing it? I mean, we can already request access to features such as camera and microphone?
-
Best way to get started with web development, especially php? Going to maintain an enterprise application without having any web development experience.2
-
Hey guys i was thinking about learning web development, mainly to make web apps, I already know C# and C++, but web dev looks so much different, can you advice me some good resources to start ?9
-
I've finally entered to a brand new project in Android .. the client wants to show everything in god damn web views1
-
God, I wish I had even 2-3 friends that did web dev. I know a bunch of people on Discord who do rom hacking and fan games, but no web devs. :sad:7
-
*job opening says front end web developer*
*technical exam contains questions they used for the back end/web developer position instead of making a separate one for front end*2 -
Do you guys would be interested by a web application to monitor your servers/network ? A web application only for The IT ?9
-
Hey, I got this new web project, but to be honest I haven’t coded much web in a few years and I’ve heard the landscape changed a bit. You are the most up-to date web dev around here right?
-The actual term is Front End engineer, but yeah, I’m the right guy. I do web in 2016. Visualisations, music players, flying drones that play football, you name it. I just came back from JsConf and ReactConf, so I know the latest technologies to create web apps.
Cool. I need to create a page that displays the latest activity from the users, so I just need to get the data from the REST endpoint and display it in some sort of filterable table, and update it if anything changes in the server. I was thinking maybe using jQuery to fetch and display the data?
read full article at https://hackernoon.com/how-it-feels...1 -
Best experience: Getting my first contract for a major project, and landing a new job with a web agency for the first time!
Worst experience: Underestimating the contracted project, and having to learn while working on the project.
In the end it's all great experience, and reminds you that your always learning on the job. -
Contracting some sports related web apps for the national army.. Couldn't have predicted this kind of projects / clients when started the business some years back. :)
-
Spent like half an hour messing with our web app code crashing on a cryptic error just to discover that a Chrome extension released a buggy version (automatically installed, of course) which crashes all pages using it (there are even some big pages in production being affected like something from atlassian).
Great, just wonderful job guys... -
You know how in cartoons a character will plug leak in a hose, seemingly solving the issue, only to soon find out that because of them plugging one hole, a new one has opened and is making the hose leak again? That’s what web development is like.
-
At a salary of $11/hour, no overtime, is a junior web developer with no previous experience and no personal project undervalued?25
-
Working on a new website for Web Designing and Web Development etc
It's great to work with the team.2 -
Recently shifted from codepen to thimble. Being a person not that into web development, I find thimble more convenient.3
-
What specifications should I look for when looking for a laptop I want to program with? I prefer Windows OS and I'm training to be a web developer.3
-
Enough with this “I’m a full stack web developer but I find JavaScript to hard and demanding to keep up with”. Unless your using typescript which is still remarkably close, half or more of your job will be JavaScript. And sorry but it’s only growing and latching on to everything. It’s a bad time for you refuse to learn it.1
-
!rant
Anybody here working with GE's Predix?
I am nowhere near a webdev and I don't grasp how anything of the web app works. Routing, Polymer, CL, everything's so complicated and has documentation that only tells you 10% -
I heard some of you develop web applications in c# (or think that's a good idea).
Since I like both c# and web a lot, I was wondering: what stack do you use, and how well does that work? Or is it just a pain in the not-to-be-named-rear-end?5 -
!rant
My favorite thing about the new web overhaul is that individual rants don't get truncated in feed view. What's yours? -
Can someone recommend me a good web hosting with a reasonable price/quality ratio that is not AWS / Digital Ocean? Much appreciated13
-
Why is it that most people that reply to feedback/support forms of just about any web site in general are complete dimwits? If they are people, that is. In that case, congratulations! You've just passed the inverted Turing test!2
-
Best website hosting for an dev profolio and subdomains like go daddy, but can support web apps like discourse or ruby?11
-
I do IT support for a Uni.
A ticket comes in about how the site looks weird after an update.
Spend 10 minutes looking through Chrome dev view (we don't have access to backend).
Give up and assign to web team.
... Why do the people who manage the site not know anything about web development? 99% chance it's a just a quick CSS fix. -
Microsoft Web Api:
"you can pick up on some of these implicit behaviours by reading the unit tests for the default model binder."
I don't know what I expected.1 -
@dfox Now, I'm not a web dev (or really a dev of any kind quite yet) but I noticed that your web app doesn't show emoticons properly, making it confusing at times. Is this something you can set up support for on your side, or something I can or should do on my end? (This is on Chrome btw.)4
-
I know Python but never done web-development and needed it for one or two project. The requirement is some data-api and graph. There is flask and django but I'm not sure how should I proceed. ????11
-
hello. i'm a software engineer with about 4 years of experience, worked with c++.
a couple of months ago i started learned web dev, and now i have learned html and css, next is js.
i'd like to ask advice what on how to proceed, what to learn next? should i learn or build something? follow tutorials?
thanks8 -
Long time frustration
My close friend wanted to focus on machine learning and AI. in summer he did some research and figured out it is difficult to get those jobs. Now he is learning Angular 2. And applying for web development.
I am tired of people getting into web just because everything else seems difficult to them.
I just don't like people who think web is easy. And take it for granted.
I know comparing to machine learning Web does have an easy entry level barrier. But tired of devs, undermining web development complexity.
I think world thinks
Web is so easy that you can do it even if you hate it.5 -
So I've been looking at web dev job apps recently and reading over some of the requirements needed and almost every company advertising for a web dev is also wanting a web developer who is also a 10/10 web designer... this proper irks me as after doing a course which helps you ease easily into the web industry being a competent designer wasn't a requirement.
Why is it that to be a web dev now days you need to be also good at designing?1 -
Two years without working on web dev. Planning to build a website.
Any frameworks that i should test?8 -
I'd love to get stickers, but first I need laptop instead of PC :D any ideas for good cheap laptop for web dev? :)8
-
Starting my first development job tomorrow so hopefully week200 I'll still be there with almost 2 years web development experience
-
is it possible to find a password/note manager that is also:
has a user and permission manager;
free/open source;
local (lan only, no cloud);
web based (local web server);
encrypted;
secure;
????8 -
Don't even know how to start. I currently work as technician (fix broken shit devices like apple and manage our servers).
Before the rant, here's a note: I'm a newbie-ish something.. Like I do some Java and Android stuff but nothing amazing (yet).
Here's my rant:
Boss: Hey, you mentioned in your CV that you do some programming.
Me: Yep, but just starting. Already made few apps but nothing crazy big.
Boss: Well, doesn't really matter. But, can you make an app and a website for us? We'll decide on the budget later.
Me: *kinda suspicious* Ehm, yep? I'll just make a wireframe and show you what I came up with.
*few weeks later*
Boss: So how's the app doing?
Me: I told ya that I'm making only wireframe. If you want the app you can:
a) pay for it
b) don't do anything and I'll make it open-source
Boss: No don't do that. We want the source on our FTP server.
Me: Riiight... That's a big no-no for me. It's gonna be on VCS, otherwise you can forget about the app and web.
Boss: *staring silently at me*
Me: ...
To this day, not a single response from him. We had one meeting where I presented the Website and app design, everyone was ok with it but no answer when I asked about the budget. Should I just scrap these projects and continue making them on github ('cuz I kinda like to learn new shit this way)5 -
The web application which I'm making is fucking big for 1 person and suddenly I'm out of sensible variable names :@
-
I am a 3rd year undergraduate and we need to make a web based project. Problem is no one on our team has ever made anything web based or even a simple website before. We need to run some Java code in the backend apart from that we are free to do whatever we want. Any advice on what frameworks to use and what to avoid?
I literally have zero experience on this so any advice is appreciated!3 -
I really love this boilerplate for starting an Angular, gulp, browserify web app. https://github.com/jakemmarsh/...
-
!Rant
Always dismissed tools such as JSBin for no apparent reason. Gave it a go a few weeks ago, and god damn as I love JSBin now. -
Just a legal question here.
Is web scraping legal in USA? I am asking here for the sole reason that I am sure that someone might have developed projects with web scraping.
I've heard that Walmart does it a lot.24 -
Do you think having a basic knowledge and understanding of algorithms can help you in web development. A friend of mine thinks algorithms will not make you a better developer.4
-
I have a big web development requirement from client using java. I have suggested them for using Php/mysql but they dont want it. i am not sure which framework to use in java, whether java can be deployed on AWS, whether java would be as fast as php.
Please share your java web development experience and how do i go ahead.8 -
For a while now I've wanted to make a blog about engineering and discovering different types of engineering (software development, electrical, mechanical, etc). In the blog I'd like to write about journey discovering what kind of engineering I wanted to be, how I got here, and fun projects you can do to see what different types of engineering fields are like. Long story short I want one of those projects to be my process making the blog they're actually reading it on and I have no idea where to start with web dev. Can I get pointers (puns) to resources or frameworks that would be good for beginners?5
-
There are blogs and chrome extensions for Designers, is there any web development blog/extension to update me daily on new tech/info/tricks 🤔6
-
What is better, Career as a web developer or as a software engineer? I am a CS student Are there good jobs for web developers?
Also, let me know which one has more pay scale.
I have go through some blog and resources to find about web development information like this https://squareboat.com/services/... If anyone knows about payscale which is higher, Please suggest me4 -
Looking into web development. For personal use.
I'll be using php and python...
Any tips, like how to organise it, like the layout, currently everything is centralised.4 -
I'd like to make a board game (with cards essentially) with a web technology and take the occasion to learn a new tech.
For now I know pure js, jquery, java servlets, jsp, MVC5 and razor. I would like to learn something lean, new, powerful and useful in a job perspective. Any suggestions?9 -
Anyone having any experience learning with The Odin Project? Or anything like it? Basically a good path for learning web development?
-
As a junior frontend dev should I rather work in a web agency or in a biggee company that needs a frontend dev for their software?
I would really like to join a web agency but it seems like only small agencies with shit conditions would hire me...1 -
Why the hell web designers these days who think they are front end when they can't even tell what does API endpoints means?!
-
its really easier to make a good view by web app than native app .and native app should consider about cross-platform.who can give me a reason to make native app.I need some power to keep on Learning that.6
-
I know this isn't "rant" but I just got myself a Web Summit ticket and I couldn't be more hyped about it!
Any ranters going to attend this year? -
Any web designer who wants to cooperate? I need help with the design of my personal website :/
I will trade design with development :) -
Lately, I've seen in some article against the Electron framework and read some people thought that "the Web, in general, is a waste/curse/..."
Did I miss something somewhere about that? I know Electron has that Java syndrome where it has to pack so many things in one executable while it could be less heavy than this (here, the Chromium browser for instance), but the Web in general?5 -
So noob question, is automated web scraping a thing? What would you do if you wanted to grab the same information off similar sites and store it in a table that can be manipulated later? All you would have to do is enter the web site link after you finished coding it. I've used Chrome web scraping extensions but want a more automated solution.10
-
What I thought:-
Leaning React:- Awesome State Management System. I love Web Development.
Leaning React + REDUX:- Can I be a Web Developer? Should I switch to something else? -
Which is needed more, resolution(1080p/1440p) or refresh rate(60-144hz) for a 27-inch flat monitor? My purpose is web development (Python, JavaScript).14
-
What do you think of Web Standards? (#nomigrations) Seeing that everything becomes more standardized motivates me to learn more web development.6
-
I am a student , and i know only basic web development and i don't know how to enhance my skill in it so that I can start earning , I need money urgently and don't know what to do!4
-
I wish to make most of the terminal with keyboard but again web app development needs constant switching to browser with mouse :/
-
Those who are into web. What do you think is the best web framework? In terms of easy to set up, easy to learn easy to use and general pros and cons?5
-
How to select a tech stack for a web app? 🤔
And I want to avoid big frameworks like react and stuff8 -
Hello, fellow ranters, I have a question for the web developers here.
I decided I want to explore web development but don't know where to start.
I'm assuming the first step would be to learn HTML, but after that? What should I learn?
Thanks in advance9