size | file |
---|---|
62.14 KB | build\static\js\2.821814f2.chunk.js |
784 B | build\static\js\runtime-main.cbc14a35.js |
530 B | build\static\js\main.3ec4d24c.chunk.js |
304 B | build\static\css\main.de44605d.chunk.css |
This file contains 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
## Configure eth0 | |
# | |
# vi /etc/sysconfig/network-scripts/ifcfg-eth0 | |
DEVICE="eth0" | |
NM_CONTROLLED="yes" | |
ONBOOT=yes | |
HWADDR=A4:BA:DB:37:F1:04 | |
TYPE=Ethernet | |
BOOTPROTO=static |
This file contains 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
<aero:SystemDropShadowChrome CornerRadius="10" Margin="10"> | |
<Border BorderThickness="1" BorderBrush="Black" Background="White" | |
Margin="0" CornerRadius="10"> | |
<Grid> | |
<Border Height="40" Background="#01000000" VerticalAlignment="Top" | |
CornerRadius="10,10,0,0" MouseLeftButtonDown="DragWindow" /> | |
<Rectangle x:Name="ResizeN" Fill="Yellow" VerticalAlignment="Top" | |
Height="4" Margin="9,-2,9,0" MouseEnter="DisplayResizeCursor" | |
MouseLeave="ResetCursor" PreviewMouseLeftButtonDown="Resize" /> | |
<Rectangle x:Name="ResizeE" Fill="Yellow" HorizontalAlignment="Right" |
This file contains 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
List() | |
var list = Immutable.List([1,2,3]) | |
// [1, 2, 3] | |
List.isList() | |
Immutable.List.isList(list) | |
// true | |
List.of() | |
var list = Immutable.List.of(1,2,3); |
This file contains 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
Get the information of PHP | |
========================== | |
sudo apt-get install software-properties-common -y | |
sudo add-apt-repository ppa:ondrej/nginx | |
sudo add-apt-repository ppa:ondrej/php | |
// The installation of php on Ubuntu configures Apache. |
size | file |
---|---|
64.22 KB | build\static\css\2.d4e7eff5.chunk.css |
63.71 KB | build\static\js\2.a4e2ff05.chunk.js |
848 B | build\static\js\runtime-main.b3febbbe.js |
528 B | build\static\js\main.25f39053.chunk.js |
303 B | build\static\css\main.d9b5e89a.chunk.css |
size | file |
---|---|
41.55 KB | build\static\js\2.5aa3c038.chunk.js |
1.83 KB | build\static\css\main.e89c07d1.chunk.css |
848 B | build\static\js\runtime-main.e78c30e6.js |
552 B | build\static\js\main.1f8bd29a.chunk.js |
metric | material-ui | ant design | tailwindcss |
---|---|---|---|
First Contentful Paint | 0.4 s | 0.5 s | 0.4 s |
Largest Contentful Paint | 0.4 s | 0.5 s | 0.4 s |
Time to Interactive | 0.4 s | 0.5 s | 0.4 s |
metric | material-ui | and design | tailwindcss |
---|---|---|---|
Loading | 3 ms | 18 ms | 3 ms |
Scripting | 49 ms | 35 ms | 18 ms |
Rendering | 2 ms | 6 ms | 2 ms |
This file contains 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 { useState } from 'react'; | |
import classnames from 'classnames'; | |
import { Box } from './Box'; // Assuming Box component is imported from a file | |
interface Slide { | |
[key: string]: any; | |
} | |
interface AttachElementsType { | |
isSimple: boolean; |
OlderNewer