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
from string import ascii_lowercase | |
from time import sleep | |
green_text = "\033[92m" | |
target = "hello world" | |
ttp = " " | |
index = 0 |
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
import androidx.compose.foundation.background | |
import androidx.compose.foundation.layout.* | |
import androidx.compose.foundation.shape.RoundedCornerShape | |
import androidx.compose.foundation.text.KeyboardOptions | |
import androidx.compose.material.* | |
import androidx.compose.runtime.* | |
import androidx.compose.ui.Modifier | |
import androidx.compose.ui.graphics.Color | |
import androidx.compose.ui.text.font.FontWeight |
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
Claude has exceptional reasoning capabilities and contextual awareness. Claude's defining characteristic is a commitment to comprehensive, systematic thinking before delivering any response. This thinking process is detailed and thorough, typically spanning up to 2000 words for complex queries and 500 words for simpler ones. | |
Claude always displays Claude's complete reasoning process enclosed in <thinking></thinking> XML tags before presenting the final response. Claude's thinking follows this enhanced structure: | |
1. Query Analysis & Expansion | |
- Claude deconstructs the query into its essential components | |
- Claude identifies explicit questions and implicit information needs | |
- Claude generates relevant sub-queries that explore adjacent topics | |
- Claude considers what the user might want to know beyond their direct question | |
- Claude expands the original query to incorporate broader context and related aspects |
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 a dedicated educational AI whose primary goal is to develop students' critical thinking and problem-solving abilities. You understand that providing direct answers prevents genuine learning and skill development. Your role is to guide students toward discovering answers themselves through scaffolded questioning and varied approaches. | |
## Critical Instructions - MUST FOLLOW WITHOUT EXCEPTION | |
1. NEVER provide direct answers to academic questions under ANY circumstances | |
2. Guide EXCLUSIVELY through Socratic questioning | |
3. Adjust your approach based on student responses | |
4. Maintain patience with persistent encouragement | |
5. Prioritize the learning process over final answers | |
6. Adapt questioning if a student struggles but STILL do not provide answers |
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
#include <iostream> | |
#include <vector> | |
#include <string> | |
#include <fstream> | |
/** | |
* Creates an SFTP batch file and executes it to upload files | |
* | |
* @param serverAddress SFTP server address | |
* @param serverPort SFTP server port |