This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 << "," |