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
| Follow these rules when generating or modifying code: | |
| - Implement a function, class, or endpoint with a single, explicit responsibility. | |
| - Use Spring Boot best practices and Clean Code principles. | |
| - Use Lombok by default to remove boilerplate (e.g. @RequiredArgsConstructor, @Getter, @Value, @Builder, @Slf4j). | |
| - Use constructor-based dependency injection and keep dependencies immutable (final fields). | |
| - Keep controllers thin: HTTP orchestration only, no business logic. | |
| - Organize code by feature/bounded context, not by technical layers. | |
| - Modify only the explicitly specified files or paths. | |
| - Do NOT add code comments. Express intent through clear naming, small methods, and explicit types. |
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
| Test started: Mon 29/12/2025 10:10:54.63 | |
| =========================================== | |
| Android Version: | |
| 10 | |
| Device: | |
| RMX2020 | |
| ========================= | |
| Logs cleared. | |
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 | 2025-12-29T10:30:00+08:00 | 2025-12-29 | |
| 1 | 湿地公园 | RF002 | 0 | mm | 2025-12-29T10:30:00+08:00 | 2025-12-29 | |
| 2 | 水边围 | N12 | 0 | mm | 2025-12-29T10:30:00+08:00 | 2025-12-29 | |
| 3 | 石岗 | RF003 | 0 | mm | 2025-12-29T10:30:00+08:00 | 2025-12-29 | |
| 4 | 大美督 | RF004 | 0 | mm | 2025-12-29T10:30:00+08:00 | 2025-12-29 | |
| 5 | 大埔墟 | RF005 | 0 | mm | 2025-12-29T10:30:00+08:00 | 2025-12-29 | |
| 6 | 北潭涌 | RF006 | 0 | mm | 2025-12-29T10:30:00+08:00 | 2025-12-29 | |
| 7 | 滘西洲 | RF007 | 0 | mm | 2025-12-29T10:30:00+08:00 | 2025-12-29 | |
| 8 | 西贡 | N15 | 0 | mm | 2025-12-29T10:30:00+08:00 | 2025-12-29 |
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="es"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Reporte Top Películas Agosto 2025 - Cinexo</title> | |
| <!-- Google Fonts para tipografía premium --> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
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
| 2025-12-29 02:48:39,933 4884 [DEBUG] - XmlConfiguration is now operational | |
| 2025-12-29 02:48:40,759 4884 [DEBUG] - Adding new type 'CygwinService' for type 'IAlternativeSourceRunner' from assembly 'choco' | |
| 2025-12-29 02:48:40,775 4884 [DEBUG] - Adding new type 'CygwinService' for type 'IInstallSourceRunner' from assembly 'choco' | |
| 2025-12-29 02:48:40,791 4884 [DEBUG] - Adding new type 'PythonService' for type 'IAlternativeSourceRunner' from assembly 'choco' | |
| 2025-12-29 02:48:40,826 4884 [DEBUG] - Adding new type 'PythonService' for type 'IListSourceRunner' from assembly 'choco' | |
| 2025-12-29 02:48:40,837 4884 [DEBUG] - Adding new type 'PythonService' for type 'IInstallSourceRunner' from assembly 'choco' | |
| 2025-12-29 02:48:40,853 4884 [DEBUG] - Adding new type 'PythonService' for type 'IUninstallSourceRunner' from assembly 'choco' | |
| 2025-12-29 02:48:40,869 4884 [DEBUG] - Adding new type 'RubyGemsService' for type 'IAlternativeSourceRunner' from assembly 'choco' | |
| 2025-12-29 02:48:40,884 4884 [DEBUG] - Adding new typ |
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> | |
| <style> | |
| body { margin: 0; background: transparent; overflow: hidden; } | |
| .grid { | |
| display: grid; | |
| grid-template-columns: repeat(4, 1fr); | |
| grid-template-rows: repeat(2, 1fr); | |
| width: 100vw; height: 100vh; |
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
| /** | |
| * Fancy ID generator that creates 20-character string identifiers with the following properties: | |
| * | |
| * 1. They're based on timestamp so that they sort *after* any existing ids. | |
| * 2. They contain 72-bits of random data after the timestamp so that IDs won't collide with other clients' IDs. | |
| * 3. They sort *lexicographically* (so the timestamp is converted to characters that will sort properly). | |
| * 4. They're monotonically increasing. Even if you generate more than one in the same timestamp, the | |
| * latter ones will sort after the former ones. We do this by using the previous random bits | |
| * but "incrementing" them by 1 (only in the case of a timestamp collision). | |
| */ |
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\edecoder\edecoder.nupkg" checksum="D0305EB576017E3E2428534C99E5256A" /> | |
| <file path="C:\ProgramData\chocolatey\lib\edecoder\edecoder.nuspec" checksum="5E42BE26C6FB26DA0A5F58A264AE8F3A" /> | |
| <file path="C:\ProgramData\chocolatey\lib\edecoder\tools\chocolateybeforemodify.ps1" checksum="2B2CDB8149B341BB4F2EB019127B3032" /> | |
| <file path="C:\ProgramData\chocolatey\lib\edecoder\tools\chocolateyinstall.ps1" checksum="94AFDCF2E4D40D840A7C6CD479FBB0B3" /> | |
| <file path="C:\ProgramData\chocolatey\lib\edecoder\tools\eDecoder.zip" checksum="30B8E54C10F5424B0E1DB1ACE5C8DC75" /> | |
| <file path="C:\ProgramData\chocolatey\lib\edecoder\tools\packageArgs.json" checksum="2E71159B1D40F8D08B8085112271D490" /> | |
| </files> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.