I hereby claim:
- I am hassankhan on github.
- I am skrawg (https://keybase.io/skrawg) on keybase.
- I have a public key ASAwKlillIFsrKZQYU3-gWZ8cDfF9R5FY5THLR0bfMtk1go
To claim this, I am signing this object:
-Dsun.java2d.metal=true | |
-XX:+UseZGC | |
-XX:+ZGenerational |
#!/usr/bin/env zx | |
import { $, fs, path } from 'zx'; | |
import { XMLParser, XMLBuilder } from 'fast-xml-parser'; | |
const junitDir = path.resolve(process.cwd(), 'coverage', 'junit'); | |
const mergedOutputFile = path.join(junitDir, 'complete-junit.xml'); | |
try { | |
const fileExists = await fs.exists(mergedOutputFile); |
import fs from 'fs/promises'; | |
import { readdirSync, statSync } from 'fs'; | |
import path from 'path'; | |
import { promisify } from 'util'; | |
import { exec as callbackExec } from 'child_process'; | |
const exec = promisify(callbackExec); | |
const COVERAGE_DIR = path.resolve(process.cwd(), 'coverage'); | |
const OUTPUT_DIR_RELATIVE = 'coverage'; |
const fs = require('fs'); | |
const path = require('path'); | |
const { | |
AndroidConfig, | |
WarningAggregator, | |
withAndroidManifest, | |
withAppBuildGradle, | |
withDangerousMod, | |
} = require('@expo/config-plugins'); |
import { useState } from 'react'; | |
import { StyleSheet, Text, View } from 'react-native'; | |
import ParallaxScrollView from '@/components/ParallaxScrollView'; | |
import { ThemedView } from '@/components/ThemedView'; | |
const Paragraph = ({ dropCap = false, dropCapLines = 3, children }) => { | |
const [lines, setLines] = useState<string[]>([]); | |
const [firstLetter, setFirstLetter] = useState<string>(); | |
const [lineHeight, setLineHeight] = useState<number>(16); |
I hereby claim:
To claim this, I am signing this object:
// Type definitions for Grommet | |
// Project: https://github.com/grommet/grommet | |
// Definitions by: Ryan C. Collins <https://www.ryancollins.io/> | |
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | |
/// <reference types="react" /> | |
declare module "grommet" { | |
// Components | |
export import Accordion = Grommet.Accordion; | |
export import AccordionPanel = Grommet.AccordionPanel; |
Fn::GetAtt
Fn::GetAtt
#!/usr/bin/env php | |
<?php | |
$help = <<<'HELP' | |
EXAMPLES | |
./project-phpunit-skelgen.php -s <dir> -o <dir> -b <file> | |
DESCRIPTION | |
Recursively find PHP files and run phpunit-skelgen to create unit test skeleton files. |