Last active
December 1, 2018 22:40
-
-
Save BenDMyers/5a68d46aa16a4ba820ae712a50487a53 to your computer and use it in GitHub Desktop.
List of posts for the OSU Local Hack Day 2018 React codelab
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"avatar": "https://upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Commodore_Grace_M._Hopper%2C_USN_%28covered%29.jpg/192px-Commodore_Grace_M._Hopper%2C_USN_%28covered%29.jpg", | |
"name": "Grace Hopper", | |
"user_id": 1906, | |
"status": "Life was simple before World War II. After that, we had systems." | |
}, | |
{ | |
"avatar": "https://upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Alan_Turing_Aged_16.jpg/176px-Alan_Turing_Aged_16.jpg", | |
"name": "Alan Turing", | |
"user_id": 1912, | |
"status": "We are not interested in the fact that the brain has the consistency of cold porridge." | |
}, | |
{ | |
"avatar": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Edsger_Wybe_Dijkstra.jpg/180px-Edsger_Wybe_Dijkstra.jpg", | |
"name": "Edsger Dijkstra", | |
"user_id": 1930, | |
"status": "I don't need to waste my time with a computer just because I am a computer scientist." | |
}, | |
{ | |
"avatar": "https://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Ada_Lovelace_portrait.jpg/167px-Ada_Lovelace_portrait.jpg", | |
"name": "Ada Lovelace", | |
"user_id": 1840, | |
"status": "Mathematical science shows what is. It is the language of unseen relations between things. But to use and apply that language, we must be able fully to appreciate, to feel, to seize the unseen, the unconscious." | |
}, | |
{ | |
"avatar": "https://upload.wikimedia.org/wikipedia/commons/c/ce/George_Boole_color.jpg", | |
"name": "George Boole", | |
"user_id": 1815, | |
"status": "It is not of the essence of mathematics to be conversant with the ideas of number and quantity. Whether as a general habit of mind it would be desirable to apply symbolic processes to moral argument, is another question." | |
} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.post-box { | |
box-shadow: 0px 0px 20px gray; | |
margin: 10px; | |
padding: 10px; | |
font-family: sans-serif; | |
} | |
.avatar { | |
width: 60px; | |
height: 60px; | |
border-radius: 50%; | |
display: inline-block; | |
} | |
.name { | |
display: inline-block; | |
} | |
textarea { | |
width: 80%; | |
font-family: sans-serif; | |
} | |
button { | |
display: block; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment