Discover gists
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
| % Gist-ready — upload as: puh_jades_gs_z14_0_quasar_implications_v11.tex | |
| \documentclass[11pt,a4paper]{article} | |
| \usepackage[utf8]{inputenc} | |
| \usepackage{amsmath,amssymb,amsthm} | |
| \usepackage{siunitx} | |
| \usepackage{geometry} | |
| \usepackage{booktabs} | |
| \usepackage{xcolor} | |
| \usepackage{hyperref} | |
| \geometry{margin=1in} |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <files> | |
| <file path="C:\ProgramData\chocolatey\lib\commitmonitor\commitmonitor.nupkg" checksum="216350BDBD14132D870D16AFF8A99FD7" /> | |
| <file path="C:\ProgramData\chocolatey\lib\commitmonitor\commitmonitor.nuspec" checksum="0232A5401C4FFAD2CEB0519B9F13D91D" /> | |
| <file path="C:\ProgramData\chocolatey\lib\commitmonitor\tools\chocolateyInstall.ps1" checksum="CEB69BD457A0D520D51789690D7B4241" /> | |
| <file path="C:\ProgramData\chocolatey\lib\commitmonitor\tools\chocolateyUninstall.ps1" checksum="B5C1FF03C212C4A37489B8C27877FB5D" /> | |
| </files> | |
| </fileSnapshot> |
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
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) | |
| pragma solidity ^0.8.20; | |
| import {Context} from "../utils/Context.sol"; | |
| /** | |
| * @dev Contract module which provides a basic access control mechanism, where | |
| * there is an account (an owner) that can be granted exclusive access to |
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
| /*Inserted into the header file of an HTML document*/ | |
| <head> | |
| <style> | |
| div { | |
| display: block; | |
| } | |
| </style> | |
| </head> |
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
| AccountTriggerHandler.handleAfterInsert | |
| public static void handleAfterInsert(List<Account> newAccounts){ | |
| Id runningUserId = UserInfo.getUserId(); | |
| //JW: Only need to do this query once outside of the loop. | |
| User u = [SELECT Id, Email FROM User WHERE Id = :runningUserId]; | |
| //JW:Create an empty case list to store the case information | |
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
| { | |
| "description": "Monitor Claude Code usage, costs, tokens, and productivity metrics", | |
| "layout": [ | |
| { | |
| "h": 1, | |
| "i": "row-overview", | |
| "moved": false, | |
| "static": false, | |
| "w": 12, | |
| "x": 0, |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <files> | |
| <file path="C:\ProgramData\chocolatey\lib\quantumshooter\quantumshooter.nupkg" checksum="F459EFA8283266CB4187D4517E7DBA96" /> | |
| <file path="C:\ProgramData\chocolatey\lib\quantumshooter\quantumshooter.nuspec" checksum="3F80620D6B1D14D9912CBD56E794904A" /> | |
| <file path="C:\ProgramData\chocolatey\lib\quantumshooter\tools\chocolateyInstall.ps1" checksum="F5C3947688F23203AC3D6D452715F6F3" /> | |
| </files> | |
| </fileSnapshot> |
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
| Screen 0: minimum 320 x 200, current 3840 x 1080, maximum 16384 x 16384 | |
| eDP-1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 344mm x 193mm | |
| 1920x1080 60.05 + 60.01* 59.97 59.96 59.93 | |
| 1680x1050 59.95 59.88 | |
| 1400x1050 59.98 | |
| 1600x900 59.99 59.94 59.95 59.82 | |
| 1280x1024 60.02 | |
| 1400x900 59.96 59.88 | |
| 1280x960 60.00 | |
| 1440x810 60.00 59.97 |
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 numpy as np | |
| import matplotlib.pyplot as plt | |
| # PUH v11: Kelly DCBH Eccentric GW Sim — PSR Merger Inspiral | |
| t = np.linspace(0, 10, 1000) # Time to merger (arb.) | |
| e0 = 0.8 # Initial eccentricity (PSR asymmetry) | |
| a0 = 100 # Semi-major (knot cluster) | |
| # Eccentric decay de/dt ~ - (304/15) e^5 / (1-e^2)^{5/2} (toy Peters) | |
| de_dt = - (304/15) * e0**5 / (1 - e0**2)**(5/2) |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <files> | |
| <file path="C:\ProgramData\chocolatey\lib\quantumdreams\quantumdreams.nupkg" checksum="E1D3CFF7061E103D7D0138359D6A67C8" /> | |
| <file path="C:\ProgramData\chocolatey\lib\quantumdreams\quantumdreams.nuspec" checksum="3897B2F243FB062A0A9A9B96E4BE766D" /> | |
| <file path="C:\ProgramData\chocolatey\lib\quantumdreams\tools\chocolateyInstall.ps1" checksum="59D20E74A6FC86400A9BB72EC8A00185" /> | |
| </files> | |
| </fileSnapshot> |
NewerOlder