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 { useFocusRing } from '@react-aria/focus'; | |
| import { Modality } from '@react-aria/interactions'; | |
| import { mergeProps } from '@react-aria/utils'; | |
| import { Props } from '@ux-aspects-universal/react/utils'; | |
| import clsx from 'clsx'; | |
| import PropTypes from 'prop-types'; | |
| import * as React from 'react'; | |
| import { forwardRef, useCallback } from 'react'; | |
| import { ChipRemoveButton } from './chip-remove-button'; | |
| import { ChipProvider } from './chip.context'; |
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
| @Directive({ | |
| selector: '[testId]' | |
| }) | |
| export class TestIdDirective implements OnInit, OnDestroy { | |
| private isTestIdEnabled: boolean = environment.production === false; | |
| constructor(private el: ElementRef) { } | |
| ngOnInit() { | |
| if (this.isTestIdEnabled) { |
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
| find . -name "node_modules" -type d -prune | xargs du -chs |
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
| Stephanie Smith Solicitors & Associates | |
| 30 Bloomsbury Square, London, | |
| WC1A 2RJ, UK. | |
| | |
| I am the personal attorney to Steven Vandersande, a Dutch who was a consultant with Shell UK LTD here in London, who hereinafter shall be referred to as my late client. Unfortunately My late client lost his life in the MH17 plane crash on the 17th July, 2014 during one of his trip from Netherlands (Amsterdam) to Malaysia (Kuala Lumpur); my late client left no clear beneficiary to the fund deposited with a security company as next of kin to the fund except some vital documents related to the deposit with me. | |
| All efforts by me to trace his next of kin and relatives have proved abortive because he did not make any will prior to his death; since then I have made several inquiries/attempt to locate any of my late client's extended relatives and this has proved unsuccessful because he wanted to keep the $15,500,000.00 very private for investment/retirement plan before his untimely death. However, I deci |
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
| ### Keybase proof | |
| I hereby claim: | |
| * I am cmjio on github. | |
| * I am cmj (https://keybase.io/cmj) on keybase. | |
| * I have a public key ASD06wEiiMm2xRyfGoBpHeXln8S2jQYuT0Vg_p51G8dpWgo | |
| To claim this, I am signing this object: |
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
| var fs = require('fs'); | |
| var input = fs.readFileSync('./input.txt', 'utf8'), | |
| keypad = [ | |
| [null, null, 1, null, null], | |
| [null, 2, 3, 4, null], | |
| [5, 6, 7, 8, 9], | |
| [null, 'A', 'B', 'C', null], | |
| [null, null, 'D', null, null], | |
| ], |
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
| /** | |
| **/ | |
| var fs = require('fs'); | |
| var input = fs.readFileSync('./input.txt', 'utf8'), | |
| keypad = [ | |
| [1,2,3], | |
| [4,5,6], | |
| [7,8,9] | |
| ], |
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
| requirejs.config({ | |
| enforceDefine: true, | |
| paths: { | |
| jquery: [ | |
| '//cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js', | |
| 'js/jquery-2.0.3.min' | |
| ] | |
| } | |
| }); |
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
| set :application, "app name" | |
| set :repository, "https://username:password@repo.git" | |
| set :branch, "master" | |
| set :user, 'ssh user' | |
| set :scm, :git | |
| set :deploy_to, "/home/deploy_dir" | |
| set :deploy_via, :remote_cache | |
| set :use_sudo, false |