I hereby claim:
- I am diegosalazar on github.
- I am diegosalazar (https://keybase.io/diegosalazar) on keybase.
- I have a public key ASCUA8M_jJ9DZRPNgZJY_aOjxwsaAnG8ujhjOTWYTpVTSQo
To claim this, I am signing this object:
import React, { useEffect, useState } from 'react'; | |
// Some component that implements, among many features, a clock display: | |
export function HomePage() { | |
const [time, setTime] = useState(new Date().toLocaleTimeString()); | |
const [timerId, setTimerId] = useState<NodeJS.Timeout | null>(null); | |
useEffect(() => { | |
const id = setInterval(() => { | |
setTime(new Date().toLocaleTimeString()); |
name: Basic API call (Office 2013) | |
description: >- | |
Performs a basic Word API call using JavaScript with the "common API" syntax | |
(compatible with Office 2013). | |
host: WORD | |
api_set: {} | |
script: | |
content: | | |
$("#run").click(run); |
name: Basic API call (TypeScript) | |
description: Performs a basic Word API call using TypeScript. | |
host: WORD | |
api_set: {} | |
script: | |
content: | | |
$("#run").click(() => tryCatch(run)); | |
async function run() { | |
// Gets the current selection and changes the font color to red. |
AK | Alaska | |
---|---|---|
AL | Alabama | |
AR | Arkansas | |
AZ | Arizona | |
CA | California | |
CO | Colorado | |
CT | Connecticut | |
DE | Delaware | |
FL | Florida | |
GA | Georgia |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Dumber Gist</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"> | |
<base href="/"> | |
</head> | |
<!-- | |
Dumber gist uses dumber bundler, the default bundle file |
class Node | |
attr_reader :value | |
attr_accessor :next_node | |
def initialize(value, next_node = nil) | |
@value = value | |
@next_node = next_node | |
end | |
def end? |
# A node of a linked list | |
class Node | |
attr_reader :value, :next_node | |
def initialize(value, next_node = nil) | |
@value = value | |
@next_node = next_node | |
end | |
def reverse(reversed = nil) |
$.widget("paginatedAutocomplete", $.ui.autocomplete, { | |
options: { | |
minLength: 1, | |
sourceUrl: '', | |
pageSize: 10, | |
source: function (request, response) { | |
var self = this; | |
$.ajax({ | |
url: this.options.sourceUrl, |
I hereby claim:
To claim this, I am signing this object:
# Prevent me from accidentally exiting the shell | |
exit() { | |
echo "Exit the shell? y/n" | |
read a | |
if [ "$a" = "y" ]; then | |
builtin exit | |
fi | |
} |