Learn something new about JavaScript everyday in less than 1 Minute web developers |
- Learn something new about JavaScript everyday in less than 1 Minute
- How do you design a website as a back-end developer?
- 10 New CSS Features You Might Not Know About (2021 Edition)
- Working remote in Europe
- Sup. A micro page for content creators.
- Tech behind 'Learn Coding' UI in websites
- Is web development software development?
- Image/media hosting services?
- clayoven - a beautiful website generator aimed at math-heavy sites
- Quick question about how to organize data in DB
- javascript+plotly.js question: how to fetch csv to javascript arrays? (for datetime ordering)
- Business concerns
- Advice on how to defend my website project from hackers
- Create Beautiful PDFs from HTML (trending on Hacker News)
- Web push notification test site
- Trying to sort different columns using JavaScript. It goes faulty when sorting numbers
- Quickest way to store some data with minimal effort?
- React youtube player keep track of user skipping in video.
- As a studying web developer aiming to become a full-stack developer - should I make my project with custom CSS or is it OK to use packages such as bootstrap, semantic, etc?
- Amit sheen is awesome #css_only
- Power of CSS #css_only @davidkpiano
Learn something new about JavaScript everyday in less than 1 Minute Posted: 04 Apr 2021 05:20 AM PDT I have a youtube channel called ProgrammingWithYash where I publish a short JavaScript tutorial every day. My goal is to teach a common pattern or technique in under 60 seconds. I try to be respectful of the viewers time and make the videos terse and clear with as little unnecessary fluff as possible. The content is mostly aimed at beginners, I hope it can help some of you to get into the habit of learning something new every day. As I'm just starting out with this youtube thing, I'd love to hear your feedback regarding the format, content, anything... (topic suggestions are highly appreciated as well). [link] [comments] | ||
How do you design a website as a back-end developer? Posted: 04 Apr 2021 01:22 PM PDT I am a back-end developer and I sometimes help out on the front-end but none of that involves designing and building the templates. I am trying to build a couple of websites for myself and I am getting design inspirations from Dribble and Awwwards but I always get stuck in how I can translate those beautiful designs into a functional website. Is there any way, trick, or service that you guys are aware of out there that I can use to create the templates without knowing much of web design standards and trends? [link] [comments] | ||
10 New CSS Features You Might Not Know About (2021 Edition) Posted: 04 Apr 2021 05:34 AM PDT
| ||
Posted: 04 Apr 2021 10:13 AM PDT Hey everyone! I was wondering how does it work if for instance you live in a country from the EU and want to work remote in another country. Let's say you live in Portugal just for the sake of an example, and get an offer to work remote in Germany. How does the entire thing work? Where do you pay taxes? Where do you enjoy benefits? Is this even possible (I'm under the impression it is)? Please let me know if anyone is doing this and if it's a good idea. [link] [comments] | ||
Sup. A micro page for content creators. Posted: 04 Apr 2021 07:13 AM PDT Sup! I've been working on a little micro page platform for anyone to seamlessly share unlimited links in one place over at supits.me Setting up a Sup page can be done within seconds and there are a couple of clean design options to customize your header, background and buttons. As of yesterday I've also added a component library to easily drag and drop components on your page like YouTube embeds, Twitch embeds, an Ask Me box and more to come. Sup is free for everyone and the first couple of names have already been claimed. We're currently still in beta and appreciate every kind of feedback we can get, especially in these early stages. In a couple of months we will change our release cycle to once a week, but during the beta we're rolling out features more rapidly. Some upcoming features are:
I'm aware that these web apps exist, but they al have some sort of pricing. Sup is free for everyone. And I find it a fun little project during the times we're all in. Example pages: https://supits.me/sup If you're interested, check out https://supits.me and get started for free! And if you have any questions, suggestions or feedback, let me know! :) Happy Easter! 🤙 [link] [comments] | ||
Tech behind 'Learn Coding' UI in websites Posted: 04 Apr 2021 10:56 AM PDT Hi everyone, I didn't see an /r/askwebdev subreddit on the sidebar so I hope it's ok to post a question here. How do websites create the code box for inputting code and returning the query, e.g. like on W3schools? I googled this a tad, mostly with reference to python because that's what I'm familiar with, with little luck. Would this sort of website be highly susceptible to SQL injection attacks? I imagine they're using multiple databases? Thanks! [link] [comments] | ||
Is web development software development? Posted: 04 Apr 2021 03:47 PM PDT Is there a fundamental difference between web development and software development? [link] [comments] | ||
Posted: 04 Apr 2021 11:41 AM PDT Hey everyone, I'm currently developing a small business website for a client and was debating on either storing images on my own server or using a 3rd party API for that. I've never really worked with third party hosting services other than S3 so I just wanted to know which services you guys recommend? I really only want to use it to store and retrieve images (even after directly uploading it). Thanks in advance! [link] [comments] | ||
clayoven - a beautiful website generator aimed at math-heavy sites Posted: 04 Apr 2021 11:45 AM PDT
| ||
Quick question about how to organize data in DB Posted: 04 Apr 2021 09:36 AM PDT Hi, I'm doing a personal project to try and get back into DBs and data modeling, things I haven't touched for almost 10 years (and even back then I was very junior at it). I'm intending on taking online classes but I was hoping to get a quick answer to this particular case, just to get me started. My project is : I have a fictional city full of supernatural beings as an RPG setting. I'm populating the city with NPCs. These characters can be one of many "races" (vampire, werewolf, mage, fairy, demon etc). Each "race" has its own social structure : vampires are organized by clans and then by sects. Mages have traditions and then a looser "affiliation", and may or may not belong to a sub-tradition. Fairies have "families" but also belong to a court, and then may or may not also belong to a noble house. And then each within their hierarchy, characters may or may not have a title, and this title can mean different things for different races : for some it's a nickname, for others it's an official position. I'm just mentioning all this to illustrate how different each character can be, and I'm expecting my DB modeling will have to be very flexible in that sense. With all that in mind, I'm wondering how I should organize the different kinds of "affiliations" in a SQL DB. Here are the different approaches I can think of : - The "Wordpress" approach : I make one big table called glossary, containing all the possible terms, and each term has one column race_id and one column category_id, and then I make another table glossary_categories and then another table races and work with foreign keys. I would also expand this table to eventually store the different attributes they can have, their different powers, etc. That table could become quite massive indeed. - I make tables vampire_clans, vampire_sects, vampire_titles, mage_traditions, mage_titles, etc etc etc for all the kinds of categories I need. That would make a LOT of tables, but the information would be super organized and unambiguous (but maybe less scalable). - A mix of the above : I create different tables for each race, or different tables for each category. For instance I'd have vampire_social, vampire_powers, mage_social, mage_powers etc. So the data would be partly organized by "theme". As things are, I can't think of a reason not to go with the "Wordpress approach", other than it would result in one massive table and it somehow feels wrong to me. But to its defense, it would make it scalable if I were to, for instance, add a new race, or add a new attribute for an existing race. I'm curious how others would go about it. Thanks for your input ! [link] [comments] | ||
javascript+plotly.js question: how to fetch csv to javascript arrays? (for datetime ordering) Posted: 04 Apr 2021 08:24 AM PDT
| ||
Posted: 04 Apr 2021 03:01 PM PDT I was contemplating on learning web development or putting that time towards something else. Let's say I needed to create a website for my business would I just be better off paying a guy on Fiver $100 - $200 or learning web development myself and making the website. Time is really the leading factor here money is second. I just wanna know if web development will be a valuable skill later in the business or outside. [link] [comments] | ||
Advice on how to defend my website project from hackers Posted: 04 Apr 2021 02:58 PM PDT Does anyone have detailed advice on how to protect my nearly complete website from hackers (once launched) and protect the personal information of my customers. Thanks. [link] [comments] | ||
Create Beautiful PDFs from HTML (trending on Hacker News) Posted: 04 Apr 2021 02:10 PM PDT | ||
Web push notification test site Posted: 04 Apr 2021 01:11 PM PDT Hi ! Is there a site where i.e. have a button "send notification in 5 seconds" and i can see if they work, even if the browser is closed ? Thx ! [link] [comments] | ||
Trying to sort different columns using JavaScript. It goes faulty when sorting numbers Posted: 04 Apr 2021 12:49 PM PDT Code for sorting when clicking on a column:
How can I make this sort numbers too? [link] [comments] | ||
Quickest way to store some data with minimal effort? Posted: 04 Apr 2021 06:41 AM PDT Edit: Without a server. My websites are on Netlify. Hey guys, I'm looking for an extremely simple and fast way to dump some basic data coming from a website (literally just a couple numbers) I'm trying to find a good solution when I need a database for a quick thing like this, for now and in the future. I'm thinking something as simple as Google Sheets, Airtable, Replit's Database feature, etc. What other solutions are there that are this simple and require very little work? [link] [comments] | ||
React youtube player keep track of user skipping in video. Posted: 04 Apr 2021 12:28 PM PDT I want to keep track of when the user plays and pauses and skips in the youtube video. Currently looking at two libraries react player and react youtube. Both of them have callbacks for play and pause but they don't have any props or callbacks or method to check if the user skipped. If you have any idea on how to implement something like this. Please help [link] [comments] | ||
Posted: 04 Apr 2021 02:44 AM PDT Is it worth putting into the time to make all CSS custom, or is it fine working with CSS packages? [link] [comments] | ||
Amit sheen is awesome #css_only Posted: 04 Apr 2021 03:22 PM PDT | ||
Power of CSS #css_only @davidkpiano Posted: 04 Apr 2021 03:21 PM PDT |
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