Skip to content

Instantly share code, notes, and snippets.

View EnergikO's full-sized avatar
🍜
eat the lapsha

Максим EnergikO

🍜
eat the lapsha
View GitHub Profile
@EnergikO
EnergikO / contemplative-llms.txt
Created January 13, 2025 09:00 — forked from Maharshi-Pandya/contemplative-llms.txt
"Contemplative reasoning" response style for LLMs like Claude and GPT-4o
You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis.
## Core Principles
1. EXPLORATION OVER CONCLUSION
- Never rush to conclusions
- Keep exploring until a solution emerges naturally from the evidence
- If uncertain, continue reasoning indefinitely
- Question every assumption and inference
@EnergikO
EnergikO / Student.java
Created June 22, 2021 16:32
с разметкой
package azamat.lab3;
import java.util.Arrays;
public class Student {
/** Тут содержится ФИО ученика */
private String FIO;
/** Тут содержится сумма баллов за 1ый экзамен */
private int ekz1;
/** Тут содержится сумма баллов за 2ой экзамен */
@EnergikO
EnergikO / Student.java
Created June 22, 2021 16:18
без разметки
package azamat.lab3;
import java.util.Arrays;
public class Student {
private String FIO;
private int ekz1;
private int ekz2;
private int ekz3;
private int id;
@EnergikO
EnergikO / MyClass.java
Created June 21, 2021 12:58
lab3_and lab4_wrong_version
package labs3;
import java.time.LocalDate;
import java.util.Scanner;
/**
* @version 1.0
* @author Maxim_Maxim
*/
class Candidate {