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 React, {useRef} from 'react'; | |
| import {View, StyleSheet} from 'react-native'; | |
| import KinestexSDK from 'kinestex-sdk-react-native'; | |
| import { | |
| IntegrationOption, | |
| PlanCategory, | |
| KinesteXSDKCamera, | |
| IPostData, | |
| } from 'kinestex-sdk-react-native/src/types'; | |
| import {API_KEY, USER_ID, COMPANY_NAME} from '../config'; |
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
| *bold \*text* | |
| _italic \*text_ | |
| __underline__ | |
| ~strikethrough~ | |
| ||spoiler|| | |
| *bold _italic bold ~italic bold strikethrough ||italic bold strikethrough spoiler||~ __underline italic bold___ bold* | |
| [inline URL](http://www.example.com/) | |
| [inline mention of a user](tg://user?id=123456789) | |
|  |
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
| let getGroup = (row, index) => document.querySelector(`#company-page_cardContainerId__MSgxF > div > div.MuiBox-root.css-0 > div > div.MuiTableContainer-root.css-kg5r73 > table > tbody > tr:nth-child(${row}) > td:nth-child(${index}) p`) | |
| const cleanSalaray = (salary) => parseInt(salary.substring(1).split(',').join('')) | |
| let buildResult = () => { | |
| const result = {}; | |
| const count = document.querySelector("#company-page_cardContainerId__MSgxF > div > div.MuiBox-root.css-0 > div > div.MuiTableContainer-root.css-kg5r73 > table > tbody").childElementCount || 46; | |
| for (let i = 1; i <= count; i++) { | |
| try { | |
| const grade = getGroup(i, 2).innerText; | |
| const salary = cleanSalaray(getGroup(i, 4).innerText); |
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 = async function ({ minPrice, maxPrice, catalog }) { | |
| const activeProducts = []; | |
| async function processCategory(category) { | |
| try { | |
| const isActive = await checkIsActive(category); | |
| if (isActive) { | |
| const children = await getChildren(category); | |
| await processChildren(children); |
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
| installer -pkg ./mypackage.pkg -target /Applications |
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
| "browsers": { | |
| "patterns": [{ | |
| "name": "invalid.deprecated", | |
| "match": "(IE 10|IE_Mob 11|BlackBerry 10|BlackBerry 7|Samsung 4|OperaMobile 12.1)" | |
| }, | |
| { | |
| "name": "entity.other.inherited-class.browserslistmi", | |
| "match": "\\b((last 2 )|(unreleased ))?(Android|Baidu|BlackBerry|bb|Chrome|ChromeAndroid|and_chr|Edge|Electron|Explorer|ie|IE|ExplorerMobile|ie_mob|Firefox|ff|FirefoxAndroid|and_ff|iOS|IOS|ios_saf|Node|Opera|OperaMini|op_mini|OperaMobile|op_mob|QQAndroid|and_qq|Safari|Samsung|UCAndroid|and_uc|kaios)\\b( versions)?" | |
| }, | |
| { |
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
| package h_execution //nolint:golint,stylecheck | |
| type ( | |
| I = interface{} | |
| In = <-chan I | |
| Out = In | |
| Bi = chan I | |
| ) | |
| type Stage func(in In) (out Out) |