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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>CookieStore API Demo - Theme Switcher</title> | |
<style> | |
body { | |
font-family: system-ui, -apple-system, sans-serif; | |
line-height: 1.6; |
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
package main | |
import ( | |
// "fmt" | |
"strings" | |
"sync" | |
"ergo.services/ergo/act" | |
"ergo.services/ergo/gen" | |
"ergo.services/meta/websocket" |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Embed Banner</title> | |
<style> | |
.vite-host-banner { | |
display: flex; | |
align-items: center; |
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 async function handler() { | |
const topStoriesUrl = "https://hacker-news.firebaseio.com/v0/topstories.json"; | |
// Fetch the top stories IDs | |
const response = await fetch(topStoriesUrl); | |
const storyIds = await response.json(); | |
const top5StoryIds = storyIds.slice(0, 5); | |
// Fetch the story details for each top story in parallel | |
const storyDetailsPromises = top5StoryIds.map((id) => | |
fetch(`https://hacker-news.firebaseio.com/v0/item/${id}.json`).then((res) => |
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: configuration.konghq.com/v1 | |
kind: KongPlugin | |
metadata: | |
name: hello-service-host-rewrite | |
# The plugin must be created in the same namespace as the ingress. | |
namespace: kong | |
plugin: request-transformer | |
config: | |
add: | |
headers: |
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
createNotification(message) { | |
return new Notification(`${message.author.name} sent a message`, { | |
body: message.text | |
}); | |
} |
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
checkNotificationPromise() { | |
try { | |
Notification.requestPermission().then(); | |
} catch (e) { | |
return false; | |
} | |
return 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
componentDidMount() { | |
this.askNotificationPermission(); | |
} | |
askNotificationPermission = async () => { | |
// check if the browser supports notifications | |
if ("Notification" in window) { | |
if (this.checkNotificationPromise()) { | |
const permission = await Notification.requestPermission(); | |
this.handlePermission(permission); |
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
<div style="text-align:center"> | |
<h1>Conversational UI</h1> | |
</div> | |
<kendo-chat [messages]="messages" [user]="user"></kendo-chat> |
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 class AppComponent { | |
readonly bot: User = { | |
id: 0, | |
name: "bot" | |
}; | |
user: User = { id: Date.now().toString() }; | |
messages: Message[] = [ | |
{ | |
author: this.bot, |
NewerOlder