-
Open the ChatGPT Codex task setup panel. This is where you configure your environment before starting a task.
-
Locate the "Setup Script" field. You’ll see a note that internet access is disabled after the script runs.
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
| document.addEventListener("DOMContentLoaded", function() { | |
| updateLinksWithQuery(); | |
| }); | |
| function updateLinksWithQuery() { | |
| var querystring = window.location.search.substring(1); // Remove the leading '?' | |
| var globalDomain = window.location.hostname; // Extract the domain from the URL | |
| if (querystring) { | |
| var links = document.querySelectorAll("a"); |
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
| /* file:///Users/henryhuman/Documents/04_Business/Bootstrap%20Creative/GitHub%20repositories/bootstrap-classes-list/bootstrap4.5.0.html */ | |
| .accordion | |
| .active | |
| .alert | |
| .alert-danger | |
| .alert-dark | |
| .alert-dismissible | |
| .alert-heading | |
| .alert-info |
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
| version: '2' | |
| services: | |
| mariadb: | |
| image: mariadb | |
| volumes: | |
| - /srv/Configs/Databases/Moodle:/var/lib/mysql | |
| environment: | |
| - MYSQL_ROOT_PASSWORD=moodle | |
| - MYSQL_ROOT_USER=root | |
| - MYSQL_DATABASE=moodle |
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
| programValue[1] = {"100% Online": "O", "On Campus": "C","Virtual Classroom": "V"}; | |
| //VER 1 | |
| var count = 1 ; | |
| for (let locationType in programValue[1]) { | |
| listOfLocationTypes += programValue[1][locationType]; | |
| if (count < Object.keys(programValue[1]).length) { | |
| listOfLocationTypes += ', '; | |
| } | |
| count++; | |
| } |
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
| #!/usr/bin/python | |
| # coding=utf-8 | |
| import os | |
| import sys | |
| NEED_APT_GET = ['PiCar-V', 'PiSmart'] | |
| class Installer_TK(object): | |
| try: | |
| import tkinter as tk |
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
| ^(((\([2-9]\d{2}\)\s?)|([2-9]\d{2}([\-\. ]))|([2-9]\d{2}))\d{3}([-. ]?\5)\d{4})$|^(((\([2-9]\d{2}\)\s?)|([2-9]\d{2}))((\d{3}(\-|.))|\d{3})\d{4})$ | |
| (208)734-3391 | |
| 208-734-3391 | |
| (208) 734-3391 | |
| 2087343391 | |
| 208.734.3391 | |
| 208 734 3391 | |
| (208)734.3391 | |
| #everything below should fail | |
| (208.734.3391 |
I hereby claim:
- I am kingpinzs on github.
- I am kingpinzs (https://keybase.io/kingpinzs) on keybase.
- I have a public key ASBCxBI49RbdfNvSFoY9wn41rh88r44FHvaP1DI_5ZBCWQo
To claim this, I am signing this object:
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
| page<?= sizeof($disclosure_links) > 1 ? 's' : ''; ?> |
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
| //smooth scroll to top | |
| $("#back-to-form").click(function(e) { | |
| e.preventDefault(); | |
| $([document.documentElement, document.body]).animate({ | |
| scrollTop: $("#anchor__contact-form").offset().top - 70 | |
| }, 1000); | |
| }); |
NewerOlder