Skip to content

Instantly share code, notes, and snippets.

Avatar

Benjamin Atkin benatkin

View GitHub Profile
View output.md

Product Name: Impromptu

Brand Tagline: Unleash your Creativity, Promptly!

Product Description:

Impromptu is an innovative and intuitive tool designed to ignite the creative spark within language model users. Whether you're a writer, a poet, or simply someone who loves to explore the depths of imagination, Impromptu is here to inspire and unleash your linguistic genius.

With Impromptu, you can bid farewell to writer's block and embrace a world of endless possibilities. Our advanced algorithm seamlessly generates a wide array of prompts tailored to your specific needs and preferences. We understand that every creative mind is unique, so Impromptu offers a diverse range of genres, themes, and styles to cater to your individual tastes.

@benatkin
benatkin / empty-header.md
Created April 12, 2023 19:36
empty header
View empty-header.md

test

Rent $1500 paid
Utilities $200 unpaid
View settings.json
{
"workbench.colorTheme": "Default Dark+",
"explorer.confirmDragAndDrop": false,
"files.autoSave": "afterDelay",
"files.exclude": {
"**/.env*": true,
"**/.eslintrc.json": true,
"**/.firebase": true,
"**/.gitignore": true,
"**/.husky": true,
@benatkin
benatkin / how-to-install-deno.md
Last active August 25, 2021 04:39
How to install Deno
View how-to-install-deno.md

How to install Deno

To install Deno, run the installation script, and add the lines to your profile. Here it is for ~/.zshrc. The Deno install script doesn't automatically add it to the end. Rather than do it manually, I have a little script that does it.

install-deno.sh
curl -fsSL https://deno.land/x/install/install.sh | sh
View nested-markdown.md
# chems

````js
console.log(3);
function wow() {
  console.log('wowDoge');
}
````
View fizzbuzz.js
for (let i=1; i <= 100; i++) {
let s = '';
if (i % 3 == 0) s += 'Fizz';
if (i % 5 == 0) s += 'Buzz';
console.log(s.length ? s : i);
}
View keybase.md

Keybase proof

I hereby claim:

  • I am benatkin on github.
  • I am benatkin (https://keybase.io/benatkin) on keybase.
  • I have a public key ASBc_wPfm13RGJnnZVtA0u1h2LGr0tiB98Xpo5iy7VkmbAo

To claim this, I am signing this object:

@benatkin
benatkin / README.md
Last active March 21, 2018 03:06
bored> prompt zsh theme
View README.md

bored oh-my-zsh theme

In The Bipolar Lisp Programmer one student has bored> for a prompt.

I made an oh-my-zsh theme for this. It's super simple.

To use it:

View genesis_public_key
04abc69200bebaf9e938a4a810fedcc0dcc9f4b2a79411b8293ef8fc0e8bc2df1dfd2bb68817e4daf01d898317e2f734d6e95d4cb6181d7b22b1b398a2c6619481
View infinity.jsx
import React from "react";
import { render } from "react-dom";
const curve = (start, control1, control2, end) => {
return [
"M",
start.join(" "),
"C",
control1.join(" "),
control2.join(" "),