Skip to content

Commit

Permalink
soft reset
Browse files Browse the repository at this point in the history
  • Loading branch information
akinhwan committed Jun 23, 2019
1 parent 8cc0372 commit 21cc92e
Show file tree
Hide file tree
Showing 19 changed files with 1,332 additions and 509 deletions.
33 changes: 32 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,35 @@ var/
# Serverless directories
.serverless

node_modules
package

venv

node_modules

package.zip

serverless.yml

.serverless

__pycache__

.vscode

package-lock.json

requirements.txt

betalist_model_weights.hdf5

producthunt_model_weights.hdf5

betalist_model_vocab.json

betalist_output.txt

betalist_output_commas.txt

producthunt_model_vocab.json

12 changes: 0 additions & 12 deletions betalist.py

This file was deleted.

1 change: 0 additions & 1 deletion betalist_model_config.json

This file was deleted.

1 change: 0 additions & 1 deletion betalist_model_vocab.json

This file was deleted.

Binary file removed betalist_model_weights.hdf5
Binary file not shown.
1 change: 0 additions & 1 deletion betalist_output.txt

This file was deleted.

24 changes: 0 additions & 24 deletions handler.py

This file was deleted.

66 changes: 48 additions & 18 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,69 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hello Bulma!</title>
<title>Startup Pitch Generator</title>
<link rel="shortcut icon" type="image/png" href="/startup-icon.png"/>
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-XXXXX-Y', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.5/css/bulma.min.css">
<link rel="stylesheet" type="text/css" href="./styles.css" />
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono|Open+Sans&display=swap" rel="stylesheet">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<!-- <script src="https://sdk.amazonaws.com/js/aws-sdk-2.100.0.min.js"></script> -->
</head>

<body>
<section class="section hero is-info is-medium">
<div class="container">
<h1 class="title">
Hello World
<div class="container hero-body">
<h1 id="main-title" class="title">
Startup Pitch Generator
</h1>
<h2 class="subtitle">
<!-- <h2 class="subtitle">
Subtitle
</h2>
</h2> -->
<p class="subtitle">
My first website with <strong>Bulma</strong>!
Use the <strong>textgenrnn</strong> to help think of your next big idea!
</p>
<button class="button is-large is-success is-rounded has-text-weight-bold">Click here</button>
<button id="generate-btn" class="button is-large is-success is-rounded has-text-weight-bold">Generate!</button>
<div class="columns">
<div class="column">
First column
</div>
<div class="column">
Second column
</div>
<div class="column">
Third column
</div>
<div class="column">
Fourth column
<div class="card">
<div class="card-content">
<p id="pitch-text" class="title">
☝️ <br>
Click on the "Generate!" button above to get started!
</p>
<!-- <p class="subtitle">
Jeff Atwood
</p> -->
</div>
<footer class="card-footer">
<p id="share-twitter" class="card-footer-item">
<span>
Share on <a id="link-twitter" href="https://twitter.com/intent/tweet?status=">Twitter</a>
</span>
</p>
<p id="share-facebook" class="card-footer-item">
<span>
Post on <a id="link-facebook" href="http://www.facebook.com/share.php?u=https://www.akinhwan.site">Facebook</a>
</span>
</p>
</footer>
</div>
</div>
</div>

</div>
</section>
<script src="./main.js"></script>
</body>
</html>
Loading

0 comments on commit 21cc92e

Please sign in to comment.