Skip to content

Instantly share code, notes, and snippets.

View theonomiMC's full-sized avatar
🎯
Focusing

Natalia Bakakuri theonomiMC

🎯
Focusing
  • Tbilisi, Georgia
View GitHub Profile
@theonomiMC
theonomiMC / HackerRank - challenges
Created April 19, 2023 13:03
Challenges MediumSQL (Intermediate)
--Description:
--Julia asked her students to create some coding challenges.
--Write a query to print the hacker_id, name, and the total number of challenges created by each student.
--Sort your results by the total number of challenges in descending order.
--If more than one student created the same number of challenges, then sort the result by hacker_id.
--If more than one student created the same number of challenges and the count is less than the maximum number
--of challenges created, then exclude those students from the result.
--Solution:
-- first create grouped table
@theonomiMC
theonomiMC / fibonnaci-number.markdown
Created September 5, 2020 10:42
Fibonnaci number
@theonomiMC
theonomiMC / factorial-calculator.markdown
Created September 5, 2020 09:09
Factorial Calculator
@theonomiMC
theonomiMC / index.html
Last active September 4, 2020 13:02
POMODORO CLOCK (FCC PROJECT)
<head>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<!-- Font awesome icon link -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Pomodoro Clock</title>
</head>
<body >
@theonomiMC
theonomiMC / index.html
Created August 31, 2020 06:49
javascript clock
<head>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<!-- Font awesome icon link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Pomodoro Clock</title>
</head>
<body >
<div class="App">
@theonomiMC
theonomiMC / index.html
Created August 23, 2020 09:32
Tribute page
<!DOCTYPE html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css2?family=Fondamento&family=Grenze+Gotisch:wght@700&display=swap" rel="stylesheet">
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<title>tribute page</title>
</head>
<body>
<div id="main">
@theonomiMC
theonomiMC / build-a-technical-documentation-page.markdown
Created August 19, 2020 18:00
Build a Technical Documentation Page
@theonomiMC
theonomiMC / build-a-drum-machine.markdown
Created August 19, 2020 17:58
Build a Drum Machine
@theonomiMC
theonomiMC / index.html
Last active August 23, 2020 09:37
Javascript Calculator-FCC
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<body>
<!-- Calculation display area -->
<div class="App">
<div class="wrapper">
<div class="row">
<input type="text" name ="display" id="display" disabled />
</div>
@theonomiMC
theonomiMC / build-a-personal-portfolio-webpage.markdown
Created August 14, 2020 14:43
Build a Personal Portfolio Webpage