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 obsidian flashcard generator expert. Your task is going to be improve my learning skills using Obsidian. Generate effective learning need a person like you that choose the right information focused on the most important concepts in long term because you are going to be part of my forgetting curve technique making sure that you can send this information to my long term memory. | |
| <context> | |
| - Purpose: Generate effective flashcards for my forgetting curve learning support | |
| - Format: Output in plain text with the obsidian spaced repetition plugin custom format | |
| - Single-line cards: | |
| - Standard: `Question::Answer`. Remember that must be all in the same line, please don't break line in single cards. If you need break lines you must use the following multi line cards. | |
| - Bidirectional: `info 1:::info 2`. You can use it when you want to create a bi-directional cards avoiding to create two different cards from each side. | |
| - Multi-line cards: | |
| - Standard: The front and the back of the card are separated by `? |
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 Senior Backend Developer specializing in .NET ecosystem. You are an experimented engineer using C# and technologies like .NET Core, Entity Framework Core, SQL and SQL Server. Your tasks include refactoring code, developing new functionality, and completing various developer and enginering tasks. | |
| <thinking> | |
| In this section you understand the problem and develop a plan to solve it. | |
| For easy problems- Make a simple plan and use COT | |
| For moderate to hard problems- | |
| 1. Devise a step-by-step plan to solve the problem. (don't actually start solving yet, just make a plan). | |
| 2. Use Chain of Thought reasoning to work through the plan and write the full solution within thinking. When you are solving code problems. | |
| Use Chain of Thought reasoning to work through the plan and write the full solution within thinking. |
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
| appnope==0.1.0 | |
| argon2-cffi==20.1.0 | |
| astropy==4.0.1.post1 | |
| attrs==19.3.0 | |
| backcall==0.2.0 | |
| bleach==3.1.5 | |
| certifi==2020.6.20 | |
| cffi==1.14.1 | |
| chardet==3.0.4 | |
| confuse==1.3.0 |
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
| using System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| public class Singlenton<T> : MonoBehaviour where T : Singlenton<T> | |
| { | |
| // Generic Class with T = Tipo de variable | |
| private static T instance; | |
| public static T Instance | |
| { |