Instantly share code, notes, and snippets.
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
@available(iOS 13.0, *) | |
func makeSecure(window: UIWindow) { | |
DispatchQueue.main.async { | |
print("make window secure") | |
let field = UITextField() | |
field.isSecureTextEntry = true | |
window.addSubview(field) | |
window.layer.superlayer?.addSublayer(field.layer) | |
field.layer.sublayers?.last?.addSublayer(window.layer) |
7up-charsi /README.md
CreatedJune 27, 2025 02:48
This is inspired byhttps://fasterthanli.me/blog/2020/a-half-hour-to-learn-rust/
the commandzig run my_code.zig
will compile and immediately run your Zigprogram. Each of these cells contains a zig program that you can try to run(some of them contain compile-time errors that you can comment out to playwith)
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
Yacht | |
(Yet Another Cycle Hunting Table) | |
------------------------------------------------------------------------------- | |
Forewords : | |
------------------------------------------------------------------------------- | |
This document is based on : | |
- 9th Edition of M68000 8-16-32-bit Microporcessor User's Manual | |
(Motorola, 1993) (laterly refered as M68000UM) |
tesseract-creator /n8n-summer-2025-intermediate-masterclass-resources-github-gist.txt
Last activeJuly 18, 2025 22:07
This is the Github Gist that is referenced in the Summer 2025 n8n Masterclass & Mini Bootcamp. 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
Summer 2025 Tesseract n8n Masterclass for Building Agentic Orchestrated Pipelines | |
_________________________________________________________________________________ | |
This Gist contains all of the node content that was used during the creation of the tutorial. You can copy and paste these directly into their respective nodes if you want to follow along with the Core Tutorial. | |
CRITICAL NOTE: If you are a beginner and are planning to follow along with the tutorial, it is important that you don't change the names of any of the nodes. You certainly can, but know that if you do, you will need to correctly redefine the new name values. Very easy to do and the tuorial shows you how to do that multiple times, but if you just want to get through the first build fast, then use the same names. When you do this, you will be able to copy and paste the values below and they will be green. | |
The actual values to use and what you need to copy for each node is in between the 3 dashes, like this: | |
--- |
NewerOlder