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
| ➜ argue git:(master) npx argue run --task "研究这个 issue 的解法:https://github.com/onevcat/argue/issues/22" --action "根据讨论结 果,实际解决这个issue,开PR" --verbose | |
| [argue] run started | |
| config: /Users/onevcat/.config/argue/config.json | |
| requestId: argue_1775868590900 | |
| task: 研究这个 issue 的解法:https://github.com/onevcat/argue/issues/22 | |
| agents: claude-agent, codex-agent | |
| rounds: 2..3 | composer: representative | |
| events: /Users/onevcat/.argue/output/argue_1775868590900/events.jsonl | |
| [argue] initial#0 dispatched -> claude-agent, codex-agent | |
| [argue] initial#0 codex-agent responded (claims+6, judgements=0, votes=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
| {"label":"Coverage","message":"61.4%","schemaVersion":1,"color":"yellow"} |
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
| <key>NSAppTransportSecurity</key> | |
| <dict> | |
| <key>NSAllowsArbitraryLoads</key> | |
| <true/> | |
| </dict> |
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
| using UnityEngine; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| /// <summary> | |
| /// Mono singleton Class. Extend this class to make singleton component. | |
| /// Example: | |
| /// <code> | |
| /// public class Foo : MonoSingleton<Foo> | |
| /// </code>. To get the instance of Foo class, use <code>Foo.instance</code> |
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 UIKit | |
| protocol DefaultValue { | |
| associatedtype Value: Decodable | |
| static var defaultValue: Value { get } | |
| } | |
| @propertyWrapper | |
| struct Default<T: DefaultValue> { | |
| var wrappedValue: T.Value |
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
| pkill -f "Jitouch" | |
| sleep 5 | |
| nohup ~/Library/PreferencePanes/Jitouch.prefPane/Contents/Resources/Jitouch.app/Contents/MacOS/Jitouch > /dev/null 2>&1 & |
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
| //Solution goes in Sources | |
| public struct Card: CustomStringConvertible { | |
| enum Suit: String { | |
| case spade = "♤", heart = "♡", club = "♧", diamond = "♢" | |
| // It is not the standard Texas poker rule. All suits are considered equal. | |
| // However, there is a test case to "brake tide by suit", in which "heart" is the largest. | |
| var value: Int { | |
| switch self { |
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
| #!/bin/bash | |
| ################################################################################ | |
| # This script will create universal binaries for OpenCV library for | |
| # iOS-based devices (iPhone, iPad, iPod, etc). | |
| # As output you obtain debug/release static libraries and include headers. | |
| # | |
| # This script was written by Eugene Khvedchenya | |
| # And distributed under GPL license | |
| # Support site: http://computer-vision-talks.com | |
| ################################################################################</p> |
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 UIKit | |
| import WebKit | |
| // Disableing `WKWebView` user zooming by returning `nil` in `UIScrollViewDelegate`'s | |
| // `viewForZooming` delegate method. | |
| // On iOS 12, the delegate method only called when set the web view itself as the | |
| // scroll view delegate. | |
| class WebView: WKWebView {} |
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
| /* ************************************************************************** | |
| Copyright 2012 Calvin Rien | |
| (http://the.darktable.com) | |
| Derived from a method in BuildManager, part of | |
| VoxelBoy's Unite 2012 Advanced Editor Scripting Talk. | |
| (http://bit.ly/EditorScripting) | |
| Licensed under the Apache License, Version 2.0 (the "License"); | |
| you may not use this file except in compliance with the License. |
NewerOlder