• Breaking News

    Saturday, May 18, 2019

    i made a personal website + blog for every github user web developers

    i made a personal website + blog for every github user web developers


    i made a personal website + blog for every github user

    Posted: 18 May 2019 04:56 AM PDT

    What's this gradient type called? It feels so simple and beautiful but could not find a name for it

    Posted: 17 May 2019 05:19 PM PDT

    I made a continuously-evolving compendium of JavaScript tips based on common areas of confusion or misunderstanding

    Posted: 18 May 2019 08:17 AM PDT

    A teacher at my school was sick of remembering all the different bell schedules, so I created an app to make things easier. The whole school loves it.

    Posted: 18 May 2019 06:53 AM PDT

    simple dashboard

    Posted: 18 May 2019 11:14 AM PDT

    Looking for suggestions for a simple dashboard framework that I can easily dump json into.

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

    feedback on my portfolio?

    Posted: 18 May 2019 06:32 AM PDT

    Build a NodeJS app with Bitcoin Lightning micropayments in 1 hour.

    Posted: 18 May 2019 08:57 AM PDT

    I made an app to Scroll Reddit

    Posted: 18 May 2019 10:24 AM PDT

    How's my Front-End portfolio? Trying to make a career shift.

    Posted: 18 May 2019 04:34 AM PDT

    I'm a report developer looking to transition into Front-End development. Would appreciate feedback on my new portfolio.

    I think I probably need at least one more project and I have some ideas for one. I prefer to have a few fairly complex projects than lots of simple ones.

    georgegeeslin.com

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

    Beginner Question - Regarding side projects

    Posted: 18 May 2019 02:33 PM PDT

    I'm following this road map front front-end web dev : https://github.com/kamranahmedse/developer-roadmap .

    I'm only doing the highlighted boxes and skipping the rest. I'm unsure if it'll be important later. Please let me know if I need to focus on any that aren't highlighted!

    In my side projects, would it be super important for employers that I know how to write multiple frameworks? or would it be better if I show a depth understanding of one? I'm assuming, it doesn't matter, and if I only focus on one, I would only limit the job pool that requires me to understand other frameworks.

    I don't think the frameworks designed for a design like Bootstrap and Material UI are hard to understand. But JS frameworks like React and Angular, Vue.js are more challenging.

    I currently have one project with React + Bootstrap right now, and I'm unsure on how to advance. I could make another React + Bootstrap project, but i don't think that would be beneficial?

    Thanks!

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

    Social medium for Norwegian high school grads (Image-sharing PWA)

    Posted: 18 May 2019 09:39 AM PDT

    For the past three weeks I have been celebrating the end of my years in high school in a Norwegian tradition called Russefeiring. A part of this tradition is somthing called russeknuter, which is a bunch of fun challenges you can do during the grad-party. I made a social medium, which is pretty similar to Instagram, for these challenges. Now that the celebrations ended yesterday (May 17th, the national day of Norway) I thought that I should post the code and get some feedback.

    The app is made using reactJS for frontend, nodejs and express for the server and mongoDB for database.

    The code can be found here: RTKNUTER

    And the live project can be found here: https://rtknuter.no/

    Any feedback is highly appreciated!

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

    Quizipedia - Transform text into a fill-in-the-blank quiz (http://quizipedia.net/)

    Posted: 18 May 2019 12:57 PM PDT

    Hello everyone. This is Quizipedia, a pet project I've been working on for a while now. It's a web application that takes a piece of text and transforms it into a fill-in-the-blank quiz. It uses a custom algorithm to decide which words in a quiz are 'relevant' and blanks them out, turning it into a quiz.

    There are 3 separate applications involved:

    - The front-end web application itself, which uses React

    - A backend api, written in Node (currently converting from JS to Typescript) and backed by Postgres. This is where the 'relevant word' algorithm resides.

    - A separate admin website, where I can do some management tasks. This is also in React

    Some of my plans for the future involve adding users, improving the relevant word engine, and building a mobile application (in react native). Please try it out, and any feedback is welcome. Thanks!

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

    Launching a cheesy web game this year, what's a good ad network to use? I only want to use one unless you have a good reason to suggest otherwise.

    Posted: 18 May 2019 12:27 PM PDT

    So the game is pretty simple, its similar to rock paper scissors, 4 people play, bots fill the empty spots so games are always good to go after a few seconds of waiting to fill the lobby. You win meaningless internet trinkets which mean absolutely nothing but they go into your collection and thats the basic premise of the game.

    Each game/table will feature an ad that appears front and center in the middle of the game board, the game board updates over ajax long polling. In total between 4-12 turns, max game time about 2 minutes.

    Any suggestions?

    Also, there is a chat box, which also updates over ajax long polling.

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

    REST and Hypermedia in 2019

    Posted: 18 May 2019 11:57 AM PDT

    How can I create a portfolio website that can shows that I know how to use backend?

    Posted: 18 May 2019 11:53 AM PDT

    I'm going to redo my website Portfolio about myself, my skills, and projects for future clients and hiring personnel. But I'd also like it to show those browsing my site that I know how to do backend coding quite well. What are some features that I can do to my site that will show that? (Besides links to my previous projects).

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

    [Showoff Saturday] Just Crypto Prices

    Posted: 18 May 2019 07:58 AM PDT

    Hi everyone!

    I Created this website a few days ago!

    It's meant to be kept open on your work-space so that you can casually keep track of cryptocurrency prices!

    Let me know what you think!

    Just Crypto Prices

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

    Value must be set for boolean attributes with Typescript and Material UI

    Posted: 18 May 2019 10:43 AM PDT

    I have a pretty simple copy and paste bit of code from Material UI that I'm trying to get to work with Typescript. I have a MediaCard component (renamed to DisplayCard).

    When I compile the code, I am getting this error: (34,23): Value must be set for boolean attributes.

    I am having some difficulty figuring out the source of this error, as I'm not sure which attribute value needs to be set...

    Here's the code:

    App.tsx

    import * as React from "react"; import DisplayCard from "./components/DisplayCard"; const App = () => { return <DisplayCard />; }; export default App; 

    DisplayCard.tsx

    import * as PropTypes from "prop-types"; import * as React from "react"; import { createStyles, withStyles } from "@material-ui/core/styles"; import Button from "@material-ui/core/Button"; import Card from "@material-ui/core/Card"; import CardActionArea from "@material-ui/core/CardActionArea"; import CardActions from "@material-ui/core/CardActions"; import CardContent from "@material-ui/core/CardContent"; import CardMedia from "@material-ui/core/CardMedia"; import Typography from "@material-ui/core/Typography"; const styles = createStyles({ card: { maxWidth: 345 }, media: { height: 140 } }); function DisplayCard(props: any) { const { classes } = props; return ( <Card className={classes.card}> <CardActionArea> <CardMedia className={classes.media} image='/static/images/cards/contemplative-reptile.jpg' title='Contemplative Reptile' /> <CardContent> <Typography gutterBottom variant='h5' component='h2'> Lizard </Typography> <Typography component='p'> Lizards are a widespread group of squamate reptiles, with over 6,000 species, ranging across all continents except Antarctica </Typography> </CardContent> </CardActionArea> <CardActions> <Button size='small' color='primary'> Share </Button> <Button size='small' color='primary'> Learn More </Button> </CardActions> </Card> ); } DisplayCard.propTypes = { classes: PropTypes.object.isRequired }; export default withStyles(styles)(DisplayCard); 
    submitted by /u/shhhpiderman
    [link] [comments]

    Getting Security Info via Firefox extension

    Posted: 18 May 2019 10:41 AM PDT

    I'm trying to use the webRequest.getSecurity function to obtain certificate info for a particular URL. I don't want it to run for the loaded window, but rather, I want it to run for a particular URL input by the user i.e. '#URL'. How would I specify this? The function description is below and more info can be found at (https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/webRequest/getSecurityInfo)

    var gettingInfo = browser.webRequest.getSecurityInfo( requestId, // string options // object ) 
    submitted by /u/Prime_Idealist
    [link] [comments]

    [Google Places API] - Get every place with a certain word

    Posted: 18 May 2019 10:19 AM PDT

    Hey people!

    I woud like to make a request to Google places api that could return me every place that have a certain word in the name, and not a especific term.
    Like:

    "Restaurant X"

    "Pub X - New York"

    "Restaurant X - Tokyo"

    I would like to get every place that includes the term "X".

    I can just get a place for a exact and specific term.

    Can you help me?

    Thank you very much

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

    Created /r/opensourcechallenge and pomodoro-clips.

    Posted: 18 May 2019 09:58 AM PDT

    I hope this counts under showoff Saturday. I made a simple sub called opensourcechallenge. I figure some people might like to use their skills to make alt media news feeds, help plant trees, raise microfinance, organize local meetups, free tech education, apps to help the homeless or clean the streets etc etc. I can write CSS, a little JS, plus some Phoenix and Rails. I'll be adding some structured ideas for useful apps to the sub if anyone's interested.

    I figure responsive apps are the best way forward, but I'm open minded. I have dozens of codepens that could find a good use in society over the next few decades. I will keep the apps small, simple, one-use and achievable for small teams or individuals. Once we get some core apps and templates built, we can find many uses for them. Beginners totally welcome.

    https://www.reddit.com/r/opensourcechallenge

    *

    Next I wrote Pomodoro-Clips. A bunch of 23-27 minute clips, for all your pomodoro needs. Beginners are welcome to practice pushing and pulling with git.

    Any questions, fire away!!!

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

    I changed my personal site a little

    Posted: 18 May 2019 09:04 AM PDT

    Can’t get to my G Suite

    Posted: 18 May 2019 09:00 AM PDT

    So I got a G Suite account with the domain unblockedentertainmentatschool.page and I can't get into my G Suite account. I can't get the password, it says it's sending a verification code to my email and I get nothing. So then I tried another way to get the password and it says I need to add a cname record, I can't add a cname record because do anything with the domain and I also can't transfer it to godaddy because I need to be signed into my G Suite to get the verification code. 😠 what can I do to get my password?

    submitted by /u/lil-kid1
    [link] [comments]

    Rails 6 - How to add jQuery with webpacker/npm & build a real time chat app with ES6 ActionCable

    Posted: 18 May 2019 02:59 AM PDT

    Hey there!

    Rails 6 is here (released since April 19) and it comes with a few significant changes. The most important one is probably that you no longer have access to the asset pipeline and need to use instead npm,yarn / webpacker for your javascript related dependencies like bootstrap, jQuery etc. Also worth mentioning: Rails 6 is no longer using Coffeescript (luckily) and supports now ES6 by default.

    I've found the official documentation not very helpful on how to integrate those changes to your typical rails workflow, and it seems that i am not the only one. I've ended up making a tutorial where im gonna show you have to setup those things and how to deal with ActionCable and ES6 by building a simple Real-Time Chat App inside Rails 6.

    Rails 6 - Real Time Live Chat App (ES6) Tutorial

    If you have any questions, let me know!

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

    I want to learn Laravel PHP framework. Help me

    Posted: 18 May 2019 08:49 AM PDT

    I want to learn Laravel PHP framework. I know basic html, css and have developed basic apps for android using java. I don't know PHP. What are the steps? I am clueless. Which are the easiest software to use? Thank you.

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

    I want to start my own Web Dev business. What should I learn?

    Posted: 18 May 2019 08:25 AM PDT

    I know PHP, MySQL, Wordpress, CSS, Bootstrap, JS, AngularJS and a few other niche things.

    I want to evolve my skills to where the money is at. I am looking at SEO.

    As a one-team person at first, what are some skills I should focus on?

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

    No comments:

    Post a Comment