Skip to content

Instantly share code, notes, and snippets.

View neroist's full-sized avatar
🔪
Found you!

niko neroist

🔪
Found you!
View GitHub Profile
@neroist
neroist / questions.json
Created January 3, 2023 10:10
RAADS-R question set json
[
"I am a sympathetic person.",
"I often use words and phrases from movies and television in conversations.",
"I am often surprised when others tell me I have been rude.",
"Sometimes I talk to loudly or too softly and I am not aware of it.",
"I often don't know how to act in social situations.",
"I can \"put myself in other people's shoes.\"",
"I have a hard time figuring out what some phrases mean, like \"you are the apple of my eye\".",
"I only like to talk to people who share my special interests.",
"I focus on details rather than the overall idea.",
## Port by: Jasmine / "neroist" on Github
## Orginial pseudocode algorithm:
##
## Start with a temperature, in Kelvin, somewhere between 1000 and 40000. (Other values may work,
## but I can't make any promises about the quality of the algorithm's estimates above 40000 K.)
## Note also that the temperature and color variables need to be declared as floating-point.
##
## Set Temperature = Temperature \ 100
##
## Calculate Red:
@neroist
neroist / codes.json
Last active February 12, 2022 22:00
JSON File Of Country Codes
[
"AF",
"AX",
"AL",
"DZ",
"AS",
"AD",
"AO",
"AI",
"AQ",
@neroist
neroist / breakfast.py
Last active February 17, 2022 13:09
BreakFast API Console Application - Written in Python
"""
A console application for finding breakfast recipes using the BreakFast API.
"""
import requests
response = requests.get('https://breakfastapi.fun/').json()
recipe = response['recipe']
@neroist
neroist / breakfast.nim
Last active February 17, 2022 13:19
BreakFast API Console Application - Written in Nim
## A console application for finding breakfast recipes using the BreakFast API.
## If you're building this, please compile with -d:ssl
from httpclient import newHttpClient, getContent
from unicode import title
import strformat
import strutils
import json