Skip to content

Instantly share code, notes, and snippets.

View odeloic's full-sized avatar
🎯
Working

Loïc Ishimwe odeloic

🎯
Working
View GitHub Profile
@odeloic
odeloic / policy.md
Created February 10, 2026 19:56
Tempor HQ Privacy Policy

Privacy Policy

TemporHQ Last updated: February 10, 2026

Overview

TemporHQ ("the App") is a time tracking application. Your privacy is important to us. This policy explains how the App handles your data.

Data Storage

@odeloic
odeloic / index.html
Last active October 2, 2022 18:15
HTML Button Action
<!DOCTYPE html>
<html>
<body>
<form>
<input type="text" name="username" id="input_username" />
<input type="email" name="email" id="input_email" />
<button id="submit_button">Click To Submit</button>
</form>
<script>
// This can also be in a different file
@odeloic
odeloic / for loop
Created November 10, 2014 11:46
print 10 numbers
//how we show 10 numbers
for n in 1..10 do
puts n
end