• Breaking News

    Saturday, July 11, 2020

    I made a site with 550+ Free open source fully customizable SVG icons. web developers

    I made a site with 550+ Free open source fully customizable SVG icons. web developers


    I made a site with 550+ Free open source fully customizable SVG icons.

    Posted: 11 Jul 2020 08:58 AM PDT

    Youtube Clone (Postgresql + React + Express)

    Posted: 10 Jul 2020 07:23 PM PDT

    Amazing CAPTCHA on lichess.org

    Posted: 11 Jul 2020 07:53 AM PDT

    Squircley | Squircle Maker

    Posted: 11 Jul 2020 12:02 AM PDT

    Update: Made significant updates to my game Cards of Personality, a unique way to play Cards Against Humanity with friends remotely!

    Posted: 11 Jul 2020 05:55 AM PDT

    Caek day project - color blender

    Posted: 11 Jul 2020 03:05 AM PDT

    [Showoff Saturday] Yet Another Reddit Clone (Go + Vue + PostgreSQL)

    Posted: 11 Jul 2020 06:26 AM PDT

    Awesome collection of .NET Core real time, sample, architecture reference application projects

    Posted: 11 Jul 2020 01:18 PM PDT

    Frontend for a backend guy?

    Posted: 11 Jul 2020 09:03 AM PDT

    So okey, please don't hate me. I'm a backend and a low level guy, I've been doing C++, C#, Python, Julia and Haskell for all my programming life. I really hate node/npm ecosystem. I'm a static typing adept also. Is there a way for me to do web frontend stuff and have fun? What can you recommend?

    I've looked at some frontend stuff before: 1) Elm really looked promising, but the language keep changing all the time and the community around it seems not very welcoming. 2) I looked at F# with Fable and ReasonML, but both of these technologies depends on node ecosystem that I don't like. 3) I looked at Dart, but beside Flutter there is not much happening in the Dart world. There's basically only AngularDart, but it seems kinda ugly with their attribute based syntax. 4) I looked at Blazor, but the compiled webassembly files are really huge even for a simple project.

    submitted by /u/AlexKotik
    [link] [comments]

    I'm making a chrome extension that blocks rickrolls

    Posted: 11 Jul 2020 07:48 AM PDT

    Soundscape: the immersive music visualizer that lets you build your own beats.

    Posted: 11 Jul 2020 03:50 AM PDT

    Web dev and the agency model - what’s your experience?

    Posted: 11 Jul 2020 11:31 AM PDT

    I have worked for several marketing/creative agencies and they've all been stressful. They expect you to crank out work and be on call for clients. Focused, deep creative work is rare if not impossible. Sales people and non-technical supervisors don't want to hear "no" or any nuance.

    Currently I'm the ONLY dev at an agency and I feel that's a whole 'nother can of worms. I have 3 managers who don't communicate and two of them double as sales while the project manager does not. It's a headache, and after 4 years they use vocabulary I TAUGHT THEM to question my recommendations.

    Ugh.

    Anyway, here are my questions.

    • if you've worked in an agency model - how was it? Pros and cons?

    • have you ever been the only dev and do you have anything to compare that experience against?

    • how do you get out of the agency model, especially since they tend to force you into being a generalist?

    Thanks all!

    submitted by /u/batmanbummer
    [link] [comments]

    Worked with a group creating dev tool that converts React Class Components to Functional Components using hooks!

    Posted: 11 Jul 2020 09:29 AM PDT

    First try at my portfolio

    Posted: 11 Jul 2020 11:01 AM PDT

    Few months old at trying front-end , first try at a portfolio, looking forward to feedbacks and ready to scrape the whole design if necessary

    https://pepeyen.github.io/portfolio/

    submitted by /u/GorcsPlays
    [link] [comments]

    Typing speed while coding

    Posted: 11 Jul 2020 03:44 PM PDT

    What is your typing speed while coding?

    View Poll

    submitted by /u/geriatricgoepher
    [link] [comments]

    I made a web app for screen sharing directly on the browser with no signup. Thanks for your feedback :)

    Posted: 11 Jul 2020 03:33 PM PDT

    Help Converting an Html5 Canvas game to mobile friendly.

    Posted: 11 Jul 2020 03:17 PM PDT

    Hi all, Could someone help me/guide me in the right direction to convert this script to a mobile friendly version? I'm looking to create a virtual joystick but do not know where to begin.

    var keysDown = {}; // Check for keys pressed where key represents the keycode captured addEventListener("keydown", function (key) { keysDown[key.keyCode] = true; }, false); addEventListener("keyup", function (key) { delete keysDown[key.keyCode]; }, false); // Reset the player and monster positions when player catches a monster var reset = function () { // Reset player's position to centre of canvas hero.x = canvas.width / 2; hero.y = canvas.height / 2; // Place the monster somewhere on the canvas randomly monster.x = 32 + (Math.random() * (canvas.width - 64)); monster.y = 32 + (Math.random() * (canvas.height - 64)); }; // Update game objects - change player position based on key pressed var update = function (modifier) { if (38 in keysDown) { // Player is holding up key hero.y -= hero.speed * modifier; } if (40 in keysDown) { // Player is holding down key hero.y += hero.speed * modifier; } if (37 in keysDown) { // Player is holding left key hero.x -= hero.speed * modifier; } if (39 in keysDown) { // Player is holding right key hero.x += hero.speed * modifier; } 
    submitted by /u/Sumjhumms
    [link] [comments]

    For my first full stack project, I've made a customizable app that tracks the progress you make exploring the discography of your newly discovered artists on Spotify (MERN)

    Posted: 11 Jul 2020 03:57 AM PDT

    I built an app to automate, and visualize your ISP speedtest results over time (docker, nodejs, react) - ready to throw on a raspberry pi

    Posted: 11 Jul 2020 11:23 AM PDT

    Looking for Tutorials on How to do Front End Web Dev Using Docker, VSCode on MacOS/Windows Subsystem Linux

    Posted: 11 Jul 2020 11:21 AM PDT

    I am looking to perform front end web development on my MacOS using docker containers for previewing/environment and Visual Studio Code for my IDE. I have experience with Laravel Valet and Homestead, but I am looking for a development setup I can utilize on both Mac and PC/WSL2 which is more lightweight and able to grow into development from websites to full web applications in the future. Right now I am developing websites (HTML, PHP, SCSS and JavaScript. I automate with gulp and live update with browsersync), but I would like to learn and practice more full stack/dynamic web app development in the future (WebPack, databasing and React). I am brand new to docker and I am having a hard time finding a beginner tutorial on how to set it up in this way. Please point me in the direction of some reliable up tp date tutorials or blogs which can help this nOoB. Or if this isn't the best solution, please point me in the right direction of guides for others (main points I am looking to cover: growth into full stack, development with same setup on both Mac/PC and efficiency/consistency).

    submitted by /u/GingaRanga
    [link] [comments]

    Black jack and tic-tac-toe project I’ve been working on!

    Posted: 11 Jul 2020 11:08 AM PDT

    It's not finished yet, the tic-tac-toe isn't even started but the menu and blackjack is completely finished!! I would greatly appreciate it if you checked it out and give feedback!! Have a great day :)!!

    Link to project: https://goob-hub.github.io/BlackJack-And-Tic-Tac-Toe/index.html

    Source code if you really wanna see that: https://github.com/Goob-hub/BlackJack-And-Tic-Tac-Toe

    submitted by /u/OOF-stars
    [link] [comments]

    [Showoff Saturday] I made something simple to help people wrap their minds around just how bad the coronavirus outbreak in America has gotten. It tracks how many 9/11s the death count is equivalent to. Check it out here: howmany911s.net

    Posted: 11 Jul 2020 02:50 PM PDT

    I made a discord bot that gives COVID-19 Stats and graphs

    Posted: 10 Jul 2020 11:45 PM PDT

    HTML/CSS/JavaScript Exercise where you try to rebuild a website. (For beginners)

    Posted: 11 Jul 2020 05:44 AM PDT

    Hello, so basically title. Im currently learning Web Coding with an App. I covered basics and fundamentals of HTML, CSS and am currently learning JavaScript.

    Since i know myself i tend to forget things i learned while learning new things, i wanted to have some exercises on the side.

    The App i use had sometimes exercises in the beginning that made you rebuild Websites which i enjoyed the most so far. I googled and really haven't found anything like that. Does anyone know a website or something?

    submitted by /u/Tschernoblyat
    [link] [comments]

    No comments:

    Post a Comment