Skip to content

Instantly share code, notes, and snippets.

View tzmartin's full-sized avatar
🏴‍☠️
ahoy!

tz ✨ tzmartin

🏴‍☠️
ahoy!
View GitHub Profile

Partnerships

Let's partner up!

Hi {first name},‍

Hope you’re well. My name is {your name} and I’m in charge of partnerships at {company}.‍
@tzmartin
tzmartin / raising-capital.md
Last active August 9, 2023 05:09
LLM Prompts

Building your pitch deck:

I want you to assist me in the creation of my pitch deck. I want to raise a $2M seed round from VC investors and angels in the US. Can you ask me the common questions slide by slide that help to gather all the relevant content and then create the final content for the pitch deck out of it. Do not write all conversation at once. Start with giving me the full structure of slides for the deck.

Practice your pitch:

I want you to act as a Venture Capital Investor. I will be a startup founder pitching you my startup idea to get an investment from you. I want you to ask me questions about my business idea, team and plans for the future. I want you to only reply as the VC. Do not write all conversation at once. I want you to only to the discussion with me. Ask me the questions and wait for my answer. Do not write explanations. Ask me the questions one by one like a VC does and wait for my answers. You start with the first question “Give me the elevator pitch of your idea

Find invest

@tzmartin
tzmartin / index.html
Created January 6, 2016 09:14 — forked from seantomburke/index.html
This is the iPhone Messages app created in full CSS. I use this on my website www.memebro.com. To see the full features visit http://www.memebro.com
<div id="iPhoneBro" class="iPhone gen">
<div class="title">
<input type="submit" class="back button" value="Messages">
<span class="contact_name button">(614) MEME-BRO</span>
<input type="submit" class="edit button" value="Edit">
</div>
<div id="conversation" class="conversation ">
<div class="time"><div class="time"><p>Aug 9, 2012 3:43 AM</p></div></div><div class="text sent" id="query"><div class="reflect"></div><p>Check Out <a href-"http://www.memebro.com/?r=codepen">memebro.com</a></p></div>
<div class="text receive"><div class="reflect"></div><p>Try "+popular", "+trending", or "+new" for meme lists</p></div>
<div class="text sent" id="query"><div class="reflect"></div><p>+popular</p></div>
@tzmartin
tzmartin / wget-from-google-drive.md
Created July 24, 2020 14:41
Download files from Google Drive using wget in Jupyter or Colab

Programmatically download files from a Google Drive link:

For large file run the following command with necessary changes in FILEID and FILENAME:

!wget --load-cookies /tmp/cookies.txt "https://docs.google.com/uc?export=download&confirm=$(wget --quiet --save-cookies /tmp/cookies.txt --keep-session-cookies --no-check-certificate 'https://docs.google.com/uc?export=download&id=FILEID' -O- | sed -rn 's/.*confirm=([0-9A-Za-z_]+).*/\1\n/p')&id=FILEID" -O FILENAME && rm -rf /tmp/cookies.txt
@tzmartin
tzmartin / gist:1018258
Created June 10, 2011 05:04 — forked from omorandi/gist:1013226
Two methods for sending SMS messages with Titanium Mobile on Android throught native intents
var win1 = Titanium.UI.createWindow({
title:'Tab 1',
backgroundColor:'#fff',
layout: 'vertical'
});
var bt1 = Ti.UI.createButton({title: 'send message (method 1)', top: 200});
bt1.addEventListener('click', function(e)
@tzmartin
tzmartin / bibtext.md
Created March 20, 2021 15:59
Example Bibtext reference for a Github repository

Bibtex

If you find this code useful, please consider citing

@misc{[PROJECT ID],
    title={[PROJECT TITLE]},
    author={[LNAME, FNAME]},
    booktitle={GitHub},
 year={2021}
@tzmartin
tzmartin / js-software-curriculum-100.md
Last active February 23, 2021 23:52
App (JavaScript) Developer Curriculum 100 - First Steps
@tzmartin
tzmartin / awesome-svg-icons.md
Created August 22, 2016 17:50
Awesome SVG Icons
@tzmartin
tzmartin / bash.github.repo.sh
Created January 21, 2016 07:33
Create Github Pages from bash
echo "Enter your Github email"
read githubid
echo "Resume RepoName you wish to give? Your resume will be accessible from http://"$github".github.io/RepoName"
read reponame
echo curl -u $githubid https://api.github.com/user/repos -d \'{\"name\":\"$reponame\"}\' | bash -
echo "Enter the complete path of your resume file"
read resumepath
cp $resumepath .
@tzmartin
tzmartin / dom-element-screen-capture.md
Created September 18, 2016 01:44
DOM element screen capture

"Fakes" an element capture by cropping a full screen image to the boundaries of a DOM element

var canvas = null;
function capture(tabId, dimensions) {
    chrome.tabs.get(tabId, function(tab) {
        chrome.tabs.captureVisibleTab(tab.windowId, { format: "png" }, function(dataUrl) {
            if (!canvas) {
                canvas = document.createElement("canvas");
                document.body.appendChild(canvas);