I hereby claim:
- I am naxhh on github.
- I am nax (https://keybase.io/nax) on keybase.
- I have a public key whose fingerprint is 5A2F 8C93 E77B D548 8715 9CD8 BF85 FA9A F8DF ED6E
To claim this, I am signing this object:
| version: "3" | |
| services: | |
| sonarr: | |
| image: lscr.io/linuxserver/sonarr | |
| container_name: sonarr | |
| environment: | |
| - PUID=0 | |
| - PGID=0 | |
| - TZ=Europe/Madrid | |
| volumes: |
| // ==UserScript== | |
| // @name MoneyMeikah2 | |
| // @namespace https://www.mintos.com | |
| // @version 0.1 | |
| // @description Calculates the profit generated on each loan and profit per day | |
| // @author DonNadie | |
| // @match https://www.mintos.com/* | |
| // @grant none | |
| // ==/UserScript== |
| { | |
| "color_scheme": "Packages/User/SublimeLinter/Monokai (SL).tmTheme", | |
| "create_window_at_startup": false, | |
| "folder_exclude_patterns": | |
| [ | |
| ".svn", | |
| ".git", | |
| ".DS_Store", | |
| "__pycache__", | |
| "*.pyc", |
| - Finish 1st scala course (coursera) | |
| - Start and finish 2nd scala course (coursera) | |
| - Learn android development (at least 1 usefull app, camlistore app?) | |
| - .? |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| /** | |
| * POC of an error. | |
| * | |
| * Error log was confusing: | |
| * | |
| * PHP Fatal error: Call to undefined method Config::getClassInfo() in /path/Config.php on line 475 | |
| * PHP Fatal error: Class 'GetEnvironmentInfo' not found in /path/autoprepend5.lib.php on line 327 | |
| * | |
| * Finally problem was related to I18N class. |
| #lang racket | |
| (provide (all-defined-out)) ;; so we can put tests in a second file | |
| ;; definition of structures for MUPL programs | |
| (struct var (string) #:transparent) ;; a variable, e.g., (var "foo") | |
| (struct int (num) #:transparent) ;; a constant number, e.g., (int 17) | |
| (struct add (e1 e2) #:transparent) ;; add two expressions | |
| (struct ifgreater (e1 e2 e3 e4) #:transparent) ;; if e1 > e2 then e3 else e4 | |
| (struct fun (nameopt formal body) #:transparent) ;; a recursive(?) 1-argument function | |
| (struct call (funexp actual) #:transparent) ;; function call |
| <?php | |
| require __DIR__ . '/vendor/autoload.php'; | |
| $features_path = __DIR__ . 'test/Behat/'; | |
| $project = 'project'; | |
| $keywords = new Behat\Gherkin\Keywords\CachedArrayKeywords( __DIR__ . '/vendor/behat/gherkin/i18n.php' ); | |
| $lexer = new Behat\Gherkin\Lexer($keywords); | |
| $parser = new Behat\Gherkin\Parser($lexer); |
| ### Keybase proof | |
| I hereby claim: | |
| * I am naxhh on github. | |
| * I am nax (https://keybase.io/nax) on keybase. | |
| * I have a public key whose fingerprint is 15D7 69FE 422E 1A3F 5DFB DDD4 6810 EE31 37A8 BF52 | |
| To claim this, I am signing this object: |
| # Login admin | |
| > use admin | |
| > db.auth('user','pass') | |
| #Basic shows | |
| > show dbs | |
| > show collections | |
| > db.collection.getIndexes() | |
| #Create Index |