Login
Discover
Waves
Decks
Plus
Login
Signup
positivelyzack
@positivelyzack
25
Founder and Full-stack Developer Instructor
Followers
116
Following
0
Resource Credits
Available
Used
Location
San Diego, CA
Website
http://ransomly.com
Created
January 24, 2018
RSS Feed
Subscribe
Posts
Blog
Posts
Comments
Communities
Wallet
positivelyzack
react
2019-01-02 03:22
Adding props or functionality to React children
For most cases to render children you can use this.props.children render() { return ( <div> {this.props.children} </div> ) } However, if you wanted to add functionality like an onClick handler
$ 0.000
2
4
positivelyzack
digitalwellbeing
2018-06-09 22:10
Positive Product Design
Since Google and Apple made announcements about their digital well-being initiatives, there has been much more interest in positive tech or humane tech. What is positive tech? Positive tech is simply
$ 0.000
1
1
positivelyzack
learning
2018-05-12 04:19
Half Life: The Decay of Utility of Software Knowledge or why you should learn to learn
In biology, a half-life is the time taken for a substance to lose half its effects. In software I think of a half-life as the time it takes a piece of knowledge to become half as useful. The problem I
$ 0.000
1
positivelyzack
purefunction
2018-04-30 20:32
Pure Functions
What are pure function? Pure functions are functions that return the same output every time given a certain input. They also do not produce any side effects such as network requests or data mutation. Impure
$ 0.090
1
positivelyzack
react
2018-04-27 20:23
Deploying a fullstack React app to Heroku
A few steps that may come in handy when deploying your fullstack React app. Deployment Steps 1. Update Server.js Server.js We will create a static build folder for the front end. This will be your React
$ 0.000
5
positivelyzack
react
2018-03-23 20:14
Components with Props In React
Components in React behave like functions. They can take in arguments and returns values. Components take in Props (like arguments) and returns some piece of the UI for the app. Props are objects and can
$ 0.000
1
1
positivelyzack
create-reactapp
2018-03-04 22:03
The structure of app created with the create-react-app tool.
The structure of app created with the create-react-app tool. This was created by installing create-react-app npm install create-react-app and then running create-react-app NAME_OF_MY_APP
$ 0.000
0
positivelyzack
es6
2018-03-03 06:22
ES6 Javascript exports, imports and the difference between 'default export' & 'export'
ES6 provides us with a new way to export and import in our files. ES5 in Node we have module.exports and require() We export our object our method using module.exports And we import it by using
$ 0.000
1