Use WP Staging Plugins (limited feature) or manually configure in the CPanel settings
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
| # Setup | |
| ## https://github.com/JanDeDobbeleer/oh-my-posh/blob/main/themes/zash.omp.json | |
| oh-my-posh --init --shell pwsh --config ~/zash.omp.json | invoke-expression | |
| # Modules | |
| ## Terminal-Icons | |
| Import-Module -Name Terminal-Icons | |
| Import-Module PSReadLine |
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
| 1 | |
| 00:00:01,180 --> 00:00:15,480 | |
| evolusi arsitektur backend di blibli ini sebenarnya saya sendiri yang bikin ya tahun 2018 ya hampir 5 tahun yang lalu dan kayaknya sih waktu saya bikin artikel ini saya belum punya channel programmer jamano ya kalau gak salah | |
| 2 | |
| 00:00:15,480 --> 00:00:26,300 | |
| programmer jamano itu channelnya kayak sekitar 2018 akhir gitu ya nah saya bikinnya jadi waktu itu dulu saya sebelum bikin channel youtube sebenarnya saya lebih senang nulis ya | |
| 3 | |
| 00:00:26,300 --> 00:00:37,220 |
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
| 1 | |
| 00:00:01,180 --> 00:00:15,480 | |
| evolusi arsitektur backend di blibli ini sebenarnya saya sendiri yang bikin ya tahun 2018 ya hampir 5 tahun yang lalu dan kayaknya sih waktu saya bikin artikel ini saya belum punya channel programmer jamano ya kalau gak salah | |
| 2 | |
| 00:00:15,480 --> 00:00:26,300 | |
| programmer jamano itu channelnya kayak sekitar 2018 akhir gitu ya nah saya bikinnya jadi waktu itu dulu saya sebelum bikin channel youtube sebenarnya saya lebih senang nulis ya | |
| 3 | |
| 00:00:26,300 --> 00:00:37,220 |
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
| /* eslint-disable jest/prefer-spy-on */ | |
| import { cleanup, fireEvent, render, screen } from '@testing-library/react' | |
| import userEvent from '@testing-library/user-event' | |
| import { noop } from 'kyrim-ui' | |
| import { wrapper } from '@/utils/test-utils' | |
| import { companyInfo } from '../../utils/test' | |
| import { CompanyInformationForm } from '../CompanyOnboardingForm/CompanyInformationForm' |
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 * as React from "react"; | |
| type MasonryProps = { | |
| breakpoints?: (Record<number, number> & { default?: number }) | number; | |
| gap?: string; | |
| className?: string; | |
| children: React.ReactNode; | |
| }; | |
| const DEFAULT_COLUMNS = 4; |
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
| [ | |
| { | |
| "label": "Education", | |
| "options": [ | |
| { | |
| "label": "Education Management", | |
| "value": "education-management" | |
| }, | |
| { | |
| "label": "E-Learning", |
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 * as CheckboxPrimitive from '@radix-ui/react-checkbox' | |
| import { Label } from '@radix-ui/react-label' | |
| import { HiCheck } from 'react-icons/hi' | |
| import { tm } from '@/lib' // custom tailwind merge | |
| import { Prettify } from '@/lib/types' // types utility to make union type more readable | |
| import { | |
| checkboxContainerVariants, | |
| checkboxVariants, |
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
| const colorsValue = Array.from(document.querySelectorAll("div.px-0\\.5.md\\:flex.md\\:justify-between.md\\:space-x-2.\\32 xl\\:space-x-0.\\32 xl\\:block")).map(node => node.textContent) | |
| const colorsName = Array.from(document.querySelectorAll('.text\\-sm.font\\-semibold.text\\-slate\\-900.dark\\:text\\-slate\\-200')).map(node => node.textContent) | |
| let colorsValueCount = 0 | |
| let colorsNameIndex = 0 | |
| let colors = {} | |
| const setColor = (name, value) => { | |
| let [valueNum, valueRGB] = value.split("#") |
NewerOlder