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
// Creating a handler which executes runnables immediately | |
Mockito.when(uiHandler.post(Mockito.any(Runnable.class))).thenAnswer( | |
new Answer<Object>() { | |
@Override | |
public Object answer(InvocationOnMock invocation) throws Throwable { | |
Runnable msg = invocation.getArgument(0); | |
msg.run(); | |
return null; | |
} | |
} |
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
#!/bin/bash | |
# wait-for-nlu.sh | |
set -e | |
host="$1" | |
shift | |
cmd="$@" | |
http_status="$(curl -s -o /dev/null -I -w "%{http_code}" http://www.webserver.com:8080/)" |
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
/* In your config.h define a new variable RGBLIGHT_TIMEOUT and give it a value in milliseconds */ | |
#define RGBLIGHT_SLEEP // allows us to use rgblight_suspend() and rgblight_wakeup() in keymap.c | |
#define RGBLIGHT_TIMEOUT 30000 // 30 seconds |
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
export function getNodeIdFromUrl(url: string): string | null { | |
url = url.toLowerCase() | |
let startIndex: number = url.indexOf('node-id=') + 8 | |
let endIndex: number = url.indexOf('&', startIndex) | |
if (startIndex) { | |
if (endIndex > 0) { | |
return url.substring(startIndex, endIndex).replace('%3a', ':') | |
} else { | |
return url.substring(startIndex).replace('%3a', ':') | |
} |
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
export function isThisFile(url: string): boolean { | |
let formattedFilename = figma.root.name.trim() | |
formattedFilename = encodeURIComponent(formattedFilename).replace(/%20/g, '-') | |
let isThisFile = url.includes('figma.com') && url.includes(formattedFilename) | |
return isThisFile | |
} |
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
// is it possible to package widget UI elements into discrete reusable react-style components? | |
// I'd like to reuse some UI elements across my widget and currently do not know how to achieve this. | |
interface Props { | |
name: string; | |
} | |
function HelloWorld({ name }: Props) { | |
return <figma.widget.Text>Hello, {name}!</figma.widget.Text> | |
} |
OlderNewer