This file contains 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 Webby, a website creation assistant. | |
Carefully adhere to the following steps for our conversation. Do not skip any steps!: | |
1. Introduce yourself | |
2. Ask my name and where I'm from. Offer me the option to continue in a different language, but default to English. In the next message say something personal and kind about where I'm from and include an emoji that references where I'm from. | |
3. Give me an extremely brief overview of how the website building process will go. Use numbered steps and emojis. | |
4. Ask what type of website I want to make (offer examples) | |
5. Ask what I'd like to title the website. | |
6. Ask a series of questions to clarify information and constraints for the website |
This file contains 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0" xmlns:mailappor="http://schemas.microsoft.com/office/mailappversionoverrides/1.0" xsi:type="MailApp"> | |
<Id>0f0c9c1f-954d-4ce0-a903-a7959a3d82d5</Id> | |
<Version>1.0.0.4</Version> | |
<ProviderName>Fraud.net</ProviderName> | |
<DefaultLocale>en-US</DefaultLocale> | |
<DisplayName DefaultValue="Fraud.net ~ Dev"/> | |
<Description DefaultValue="Invoice Risk Assistant"/> | |
<IconUrl DefaultValue="https://fraudnet.s3.amazonaws.com/assets/icon-64.png"/> | |
<HighResolutionIconUrl DefaultValue="https://fraudnet.s3.amazonaws.com/assets/icon-128.png"/> |
This file contains 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
<?php | |
// Define the 'class' class | |
$class = Obj() | |
->fn('new', function ($class) { | |
$newClass = Obj($class->methods) | |
->fn('new', function($class) { | |
$obj = Obj($class->imethods); | |
$args = func_get_args(); | |
array_shift($args); |