Skip to content

Instantly share code, notes, and snippets.

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';
*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)
![👍](tg://emoji?id=5368324170671202286)
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);
// '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);
installer -pkg ./mypackage.pkg -target /Applications
"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)?"
},
{
package h_execution //nolint:golint,stylecheck
type (
I = interface{}
In = <-chan I
Out = In
Bi = chan I
)
type Stage func(in In) (out Out)