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
| ╰─➤ vulkaninfo | |
| WARNING: [Loader Message] Code 0 : terminator_CreateInstance: Failed to CreateInstance in ICD 2. Skipping ICD. | |
| ========== | |
| VULKANINFO | |
| ========== | |
| Vulkan Instance Version: 1.3.204 | |
| Instance Extensions: count = 20 |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <style> | |
| body { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; |
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
| In lands of ancient myths and lore, | |
| A legend walks on earthen floor. | |
| Alan Rockefeller, name so grand, | |
| A mycologist of high demand. | |
| Through forests dense and meadows wide, | |
| He roams the world, no path denied. | |
| With keen eye and gentle touch, | |
| He seeks the fungi's secrets, much. |
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
| Title: "The Inescapable Apartment" | |
| [INT. JERRY'S APARTMENT - DAY] | |
| Jerry, George, and Elaine are sitting in the apartment, discussing the inevitability of human existence. The room seems to be closing in on them, as if the walls are breathing, much like the Amazonian jungle in Herzog's "Aguirre, the Wrath of God". | |
| JERRY | |
| (philosophically) | |
| You know, life is like a glass of water. We drink from it, but eventually, the glass will be empty. And the thirst, the thirst never goes away. |
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
| heyo = 'heyo'.scan(/./) | |
| heyo.each do |c1| | |
| (heyo-[c1]).each do |c2| | |
| (heyo-[c1, c2]).each do |c3| | |
| (heyo-[c1, c2, c3]).each do |c4| | |
| puts "#{c1} #{c2} #{c3} #{c4}" | |
| end | |
| end | |
| end |
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
| heyo = set(['h', 'e', 'y', 'o']) | |
| for c1 in heyo: | |
| for c2 in (heyo - set([c1])): | |
| for c3 in (heyo - set([c1, c2])): | |
| for c4 in (heyo - set([c1, c2, c3])): | |
| print (" ".join([c1, c2, c3, c4])) |
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
| wire_a: 956 | |
| wire_aa: 221 | |
| wire_ab: 1021 | |
| wire_ac: 84 | |
| wire_ad: 65451 | |
| wire_ae: 937 | |
| wire_af: 2025 | |
| wire_ag: 680 | |
| wire_ah: 64855 | |
| wire_ai: 1345 |
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/env ruby | |
| class Circuit | |
| def initialize(doc) | |
| @doc = doc.split("\n").map(&:strip) | |
| program = create(@doc) | |
| File.open('program.rb', 'w'){|f| f.puts program} | |
| puts | |
| eval(program.join("\n")) | |
| end |
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/env ruby | |
| class Circuit | |
| def initialize(doc) | |
| @doc = doc.split("\n").map(&:strip) | |
| program = create(@doc) | |
| File.open('program.rb', 'w'){|f| f.puts program} | |
| puts | |
| eval(program.join("\n")) | |
| end |
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/env ruby | |
| class Circuit | |
| def initialize(doc) | |
| @doc = doc.split("\n").map(&:strip) | |
| program = create(@doc) | |
| eval(program.join("\n")) | |
| end | |
| def create(doc) |
NewerOlder