[Showoff Saturday] I made a progressive web app that lets you generate matching themes for your editor/IDE, terminal, Slack, and desktop wallpaper web developers |
- [Showoff Saturday] I made a progressive web app that lets you generate matching themes for your editor/IDE, terminal, Slack, and desktop wallpaper
- [Showoff Saturday] I made a VS Code extension that lets you copy snippets of code multiple times and paste them separately in your workspace
- [Showoff Saturday] Made a web game with Vue where you guess your location based only on StreetView imagery
- [Showoff Saturday] I made an Uno browser game (eights.io)
- [Showoff Saturday] BadTranslator - A thing I made where you can translate a text through multiple languages and back. Like in "Chinese Whispers" or the game of "telephone" but completely free of any human interactions ;) (Link in comments)
- [Showoff Saturday] - A simple image recognition online based on Amazon AWS (imagerecognize.com)
- [Showoff Saturday] I made a website to help you be more consistent.
- [Showoff Saturday] DaaS - forget about downloading .ZIP files when you work with themes and templates. We created cloud management for the Design, Plugins, Styles that you use in web projects. We want to change the way people work when they download ZIP files with Themes/Templates/AdminDashboards.
- [Showoff Saturday] I too made a basic reddit browser that looks like Teams, while bored in a meeting. The link can be added as a website tab within Teams to complete the disguise.
- Future for web developers
- Linkdash - Generate a handy dashboard of links in seconds!
- Learning community for web development - Coding With Friends
- [Showoff Saturday] I made a illegal drugs price index app, powered by crowdfunding info
- [Showoff Saturday] I've started a series on YouTube where I will take all of the crazy suggestions that you guys give me when it comes to web design, and I will try and code them - it can literally be anything. For the first episode I made this MacBook Pro is pure SCSS.
- Is it possible API requests that work on localhost don't work via Cloud Functions?
- [Showoff Saturday] Built Portfolio site to prep for a new job search - feedback is highly appreciated!
- React Tabulator demoReact Tabulator: a simple yet powerful table component with many advanced features.
- Texas Holdem game that I've been working on
- How can I setup a counter for wildcard items in Postgresql?
- droplet backup scripts
- [Showoff-Saturday] Made a quiz-maker app where you can create and take quizzes.
- [Showoff Saturday] I made a CI that runs on your own computer (EC2 instance, VM, your own PC) via SSH, small an simple, working on some more features
- [SHOWOFF SATURDAY] Extension that extends chrome inspector with your own project tools. ⚒��
- Server security
Posted: 11 Apr 2020 09:44 AM PDT
| ||
Posted: 11 Apr 2020 12:19 AM PDT
| ||
Posted: 11 Apr 2020 07:16 AM PDT
| ||
[Showoff Saturday] I made an Uno browser game (eights.io) Posted: 11 Apr 2020 01:10 PM PDT
| ||
Posted: 11 Apr 2020 02:50 AM PDT
| ||
[Showoff Saturday] - A simple image recognition online based on Amazon AWS (imagerecognize.com) Posted: 10 Apr 2020 11:54 PM PDT
| ||
[Showoff Saturday] I made a website to help you be more consistent. Posted: 11 Apr 2020 10:55 AM PDT
| ||
Posted: 11 Apr 2020 11:24 AM PDT
| ||
Posted: 11 Apr 2020 11:01 AM PDT
| ||
Posted: 11 Apr 2020 03:59 PM PDT In late 2019, I decided to change career paths, since I have always had an interest in computers, I decided to dip my toes into web development. Since everyone and their dog takes a CS course, I decided to do the non traditional way and learn on my own. This is more about challenging myself, than saying school is for losers, because honestly I would rather be in a classroom. I've been going hard learning the basics of HTML,CSS, and just starting to get into JS fundamentals which is quite the doozy. The goal is to get into the front end with a company, then be able to train on the back, it seems far fetched because I see a lot of roles requiring full stacks. I kind of hit a wall because, I see some depair in the future, as I know a lot of companies are using bootstrap, or other 3rd party sitebuilders to make their own websites. Will this be a dying career eventually taken over by companies that can just do it themselves without requiring a dev? With tech growing so fast, and new site builders popping up, I fear the front end dev's job will become obsolete. I am looking for some glimmer at the end of the tunnel, because I don't want to waste all this time/money for nothing and end up not getting a job due to lack of demand or being overly saturated. I also assume the best thing to do would be to fully study for the end goal, then apply. I want to know what current or other prospecting web devs think about the future outcomes in the career, and any motivation to keep going is appreciated. Thank you. [link] [comments] | ||
Linkdash - Generate a handy dashboard of links in seconds! Posted: 10 Apr 2020 06:18 PM PDT
| ||
Learning community for web development - Coding With Friends Posted: 11 Apr 2020 01:44 PM PDT Some of us on Reddit put together a learning community or web development. We recently lost out server and had to remake it so I'm trying to get the word back out there for anyone who was on it and has no way to contact us other than the Discord. It's the same server from this post and this post from u/Banana_burgler. We're focusing on front end for now but we'll eventually move to full stack. We're trying to more or less follow an FreeCodeCamp curriculum as a group so we can keep each other accountable. There are definitely some people that are doing their own thing too but like the community. Here's the invite link, it expire's in a day so PM me if you need it after that! [link] [comments] | ||
[Showoff Saturday] I made a illegal drugs price index app, powered by crowdfunding info Posted: 11 Apr 2020 11:16 AM PDT
| ||
Posted: 11 Apr 2020 07:27 AM PDT
| ||
Is it possible API requests that work on localhost don't work via Cloud Functions? Posted: 11 Apr 2020 01:00 PM PDT Hey all! I am accessing a private API at I am using I have uploaded the same function to Is it possible this is a CORS problem? The web browser is accessing my own resource- it's the cloud function making a call to the external API, and sending along appropriate headers too. Any ideas? Thanks! (If I were to set up a linux box somewhere, it could access that external api as localhost, same as is currently working on my dev machine. It could then dump the results to a file, and expose that as JSON to the internet, for my app to then consume. But that's convoluted.) [link] [comments] | ||
Posted: 11 Apr 2020 10:44 AM PDT
| ||
Posted: 11 Apr 2020 12:54 PM PDT
| ||
Texas Holdem game that I've been working on Posted: 11 Apr 2020 04:32 PM PDT
| ||
How can I setup a counter for wildcard items in Postgresql? Posted: 11 Apr 2020 04:13 PM PDT What I mean is this. Say there's a user named Steve and I want to have a counter for the fruit he buys. Every time he buys another fruit the counter would increment by 1. Another scenario is a simple binary question which could be like did he use a credit card or no. I originally used Mongo for this so the schema would simply look like this. So if he buys another pear, the pear value would just increase to 4. I don't want to have a column called Apple and another for Orange and another for Pear, etc and have them initially set to 0 and increment as it goes along since there's a lot of fruits that Steve could buy. How would I setup the table so that I can easily from my backend just increment the value of pear if a user was to buy a pear, and if the user was to buy a Dragonfruit, it would get it's own value of 1. Keeping it short and sweet (like having a counter in my mongo example) is preferred since there could be hundreds of users buying hundreds of fruits and other things, and storing the name explicitly could be very big in terms of size. Thanks! [link] [comments] | ||
Posted: 11 Apr 2020 04:11 PM PDT hi all, in the last few months i started taking over several new projects, many of them hosted on droplets. i already activated snapshots for them but i want something more offsite that helps me sleep better. does anyone know of a backup software that can be configured to backup the www content and mysql database on these vservers and pass data the data zipped over ftp to another server via ftp for example? i already looked around, but nothing really fits. before i start on a python script that can be deployed to these machines i wanted to hear if there may be something quicker. thanks! [link] [comments] | ||
[Showoff-Saturday] Made a quiz-maker app where you can create and take quizzes. Posted: 11 Apr 2020 04:10 PM PDT I made an app where you can create quizzes and take quizzes created by other users. It's a bit empty right now, though. Built with NextJS and SCSS on the frontend; NodeJS and Mongoose on the backend. I tried integrating facebook login, but I couldn't get it to work. Here's the link: https://quiz-maker-fe.now.sh/ frontend source: https://gitlab.com/augustnejudne/quiz-maker backend source: https://gitlab.com/augustnejudne/quiz-maker-backend [link] [comments] | ||
Posted: 11 Apr 2020 12:23 PM PDT
| ||
[SHOWOFF SATURDAY] Extension that extends chrome inspector with your own project tools. ⚒�� Posted: 11 Apr 2020 01:56 AM PDT
| ||
Posted: 11 Apr 2020 11:36 AM PDT I often see posts like "language (X) is more secure than language (Y) for web applications (backend)" what do you think? am i missing something?? how is a language more secure.. thanks in advance. [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