I hereby claim:
- I am quanglam2807 on github.
- I am quanglam2807 (https://keybase.io/quanglam2807) on keybase.
- I have a public key ASC8tJw2ZBondkArt4TgNb85k0XxtxSCLnq0rw0tEDHFQgo
To claim this, I am signing this object:
| // Modules to control application life and create native browser window | |
| const {app, BrowserWindow} = require('electron') | |
| const path = require('path') | |
| // Hide Electron from UA to improve compatibility | |
| // https://github.com/webcatalog/webcatalog-app/issues/182 | |
| app.userAgentFallback = app.userAgentFallback | |
| // Fix WhatsApp requires Google Chrome 49+ bug | |
| // App Name doesn't have white space in user agent. 'Google Chat' app > GoogleChat/8.1.1 | |
| .replace(` ${app.name.replace(/ /g, '')}/${app.getVersion()}`, '') |
| name: Cask | |
| on: | |
| push: | |
| branches: | |
| - master # trigger CI whenever a new commit is pushed to master branch | |
| jobs: | |
| publish: | |
| runs-on: macos-latest # run CI with latest available macOS version |
| cask "webcatalog" do | |
| version "24.0.0" | |
| sha256 "7f32b6f07d05d3c9acb8c95162c4513acccc643f8f4ed7ffc7412190bf67d92d" | |
| # github.com/quanglam2807/webcatalog/ was verified as official when first introduced to the cask | |
| url "https://github.com/quanglam2807/webcatalog/releases/download/v#{version}/WebCatalog-#{version}-mac.zip" | |
| appcast "https://github.com/quanglam2807/webcatalog/releases.atom" | |
| name "WebCatalog" | |
| homepage "https://getwebcatalog.com/" |
I hereby claim:
To claim this, I am signing this object:
| 0.0.0.0 news.ycombinator.com | |
| 0.0.0.0 theverge.com | |
| 0.0.0.0 www.theverge.com | |
| 0.0.0.0 avgle.com | |
| 0.0.0.0 www.avgle.com | |
| 0.0.0.0 tinhte.vn | |
| 0.0.0.0 www.tinhte.vn | |
| 0.0.0.0 mspoweruser.com | |
| 0.0.0.0 www.mspoweruser.com | |
| 0.0.0.0 tinder.com |
| #!/bin/bash | |
| filename="$1" | |
| while read -r line | |
| do | |
| words=($line) | |
| url=${words[0]} | |
| ep=${words[1]} | |
| youtube-dl -o "${ep} - %(title)s.%(ext)s" $url --write-sub --no-overwrites | |
| done < "$filename" |
| const fileinp = 'buy.inp'; | |
| fileout = 'buy.out'; | |
| maxtank = 15; | |
| maxmoney = 100; | |
| default_a = 10; | |
| chicken:array[1..4] of integer = (0,1,1,20); | |
| type tanktype = record | |
| a,b,c,val,orgin:longint; | |
| end; |