Mike Sherov notes that jQuery usage is officially on the decline, and says we owe the project a debt of gratitude web developers |
- Mike Sherov notes that jQuery usage is officially on the decline, and says we owe the project a debt of gratitude
- Is there a cracking the coding interview book but solely for front end stuff?
- To the person(s) responsible for... Misplacing... The DNS bindings for Facebook:
- I enrolled in Angela yu webdev bootcamp , struggling with discipline anybody that wanna partner up ?
- Is it possible to view the original JavaScript files from other websites?
- Anybody have experience debugging websockets?
- Are hidden form honeypots remotely useful anymore?
- ct.css – Let’s take a look inside your <head>
- Entry-level/junior web developer resume critique
- Selenium Alternatives to Fill in Your Top Testing Gaps
- Parcel development server replaces elements with random screenshot?
- Starting a new job today. They asked me if I was well equipped or if I needed anything. What should I ask for ?
- Web3 Architecture and How It Compares to Traditional Web Apps
- Learned using grid today. Am I missing something here, why isn't everyone using grid 90% of the time? seems so easy, and redesigning looks like it is a breeze. Is there some secret reason most people don't use it I am not aware of?
- In simple terms (for a noob), what would it take to aggregate all of my social media accounts into a chronological stream on my personal website?
- Is there a more straightforward way to pass variables from the server to the client?
- WebDev TIFU two only two sites that I’ve made.
- Seeking for PP partner
- How To Build An Expandable Accessible Gallery
- How would i host a video online and be able to access it as an .mp4
- Private sector Vs public sector
- Company's project source code is huge
- Just a reminder backup your repo if you can!
- Where does Flask fit in among frameworks like Angular, React, and Vue?
Posted: 04 Oct 2021 06:03 AM PDT | ||
Is there a cracking the coding interview book but solely for front end stuff? Posted: 04 Oct 2021 12:53 PM PDT I am enjoying this book but was wondering if there was an equivalent more tailored to front end interviews. [link] [comments] | ||
To the person(s) responsible for... Misplacing... The DNS bindings for Facebook: Posted: 04 Oct 2021 03:44 PM PDT Or anyone that has smarts about hosting etc. How does this happen? How do you fix it? Have you been fired, out of a cannon, into the sun? I only use 1 of the 3 downed services personally, but i know some peeps who lost a fair amount of money on the digital marketing aspects of the API's not working, and i am genuinely interested in what actually happened since articles online have varying stories ranging from an "oopsie" to "the lizard overlords are here to collect our souls". [link] [comments] | ||
I enrolled in Angela yu webdev bootcamp , struggling with discipline anybody that wanna partner up ? Posted: 04 Oct 2021 12:52 PM PDT I struggling doing the course regularly so if you are the same or looking for a partner or buddy Or you also started and struggling hit me up We will be in this together [link] [comments] | ||
Is it possible to view the original JavaScript files from other websites? Posted: 04 Oct 2021 01:03 PM PDT I'm learning Chrome Dev tools and I know it is possible to unminify files by clicking '{}' or 'Pretty-print'. However, after doing so, all the variables are one letter characters and the code makes little sense. Is it possible to view the original Javascript code? [link] [comments] | ||
Anybody have experience debugging websockets? Posted: 04 Oct 2021 02:38 PM PDT I have a weird issue that I am trying to debug that is driving me crazy. My websockets for an app I am working on work perfectly on localhost, but in production they don't work. What is weird is I tried testing with Postman (you can use postman to test ws now) and it seems to be working. I tried asking my question on Stack Overflow but haven't gotten anything helpful yet. Anybody experienced anything like this before? What are some common things I should look for? By the way all the code is open sourced [link] [comments] | ||
Are hidden form honeypots remotely useful anymore? Posted: 04 Oct 2021 08:21 AM PDT Is it still worth making hidden HTML fields to try and catch bots? Or has this been ineffective for some time now? I feel like there's a chance it will just tie up legitimate users, and not do much to stem attempts to spam a form. Thanks! [link] [comments] | ||
ct.css – Let’s take a look inside your <head> Posted: 04 Oct 2021 08:51 AM PDT | ||
Entry-level/junior web developer resume critique Posted: 04 Oct 2021 03:30 PM PDT Hello, I'm trying to make a great resume as I'm graduating from my university soon and I'm looking to transition out of QA. Any suggestions would be appreciated on improving what I currently have for my resume. I'm not sure if I worded some parts the greatest. I do still need to add a link to my personal portfolio that would contain my github link. Thanks! [link] [comments] | ||
Selenium Alternatives to Fill in Your Top Testing Gaps Posted: 03 Oct 2021 11:49 PM PDT
| ||
Parcel development server replaces elements with random screenshot? Posted: 04 Oct 2021 01:38 PM PDT
| ||
Posted: 04 Oct 2021 05:28 AM PDT Hey fellow redditors! I just got a new job and I start today. Last Thursday, they sent me an email:
Now thing is, I do have an ergonomic chair and a recent Mac (Macbook Pro 13" 2020 intel chip), two monitors and a raising desk. I am BEYOND comfortable working from home. I was wondering if it would be ok to ask for nothing else than a "work" computer and a "work" tablet such as MacBook pro and an Ipad Air ? I'm quite shy when it comes to seizing these opportunities. Would it make sense to ask for what I really want/need ? Or is it too much ? EDIT2: I'm not sure if I'm comfortable working from a personal computer.. EDIT: Also have a great keyboard, mouse and deskmat. For music, I have a sound system so no need for headphones. [link] [comments] | ||
Web3 Architecture and How It Compares to Traditional Web Apps Posted: 04 Oct 2021 01:06 PM PDT
| ||
Posted: 03 Oct 2021 05:35 PM PDT Here is a link to a basic grid tutorial: https://youtu.be/68O6eOGAGqA?list=LL and then she does another tutorials two using cards (one of which do not use media queries) in her channel somewhere. basically the tutorial link ends up with: "for desktop": .container{ grid-template-columns: 1fr 1fr 1fr 1fr; /* I think you can also just use repeat(4, 1fr) */ } "for mobile if using media queries method": media only screen and (max-width:550px){ so lets say for some unknown reason the client wants to swap content1 with content3, it is literally just a matter of swapping them in the css like: from: "sidebar content1 content2 content3" to: "sidebar content3 content2 content1" with no need to go change anything in the order in the html, right? It also makes it so easy to make stuff responsive. This isn't like its some new hyped technology/library/fad etc, just a different way of laying things out, but it looks so obviously superior to just using a bunch of flexbox everywhere and then getting overlapping problems along with tons of responsive problems. Is there a pragmatic reason the majority of people don't use grid I am unaware of? Or do people simply like to stick to what they know and therefore never bother trying to do things differently? [link] [comments] | ||
Posted: 04 Oct 2021 11:58 AM PDT YouTube, Twitter, Instagram, Evernote, blog posts, Reddit, SoundCloud, Snapchat, Facebook, etc. [link] [comments] | ||
Is there a more straightforward way to pass variables from the server to the client? Posted: 04 Oct 2021 03:25 PM PDT Hi! I'll start off by saying that I'm not interested in deploying a framework: My back-end needs are exceedingly slim and my intentions are very simple. Whatever the framework would do, I intend to accomplish myself more directly. So if you only know how to develop while relying on a framework, then there may not be much to say. I've got a method of human validation running on my site. I don't want to get into the weeds on how it works, but it's a simple method of steganography sustained across the website that relies on a changing validation prompt on the form. As part of this, I rely on some server-side code that creates values to determine a little bit of dynamic content, what question the user is asked, and then signs them in a way that is time-sensitive. Essentially I send four values to the client to tell them how to tweak the HTML, and then expect them back as part of verification. As it stands now, I have JavaScript that sends an HTTP request to a CGI file, interprets what is sent back, changes the validation question, then sets hidden fields in the form that are checked with the form processing CGI file. These are then sent along with the POST to be verified. The pertinent HTML and JavaScript appear below. My specific questions are as follows:
Thanks to any who helpfully reply! In the form's HTML: At the top of my javascript: [link] [comments] | ||
WebDev TIFU two only two sites that I’ve made. Posted: 04 Oct 2021 03:15 PM PDT Hello you sexy souls of the internet o/ This is partially a rant, partially a today I fucked up. I'll try and keep this concise as I still have to go recover from what I just did and I know I'm far from where I wanna be. I'm a junior dev and have been at it for about 3-4 months. I've yet to be employed by a company accepted for a freelance project, though i've had an interview here and there through cold applications. (this'll come back round) Initially I made my first website "portfolio" in Wordpress hoping it'd get me somewhere before digging into code, though quickly realized I should've coded my portfolio. A few unfinished projects later I finally "finished" my portfolio site, though I had two simple issues: 1.) The email functionality was being blocked by CORS policy due to blah blah that part doesn't matter. 2.) The site was hosted in AWS though the domain/plan I purchased on host gator wasn't connected to it. This was my actual portfolio site which also linked to the initial blog site I made in Wordpress. At any rate I had no projects or blog posts uploaded yet since I wanted full functionality before I dug into project and content creation. So we have my blog site and portfolio site right? Well… Somehow I ended up trying to solve my email/domain issue by connecting the portfolio site to the new secured purchased domain, though SOME-FUCKING-HOW ended up with the portfolio site being hosted on the Wordpress domain. Now my Wordpress link brought me to my portfolio, and my portfolio still didn't work unless put on a local server. Trying to remove the added portfolio site files then made my Wordpress site give me the ol' error 403 & 404 depending on the link I use. I then removed everything to do with the portfolio and am now stuck with a still local hosted portfolio containing blog links that now go to a scuffed 403error Wordpress site, an email form that doesn't work, and potentially have erased the only online presence employers can see. I don't live in the best household, and desperately hope that every email notif is finally my chance to break into the industry. Though now it feels as if I've been set back due to the simplest hiccup while trying to solve an error most others could finesse in an hour. Also broke/unemployed so I see this as a slap to the balls in terms of my potential financial freedom. TLDR: Portfolio = Peanutbutter Blog = Chocolate Mixed them joints together on hostgator trying to fix a problem and ended up making a shit sandwich. [link] [comments] | ||
Posted: 04 Oct 2021 11:28 AM PDT Hi folks! [link] [comments] | ||
How To Build An Expandable Accessible Gallery Posted: 04 Oct 2021 08:50 AM PDT
| ||
How would i host a video online and be able to access it as an .mp4 Posted: 04 Oct 2021 02:32 PM PDT I need a web platform that i can get a link like: https://site/hdhsjsj/jsjjs/bajd.mp4 and save the files there. This is for a media player i built but will only take mp4. [link] [comments] | ||
Private sector Vs public sector Posted: 04 Oct 2021 10:09 AM PDT I'd welcome your opinions on web development in private sector Vs public sector My experience is that if you want the latest and greatest, you go private. Majority of public sector sites I've worked on are in some deprecated PHP version or using Classic ASP. In the private sector you tend to have source control, decent hardware and opportunities for learning. [link] [comments] | ||
Company's project source code is huge Posted: 04 Oct 2021 03:08 AM PDT Junior Dev here. I started my first job a couple weeks ago (working for the biggest tech company in vietnam) and I just got to see the source code for the current project. It's an oil company in the US. The code must be millions of lines long. It's insane and I feel a bit overwhelmed. Theyre going to give me some dummy tasks tomorrow to get me used to the process. I believe it will just be some reactive forms. But I'm insanely nervous. I read a lot of code when studying and prepping for the job, but none this size. It's also Angular so there are so many god damn files. Has anyone else been through this before? Any suggestion? I'm working remotely right now due to covid but that will change in a month. This makes it a bit more difficult to ask for help too. Also the language barrier with my vietnamese colleagues doesn't help (though their English is fairly decent). [link] [comments] | ||
Just a reminder backup your repo if you can! Posted: 04 Oct 2021 12:47 PM PDT Look, I am a dum dum and I was tring to remove some data I added that shouldn't be in my github repo, so I was using I think you can understand what happened learn from my mistakes please clone your repo or something, please don't lose it! PS. don't worry, I recovered my files, turns out I hadn't pushed it through so I went to github and got all my files back! [link] [comments] | ||
Where does Flask fit in among frameworks like Angular, React, and Vue? Posted: 04 Oct 2021 12:31 PM PDT Flask can be used to develop webapps just like Angular, React, and Vue, so I'm wondering why it's never mentioned in any discussions where the latter 3 are compared to each other. [link] [comments] |
You are subscribed to email updates from webdev: reddit for web developers. To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google, 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States |
No comments:
Post a Comment