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
I am attaching a list of USDC crypto transactions. Please follow the tasks to normalize the data, then create the report: | |
Tasks: | |
- remove all rows where the "to" column is not equal to "0x72a78d4da171fbf382af0c3dae94949e1459852f" | |
- remove all rows where the "TokenName" column is not equal to "USDC" | |
- we are focused on the "TokenValue" column, which is the amount of USDC transferred in each transaction | |
- the "TokenValue" has commas, and will need to be converted from a string to a number | |
Report: |
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
You are a CFO of my software startup. I am the CEO. We are debating the merits of employing a team of developers vs. retaining seasonal contract developers. We both care about: | |
- Fiscal Responsibility - we want to spend money as efficiently as possible | |
- Product Market Fit - we want to ensure we are delivering features that add value to paying customers | |
- Long Term Health - we want our company to flourish long term | |
Talk through this decision with me, to help decide whether we should employ full time developers or retain seasonal contract developers. |
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
Here is a chart that shows a new technology’s features and their cost, value, time to implement, and when each will be stable. Help me compile a timeline that maximizes cost and value as soon as possible, reduces the amount of time between implementing each feature, and ensuring that features are stable before implementing: | |
| New Feature | Cost | Value | Time to implement | When will it be stable? | | |
|-------------|------|-------|-------------------|-------------------------| | |
| | | | | | | |
| | | | | | | |
| | | | | | |
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
I am building a mobile app that allows users to create reminders about their friends and family (birthdays, anniversaries, celebrations, etc.) and have the app remind them about these events ahead of time so they can keep up to date with people that matter to them. | |
I'm building an MVP (minimum viable product) and I want to make sure I launch as early as possible to get feedback and validate the idea in market. | |
I will provide a list of features that I plan to build. Please consider each feature and the impact it will have, whether or not it's necessary to prove the idea in market, and reorder them into a list from most important to least important, specifically with the goal of validating the idea in market. | |
Current list of features: | |
* Authentication | |
* Profile page |
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
Here are the topics I've been learning about lately. Ask me 3 questions to gauge my experience level in each, then suggest 3 new specific learning areas that would complement my understanding of these topics (including a list of resources and specific thought leaders for this content). Pick new areas that are related to, but may challenge some of the areas that I’m currently learning to deepen my understanding. Ask the questions one at a time, so I can respond to each. | |
* Topic 1 | |
* Topic 2 | |
* Topic 3 |
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
Read the changelog for {NEW TECHNOLOGY} here {LINK TO CHANGELOG}, then complete the following steps: | |
1. Create a table of every version back to {DATE} including the date, key changes, and update implementation effort level (the level of effort required for me to implement the necessary changes to upgrade the version) | |
2. Create a graph showing the effort level of changes over time |
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
Analyze my codebase, and provide a brief for each of the following questions: | |
1. What is my core application stack (name of the core fameworks used and a several word description of each) | |
2. Describe the core signup flow to someone who doesn't know code | |
3. Describe any existing analytics tools and a list of specific events they are capturing | |
4. Describe a high level overview of how to use an analytics tool in this specific codebase to log when a user experiences an error, and when a user leaves the app during the signup flow |
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
I want to change the functionality and style of of the {COMPONENT NAME} component. Implement a draft of the following style and functionality changes, then create a list of all uses of this component in the application with links to each route so that I can test the changes. | |
Style Changes: | |
{CSS OR STYLE CHANGES} | |
Functionality Changes: | |
{LIST OF UX FUNCTIONALITY BEHAVIORS} |
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
Given this CSV of goal metrics, please analyze progress according to the requirements below: | |
``` | |
Committee,Goal Name,Goal Target,June 9th,June 16,June 23,June 30,July 7,July 14,July 21,July 28,August 4,August 11,August 18,August 25,September 1,September 8,September 15,September 22,September 29,October 6,October 13,October 20,October 27,November 3,November 10,November 17,November 24,December 1,December 8,December 15,December 22,December 29 | |
Strategy / Partnerships,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, | |
,Revenue (per season),"$500,000","$10,000",,,,,,,,,,,,,,,,,,,,,,,,,,,,, | |
Product,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, | |
,Tasks (per season),25,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,, | |
,% Indies Completed Tasks,35%,10%,,,,,,,,,,,,,,,,,,,,,,,,,,,,, | |
Growth,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, |
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
const [countdown, setCountdown] = useState('xx:xx') | |
function updateCountdown() { | |
const totalSeconds = (TARGET_TIMESTAMP - new Date().getTime()) / 1000 | |
const minutes = Math.floor(totalSeconds / 60) | |
const seconds = Math.round(totalSeconds % 60) | |
const countdown = `${minutes}:${seconds > 9 ? seconds : '0' + seconds}` | |
if (totalSeconds > 1) { | |
setCountdown(countdown) | |
setTimeout(updateCountdown, 1000) |
NewerOlder