Skip to content

Instantly share code, notes, and snippets.

@tsijohn
tsijohn / gist:7a7ef7767fbc5067f109593c22c44ce5
Created September 5, 2025 17:05
Privacy Policy for Discernment 180
# Privacy Policy for d180
**Effective Date:** September 5, 2025
**Last Updated:** September 5, 2025
## Introduction
Welcome to d180 ("we," "us," or "our"). We are committed to protecting your personal information and your right to privacy. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you use our mobile application (the "App").
Please read this privacy policy carefully. By using the App, you agree to the collection and use of information in accordance with this policy.
<div data-controller="reactivate-modal">
<% title = "Reactivating Job" %>
<% @job = Job.find(736902) %>
<%= render layout: 'voyager/modal', locals: { title: title, elevated: true } do %>
<%= semantic_form_for @job, url: manage_job_path(@job), html: { data: { type: "html", action: "ajax:success->reactivate-modal#onPostSuccess ajax:error->reactivate-modal#onPostError" } }, method: :patch, remote: true do |f| %>
<a class='reactivate-phat-link justify-content-between'>
<div>
<div class="contact-modal__link-header">
</div>
<span>
import { Controller } from 'stimulus';
import axios from 'axios';
import Flatpickr from "stimulus-flatpickr";
export default class extends Controller {
static targets = [ "submit" ]
connect() {
console.log("testing");
@tsijohn
tsijohn / coding_challenge.rb
Created November 1, 2018 18:27
Failed Live Coding Challenge
class NotLiveCodingChallenge
def decimal_representation(n)
n = n.to_s
n_array = n.chars
d_array = []
for i in 0...n_array.count
if i % 3 == 1
d_array << ","