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
export default function cssText(el) { | |
const style = window.getComputedStyle(el); | |
const transformOrigin = ` transform-origin: ${style.transformOrigin};`; | |
return style.cssText + transformOrigin; | |
} |
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
TypeScript 31 hrs 2 mins βββββββββββββββββββββ 85.2% | |
Other 3 hrs 4 mins βββββββββββββββββββββ 8.4% | |
JavaScript 1 hr 49 mins βββββββββββββββββββββ 5.0% | |
SCSS 16 mins βββββββββββββββββββββ 0.7% | |
JSON 10 mins βββββββββββββββββββββ 0.5% |
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
sudo killall -STOP -c usbd |
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
defaults write -g CGFontRenderingFontSmoothingDisabled -bool NO |
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 fish_title -d 'Use PROCESS $PWD format, replacing /Users/username with ~' | |
set realhome ~ | |
if test "$_" != "fish" | |
echo $_ '' | |
else | |
echo '' | |
end | |
string replace -r '^'"$realhome"'($|/)' '~$1' $PWD | |
end |
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
/* | |
* Tencent is pleased to support the open source community by making WeUI available. | |
* | |
* Copyright (C) 2017 THL A29 Limited, a Tencent company. All rights reserved. | |
* | |
* Licensed under the MIT License (the "License"); you may not use this file except in compliance | |
* with the License. You may obtain a copy of the License at | |
* | |
* http://opensource.org/licenses/MIT | |
* |