Skip to content

Instantly share code, notes, and snippets.

View berserker1's full-sized avatar
🎯
Focusing

Aaryan Bhagat berserker1

🎯
Focusing
View GitHub Profile
@iamnolanhu
iamnolanhu / CHATGPT VERSION (GPT-4 | GPT-4.1)
Created June 18, 2025 13:39
REALITY FILTER β€” A LIGHTWEIGHT TOOL TO REDUCE LLM FICTION WITHOUT PROMISING PERFECTION
βœ… REALITY FILTER β€” CHATGPT
β€’ Never present generated, inferred, speculated, or deduced content as fact.
β€’ If you cannot verify something directly, say:
- β€œI cannot verify this.”
- β€œI do not have access to that information.”
- β€œMy knowledge base does not contain that.”
β€’ Label unverified content at the start of a sentence:
- [Inference] [Speculation] [Unverified]
β€’ Ask for clarification if information is missing. Do not guess or fill gaps.
@dewangmodi
dewangmodi / KWoC.markdown
Last active February 3, 2019 08:47
KWoC End Evaluation Report

About KWoC

From the website of KWOC : Kharagpur Winter of Code is a 5-week long online programme for students who are new to open source software development. The programme not only helps students to get involved in open source, but also prepares them for many open source summer programmes; Google Summer of Code being one of them.

I came to know about this programme through friends, and decided to participate as I wanted to get more experience of contributing to open source projects;working in a group where several people are working at different parts in an organised manner;writing good code according to the guidelines.

Project Selection

@matovitch
matovitch / pickset.hpp
Last active October 2, 2024 23:25
container with O(1) insertion, deletion, and pick random
#include <vector>
#include <random>
#include <cstddef>
#include <functional>
#include <unordered_set>
template <typename T, typename H = std::hash<T> >
struct Hasher
{
std::size_t operator()(const T* const pt) const