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
| # Maintainer: Diego Dorn <[email protected]> | |
| pkgname=pucoti-bin | |
| pkgver=1.2.0 | |
| pkgrel=1 | |
| pkgdesc="Desktop timer for tracking predicted vs actual task durations to overcome the planning fallacy" | |
| arch=('x86_64') | |
| url="https://github.com/ddorn/pucoti-tauri" | |
| license=('MIT') | |
| depends=( | |
| 'gtk3' |
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
| pkgname=pucoti | |
| pkgver=1.0.0 | |
| pkgrel=1 | |
| pkgdesc="A Tauri-based desktop timer for time estimation calibration" | |
| arch=('x86_64') | |
| url="https://github.com/ddorn/pucoti-tauri" | |
| license=('proprietary') | |
| depends=( | |
| 'webkit2gtk-4.1' | |
| 'gtk3' |
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
| package quantity | |
| import ( | |
| "fmt" | |
| "unsafe" | |
| ) | |
| type Quantity struct { | |
| // Scalar represents the magnitude of the quantity | |
| Scalar uint64 |
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
| {pkgs}: let | |
| pname = "pucoti"; | |
| version = "0.8.3"; | |
| luckypot = let | |
| pname = "luckypot"; | |
| version = "master"; | |
| in | |
| python.pkgs.buildPythonPackage { | |
| inherit pname version; |
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 xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office"> | |
| <head> | |
| <title> | |
| </title> | |
| <!--[if !mso]><!--> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <!--<![endif]--> | |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
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
| { | |
| "name": "me/crawler", | |
| "autoload": { | |
| "psr-4": { | |
| "Me\\Crawler\\": "src/" | |
| } | |
| }, | |
| "authors": [ | |
| { | |
| "name": "Félix Dorn", |
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
| [ | |
| 1 => 'one', | |
| 2 => 'two', | |
| 3 => 'three', | |
| 4 => 'four', | |
| 5 => 'five', | |
| 6 => 'six', | |
| 7 => 'seven', | |
| 8 => 'eight', | |
| 9 => 'nine', |
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
| $punctuationSigns = ['!', '"', '#', '$', '%', '&', '\'', '(', ')', '*', '+', ',', '-', '.', '/', ':', ';', '<', '=', '>', '?', '@', '[', '\\', ']', '^', '_', '`', '{', '|', '}', '~'] |
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
| Blade::directive('alpine', function (string $variables) { | |
| return <<<PHP | |
| <?php | |
| \$data = array_combine( | |
| array_map( | |
| fn (\$variable) => str_replace('$', '', \$variable), | |
| explode(',', '$variables') | |
| ), | |
| [$variables] | |
| ); |
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 re | |
| PRECEDENCES = {'+': 2, '-': 2, '*': 3, '/': 3, '^': 4} | |
| def has_greater_precedence(operator, comparison): | |
| return PRECEDENCES[operator] > PRECEDENCES[comparison] | |
| def peek(stack): |
NewerOlder