Ionic version:
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
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
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 argparse | |
| from configparser import ConfigParser | |
| import re | |
| parser = argparse.ArgumentParser(description='Transform issue name branch name.') | |
| parser.add_argument('name', metavar='S', default=None, | |
| help='branch name') | |
| # parser.add_argument('--sum', dest='accumulate', action='store_const', | |
| # const=sum, default=max, | |
| # help='sum the integers (default: find the max)') |
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 cheerio = require('cheerio') | |
| // TODO: feed me with selected dom element with class of .profile-detail | |
| const detailsCs = { data: ''} | |
| const ce = cheerio.load(detailsCs.data, { | |
| withDomLvl1: true, | |
| normalizeWhitespace: true, | |
| decodeEntities: true | |
| }); |
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
| apiVersion: v1 | |
| data: | |
| database.json: | | |
| { | |
| "defaultConnection": "default", | |
| "connections": { | |
| "default": { | |
| "connector": "mongoose", | |
| "settings": { | |
| "uri": "mongodb://..." |
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
| tabs = document.querySelectorAll('.subrow-box .url') | |
| str = ''; | |
| for (i=0;i<tabs.length;i++){ | |
| console.log(tabs[i].innerHTML) | |
| if (tabs[i].innerHTML != null){ | |
| str += tabs[i].innerHTML+'\n' | |
| } | |
| } | |
| copy(str) |
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
| /** @jsx jsx */ | |
| import { jsx } from '@emotion/core'; | |
| import React, { useEffect, useState, useRef, Ref } from 'react'; | |
| import { useSelector, useDispatch } from 'react-redux'; | |
| // import { AutoSizer, List, InfiniteLoader } from 'react-virtualized'; | |
| import AutoSizer from 'react-virtualized-auto-sizer'; | |
| import InfiniteLoader from 'react-window-infinite-loader'; | |
| import { FixedSizeList } from 'react-window'; | |
| import SearchSection from '../../src/components/searchSection'; |
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
| interface Mappable<T> { | |
| map: <R>(fn: (x: T) => R) => Mappable<R>; | |
| valueOf: () => T; | |
| } | |
| const identity = <T>(value: T): Mappable<T> => ({ | |
| map: <R>(fn: (x: T) => R): Mappable<R> => identity(fn(value)), | |
| valueOf: () => value, | |
| }); |
- Download Linux x86 Compressed Archive
- make sure you have meson and ninja packages installed on arch your system
- if something goes wrong refer to scrcpy BUILD doc
export ANDROID_SDK_ROOT=/home/$USER/Android/Sdk
tar -xvzf jdk-8u261-linux-i586.tar.gz
sudo cp -r jdk1.8.0_261 /usr/lib/jvm
archlinux-java status
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
| Widget -> navigation with argument -> bloc argument -> bloc of blocs action -> [bloc A] / config params -> bloc slice based on argument => | |
| navigated screen with bloc slice config from navigation arg |
OlderNewer