Legend:
⚠️ - no supporting xrefs- 🚫 - obsolete/not active
- ❌ - invalid ID
Legend:
import fetchMock from 'fetch-mock'; | |
import {useState} from 'react'; | |
export default { | |
title: 'Components/Banner/Announcement', | |
component: AnnouncementBanner, | |
parameters: { | |
chromatic: { | |
// delay to make sure animation completes before chromatic takes snapshot |
#!/usr/bin/env node | |
/* eslint-disable no-console */ | |
const {execSync} = require('child_process'); | |
const https = require('https'); | |
if (!process.env.HAPPO_API_KEY || !process.env.HAPPO_API_SECRET || !process.env.SLACK_TOKEN) { | |
console.error('Missing HAPPO_API_KEY/HAPPO_API_SECRET/SLACK_TOKEN environment variable'); | |
process.exit(1); | |
} |
// For a detailed explanation regarding each configuration property, visit: | |
// https://jestjs.io/docs/en/configuration.html | |
const esModules = ['ansi-regex', 'ky', 'ky-universal', 'strip-ansi'].join('|'); | |
module.exports = { | |
// All imported modules in your tests should be mocked automatically | |
// automock: false, | |
// Stop running tests after `n` failures |
The default configuration for Yubikey is to support the CCID (Smart Card) interface. This does not play well with Cisco's AnyConnect VPN if you plan on connecting using a certificate on Windows.
When the CCID interface is enabled on the Yubikey, AnyConnect will produce a generic "The client agent has encountered an error" message when you try to use the certificate.
You will find something like these in the event viewer:
Date : 09/01/2020
import java.io.BufferedInputStream; | |
import java.io.IOException; | |
import java.nio.file.Files; | |
import java.nio.file.Path; | |
import java.util.regex.Matcher; | |
import java.util.regex.Pattern; | |
/** | |
* This utility class checks if a file is an Illustrator file. |
public class TypeInfoTest { | |
@Test | |
public void testTypeInfo() throws Exception { | |
Parent data = new Parent(); | |
data.data.add(new TypedChild()); | |
String json = new ObjectMapper().writer().writeValueAsString(data); |
clase Foo extends React.Component { | |
componentWillUnmount = () => { | |
// make sure debounced method gets cancelled | |
this.method.cancel(); | |
}; | |
method = debounce(() => { | |
... | |
}, 100); |
monitors_diagram_mark | |
digraph G { | |
node[fontsize=10] | |
{ | |
node[shape=note color=blue] | |
PGKB_DATA_LISTENER | |
PGKB_CONNECTION_LISTENER | |
} | |
{ | |
node[shape=folder color=green] |