Someone on the Chrome team deserves a promotion for this web developers |
- Someone on the Chrome team deserves a promotion for this
- I made a Crewmate (or Impostor?) with HTML/CSS
- Yet another TikTok clone for NSFW Reddit videos
- I created this webapp to visualize Life Events
- I created my own Static Site Generator
- A friend died 15 years ago. How is his website still up with all his content?
- Chrome DevTools 87 now supports CSS grid debugging
- I created Lapiz, a small website to generate random ideas to draw
- I made a website called Free-Anonum
- Looking for advice on how to prepare for a specific interview
- i've been sewing things onto sweatshirts recently so i made a site about that
- I built a mortgage payment calculator with React & Chart JS
- [Showoff Saturday] - I created an extended UI for some of the most popular cryptocurrency wallets
- How to figure out x and y coordinates of a mouse click on a website?
- Rendering HTML Client-side or Server-side?
- Portfolio Site with Particle JS
- Storing Directly to DB or Temporary Array?
- A list of macOS customization settings using the `defaults` CLI
- Voice Broadcasting for Website
- Should I go back to work or go back to school?
- Google Map JS API - Render one leg only for a route
- i spent about 7 hours for a stupid mistake, and now i have a lot of worries that i can't make it!
- I have created a CSGO chat that shows users stats
- I'm looking to land a job hopefully in the near future, do you think my portfolio is good enough for a decent Junior position?
Someone on the Chrome team deserves a promotion for this Posted: 03 Oct 2020 11:06 AM PDT
| ||
I made a Crewmate (or Impostor?) with HTML/CSS Posted: 02 Oct 2020 04:04 PM PDT
| ||
Yet another TikTok clone for NSFW Reddit videos Posted: 03 Oct 2020 08:23 AM PDT | ||
I created this webapp to visualize Life Events Posted: 03 Oct 2020 08:58 AM PDT
| ||
I created my own Static Site Generator Posted: 03 Oct 2020 11:27 AM PDT So I've created a new personal website for myself and, instead of sticking with PHP again, I desired a purely static website. This means that I author content as clean & simple Markdown files, define my own HTML templates and then render the content using those templates. Eventually, I came up with my very own Static Site Generator that perfectly fits my needs:
So here it is: The verless Static Site Generator It is in active development and pre-build hooks specifically or themes are coming soon, but the public API already is stable. Maybe it is useful for some of you as well! [link] [comments] | ||
A friend died 15 years ago. How is his website still up with all his content? Posted: 03 Oct 2020 01:25 PM PDT Yes, it's really a crazy friend who died in 2005. No code has been touched at all. This isn't a free hosting company or anything like that, it's a .org domain with an obscure spelling. Do you guys think some reseller bought it and just never got around to changing the content to ads? Does that happen? I'm thinking this has to be the case. Or, weirder possibility, that my dead friend must have paid up for decades in advance. He didn't have a lot of cash but he did have very strange habits and I could totally see him paying for 100 years of hosting even while hungry. [link] [comments] | ||
Chrome DevTools 87 now supports CSS grid debugging Posted: 03 Oct 2020 01:54 AM PDT
| ||
I created Lapiz, a small website to generate random ideas to draw Posted: 03 Oct 2020 02:34 AM PDT
| ||
I made a website called Free-Anonum Posted: 03 Oct 2020 08:07 AM PDT Don't know where to post this, so I'm going to put it here. I made a site that allows anyone to post whatever they please (few rules because common sense) without an account. This is my first public thing I've made, it's for my final project for Social Justice as a sort of experiment on what people will say when they don't have any sort of repercussions for what they say. [link] [comments] | ||
Looking for advice on how to prepare for a specific interview Posted: 03 Oct 2020 02:50 PM PDT I have an interview on Monday and I am not certain on what to do in order to prepare for it. The person interviewing me said that their would be no technical coding section, instead they are asking scenario based questions. This was the skill set asked for in the job posting:
Based off of this information, I do not really know what they are going to be asking in terms of scenario questions. Any advice would be appreciated. This is a museum job, and I would be a junior developer in the creative services department [link] [comments] | ||
i've been sewing things onto sweatshirts recently so i made a site about that Posted: 03 Oct 2020 04:38 AM PDT
| ||
I built a mortgage payment calculator with React & Chart JS Posted: 03 Oct 2020 07:02 AM PDT https://mortgage-payment-calculator.netlify.app/ https://github.com/daveidivide/mortgage-payment-calculator This is my first project using React. I'm in the middle of buying and selling a home and wanted an interactive tool to show me the finances over the term of the mortgage. Something I'm considering adding next is an overpayments calculator to see how much you can save over the term by paying less interest. I likely won't though as it's just more maths and I'd rather do something which is more React focused. Any feedback welcome! Things I've learned:
[link] [comments] | ||
[Showoff Saturday] - I created an extended UI for some of the most popular cryptocurrency wallets Posted: 03 Oct 2020 09:24 AM PDT
| ||
How to figure out x and y coordinates of a mouse click on a website? Posted: 03 Oct 2020 04:28 PM PDT I know nothing about coding im simply a novice. Trying to get x and y cordinates on my site. [link] [comments] | ||
Rendering HTML Client-side or Server-side? Posted: 03 Oct 2020 07:09 AM PDT I an currently evaluating whats the best strategy to render dynamically loaded content. With dynamically loaded content, what is the best way to render the html? I'm not talking about the initial page load, but content that gets loading asynchronously, for example a 'load more posts' feature or pop-up windows etc. One technique could be to load the raw json content from the server and generate the html on the client with a template. Or you could render all the html on the server and just append it to the page on the client and maybe enhance it with interactivity afterwards. What do you guys think? And if you have similar cases, how do you handle this? [link] [comments] | ||
Portfolio Site with Particle JS Posted: 03 Oct 2020 11:54 AM PDT A few weeks ago, I made this post and got some great feedback. Now I have updated my site and I hope it is much better! My Site: https://cameronthompson.io [link] [comments] | ||
Storing Directly to DB or Temporary Array? Posted: 03 Oct 2020 03:12 PM PDT Hi there! I'm currently working on a exercise App in React that allows users to create and store exercises into a database but I'm a bit stumped as to how to go about it. Each exercise will have the fields exerciseID, exerciseName, duration, restInterval associated with it. I want to give users the ability to edit and delete workouts freely before they finally save the workout and add it into the database. If I do that however, I'll have to create a temporary array or something but that poses a few problems. Each exerciseID should be unique. If I do this, I will have to use React to generate a uniqueID but I would have no idea if the ID is truly unique unless I am able to compare it with all the other exercise IDs already in the database. If I don't create a temporary array to store the information temporarily however, I would have to constant UPDATE values that get stored to the database needlessly. I'm not exactly sure what I should do in this case and would like some advice! Thank you! [link] [comments] | ||
A list of macOS customization settings using the `defaults` CLI Posted: 03 Oct 2020 08:50 AM PDT
| ||
Voice Broadcasting for Website Posted: 03 Oct 2020 02:36 PM PDT Hey guys, I am trying to make a website that has option of voice broadcast where I can speak live to users. This would be only 1 sided communication, meaning only I would be speaking and users can only listen, kinda like a radio. Now i know there are websites like mixlr etc which do radio like streaming service but I am looking for something that only users logged onto my website can listen to. For example if i add a widget from mixlr, anyone with a widget link can go directly to mixlr and listen to broadcast which is an issue and I don't want that. Any help would be appreciated. Thank you! [link] [comments] | ||
Should I go back to work or go back to school? Posted: 03 Oct 2020 02:32 PM PDT I've worked in web development for around 5 years but due to some life stuff I have a pretty sizable gap in my resume (6 months). I've had a hell of a time finding a job despite having pretty significant skills (haven't even gotten one interview.) I'm thinking about finally going back to school to finish my CS degree but with my experience is that just pointless? Should I just keep looking for work? [link] [comments] | ||
Google Map JS API - Render one leg only for a route Posted: 03 Oct 2020 02:08 PM PDT Hi, so i'm developing a JS webapp with Google Maps API. For other reason, i have to calculate the distance from A/D to B, B to C and C to A/D (please check the next image). But, on the map, i have to render ONLY the second leg (legs[1], B to C). (check the image for more info) This is my JS: What can I do to hide the first and last leg of my route? Of course, I could do another request, one for the map, one for the calculations, but i'm trying to be as efficient as possible. Thanks to you all [link] [comments] | ||
i spent about 7 hours for a stupid mistake, and now i have a lot of worries that i can't make it! Posted: 03 Oct 2020 02:04 PM PDT so i am following the fullstackopen.com course. for about three weeks (i'm doing one 'part' every week) the exercise i tried to solve was about printing some kinda of message if the user wanted to update a phoneNumber that doesn't exist (was deleted in another session (tab)) in the phoneBook. all i had to do was to update the state inside (.catch), but i was going around doing "if" and "else" every where and try to update the state in another component and over complicate the thing. i even posted my question two times before someone helped me (the irony is that i get the answer in the first one after posting a second) i knew that webDev is hard, but i'm starting to worry that i will not get job if i get stuck in a Async problem. i thought that i know enough so that i will have a steady progress in learning, but today i was proved wrong ps: it's 10pm and i am really happy that i get this thing fixed so i can sleep well. but i'm also afraid to face another big BUG Xd [link] [comments] | ||
I have created a CSGO chat that shows users stats Posted: 03 Oct 2020 05:00 AM PDT I'm really proud of this project and i count it as a big achivment, i'm fully self taught and i'm just a 16 year old, so this is why i count this as a big achivement. I would like some critics for my project, so here is the link to my github repo: https://github.com/dcadarko/CS-GO-chat- [link] [comments] | ||
Posted: 03 Oct 2020 02:54 AM 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