#HTML presentation tools
There are many HTML presentation tools and they are all created for slightly different reasons. Here's an overview. Please let me know if I forgot any.
##CSSS
CSS-based SlideShow System
#!/bin/bash | |
cd ~ | |
mv .vimrc .vimrc-old | |
mv .vim .vim-old | |
touch .vimrc | |
mkdir .vim |
import React, { Component } from 'react' | |
import { BrowserRouter, Route, Switch } from 'react-router-dom' | |
import { createStore, applyMiddleware, compose } from 'redux' | |
import reducer from './reducers' | |
// import { Provider } from 'react-redux' | |
import thunk from 'redux-thunk' | |
import { ApolloClient, createNetworkInterface, ApolloProvider } from 'react-apollo' | |
import './App.css' | |
import Category from './views/Category' |
import { combineReducers } from 'redux' | |
const reducerTest = (state = {}) => state; | |
export default combineReducers({ | |
reducerTest | |
}) |
{ | |
"name": "boilerplate", | |
"version": "0.1.0", | |
"private": true, | |
"scripts": { | |
"start": "react-scripts start", | |
"build": "react-scripts build", | |
"test": "react-scripts test --env=jsdom", | |
"eject": "react-scripts eject", | |
"lint": "prettier 'src/**/*.js' 'src/components/**/*.js' '*.js' --write --single-quote --no-semi && standard --fix", |
/* | |
Hoje iremos MUDAR a vida da pessoa que não te responde no whatsappp... | |
Que tal enviar mensagens pra ela até obter uma resposta?! | |
Sensacional não acha?! Mas, somos devs, correto?! Então vamos automatizar esse paranauê! | |
Para utilizar: | |
- Abra o web.whatsapp.com; | |
- Selecione a conversa que você quer; | |
- Abra o console e cole o código que está no gist; |
Just migrated it from Codepen.io to markdown. Credit goes to David Conner.
Working with DOM | Working with JS | Working With Functions |
---|---|---|
Accessing Dom Elements | Add/Remove Array Item | Add Default Arguments to Function |
Grab Children/Parent Node(s) | Add/Remove Object Properties | Throttle Functions on Resize |
Create DOM Elements | Conditionals |
This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.
###Array ####Definition:
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> |