$ pip3 install checkovDiscover 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
| adb logcat -s Unity | |
| --------- beginning of main | |
| 01-02 09:31:30.768 30762 30762 V Unity : Context Type: GameActivity | |
| 01-02 09:31:30.780 30762 30850 I Unity : UnityApplication::CreateInstance | |
| 01-02 09:31:30.780 30762 30850 I Unity : GameActivity Package Version '3.0.5' | |
| 01-02 09:31:30.806 30762 30850 I Unity : Starting Game Loop | |
| 01-02 09:31:30.806 30762 30850 I Unity : Handle cmd APP_CMD_START(11) | |
| 01-02 09:31:30.813 30762 30850 I Unity : Handle cmd APP_CMD_RESUME(12) | |
| 01-02 09:31:30.834 30762 30850 I Unity : Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17) | |
| 01-02 09:31:30.850 30762 30850 I Unity : Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17) |
https://discussions.unity.com/t/deferred/1579636/3
Render both, transparent and opaque objects, one at a time. For each object, we bind a list of lights that affect that it. On the GPU, we iterate over this list and accumulate lighting.
The upside of this approach is that this is dead-simple, and has a low CPU cost. For very simple scenes, this is a win.
Downsides are (a) overdraw, i.e. you pay for lighting pixels that will be later occluded by other geometry, (b) a smaller light limit, (c) incompatibility with GPU-driven rendering and GPU occlusion culling.
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 -S uv run --script | |
| # /// script | |
| # requires-python = ">=3.10" | |
| # dependencies = [ | |
| # "pillow", | |
| # ] | |
| # /// | |
| """Remove images from an EPUB file with interactive prompts.""" | |
| import zipfile |
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="pt-br"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Undertale Quest</title> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap'); | |
| body { |
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
| body { | |
| font-size: 14px; | |
| color: blue; | |
| } | |
| h1 { | |
| font-size: 18px; | |
| font-weight: bold; | |
| } |
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
| /* | |
| * AIO Downloader | |
| * Base Url: https://ssvid.net | |
| * Creator: krsna_081 | |
| ** https://whatsapp.com/channel/0029Vb72biW0QeasfexABN3H ** | |
| */ | |
| import axios from "axios"; |
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
| id | station | stationid | value | unit | obstime | date | |
|---|---|---|---|---|---|---|---|
| 0 | 流浮山 | RF001 | 0 | mm | 2026-01-02T11:45:00+08:00 | 2026-01-02 | |
| 1 | 湿地公园 | RF002 | 0 | mm | 2026-01-02T11:45:00+08:00 | 2026-01-02 | |
| 2 | 水边围 | N12 | 0 | mm | 2026-01-02T11:45:00+08:00 | 2026-01-02 | |
| 3 | 石岗 | RF003 | 0 | mm | 2026-01-02T11:45:00+08:00 | 2026-01-02 | |
| 4 | 大美督 | RF004 | M | mm | 2026-01-02T11:45:00+08:00 | 2026-01-02 | |
| 5 | 大埔墟 | RF005 | 0 | mm | 2026-01-02T11:45:00+08:00 | 2026-01-02 | |
| 6 | 北潭涌 | RF006 | 0 | mm | 2026-01-02T11:45:00+08:00 | 2026-01-02 | |
| 7 | 滘西洲 | RF007 | 0 | mm | 2026-01-02T11:45:00+08:00 | 2026-01-02 | |
| 8 | 西贡 | N15 | 0 | mm | 2026-01-02T11:45:00+08:00 | 2026-01-02 |
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> | |
| <head> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>For Aashima ❤️</title> | |
| <style> | |
| body{ | |
| margin:0; | |
| min-height:100vh; |