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
| $ bazel test //test/... --verbose_ | |
| failures --sandbox_debug | |
| INFO: Analyzed 27 targets (5 packages loaded, 6648 targets configured). | |
| INFO: From Compiling test/glibc_hacks/main.c: | |
| root: external/_main~toolchains~zig_sdk-macos-amd64/tools/x86_64-linux-gnu.2.28/../.. | |
| zig_cache_dir: /private/var/tmp/_bazel_chris/6c858e132b9297eb6238c2b551e7fa73/sandbox/darwin-sandbox/19/execroot/_main/../../../_zig_cache | |
| INFO: From Compiling test/glibc_hacks/main.c: | |
| root: external/_main~toolchains~zig_sdk-macos-amd64/tools/x86_64-linux-gnu.2.28/../.. | |
| zig_cache_dir: /private/var/tmp/_bazel_chris/6c858e132b9297eb6238c2b551e7fa73/sandbox/darwin-sandbox/18/execroot/_main/../../../_zig_cache | |
| INFO: From Compiling test/glibc_hacks/main.c: |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| IBKR -> Wise (USD): \$1 if over the withdrawal limit | |
| IBKR -> Singapore Banks (SGD): \$15 if over the withdrawal limit, 1/month | |
| // Not allowed at all. | |
| // Wise (USD) -> StraitsX: SWIFT fee (1.13 USD) | |
| // Wise (USD) -> Coinbase: Wire fee min. 11.33 USD | |
| StraitsX -> USDC on Ethereum: Eth network fee max. 30 USD | |
| StraitsX -> USDC on Polygon | |
| StraitsX -> USDT on Tron: Fee 2 USDT |
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 { Profiler, useState, useMemo } from 'react'; | |
| import { render, screen } from '@testing-library/react'; | |
| import userEvent from '@testing-library/user-event' | |
| let msgs = []; | |
| function pushMsg(id, phase, actualDuration, baseDuration, startTime, commitTime) { | |
| msgs.push([id, phase]) | |
| } | |
| function PushProfiler({id, children}) { | |
| return ( |
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
| https://github.com/jethrokuan/z |
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
| function nextFocusInput(e) { | |
| if (e.target.tagName == 'INPUT') { | |
| return; | |
| } | |
| if (!e.relatedTarget || e.relatedTarget.tagName != 'INPUT') { | |
| return; | |
| } | |
| e.preventDefault(); | |
| var allInputs = Array.from(document.querySelectorAll('input')); | |
| allInputs[allInputs.indexOf(e.relatedTarget) + 1].focus(); |
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
| function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } | |
| function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } | |
| function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } | |
| function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; de |
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
| function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } | |
| function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } | |
| function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } | |
| function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; de |
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
| 'use strict'; | |
| module.exports = function(file, api, options) { | |
| const j = api.jscodeshift; | |
| const root = j(file.source); | |
| const ReactUtils = require('./utils/ReactUtils')(j); | |
| function makeSafe(node) { | |
| if (node.type !== 'JSXElement') { | |
| return j.jsxExpressionContainer(node); |
NewerOlder