A list of ESLint plugins in no particular order. All are flat config compatible (which tbh shouldn't need to be stated).
https://www.upi.com/Top_News/US/2011/07/12/Archivists-preparing-Robert-Kennedy-papers/58081310486946/ | |
This photograph, part of the John F. Kennedy Presidential Library, taken in 1960 shows Brothers John F. Kennedy, Robert F. Kennedy, and Edward M. Kennedy in Hyannis Port, Cape Cop, Massachusetts. This image is one of the more than 1,500 images that the National Archives has released in their "Access to a Legacy" project, which is an online digital archive of high interest material from President John F. Kennedy's official and personal records. The collection consist of photographs, audio recordings, speech drafts, films and other material. UPI/John F. Kennedy Presidential Library and Museum | License Photo | |
https://newsroom.ap.org/editorial-photos-videos/detail?itemid=6687d47c68e146d9b261d2cf54cdbdc1&mediatype=photo | |
Sen. John F. Kennedy and Robert Kennedy | |
https://newsroom.ap.org/editorial-photos-videos/detail?itemid=6bce0629cf3f43fb88724c0eec26d32b&mediatype=photo | |
Sen. John F. Kennedy and Robert Ken |
The title kind of sounds like gibberish but wait let me explain.
const main = async () => {
const promise1 = Promise.resolve(Math.round(Math.random() * 100));
const promise2 = promise1.then((value1) => value1 + 1);
const [value1, value2] = await Promise.all([promise1, promise2]);
// Value 1: 49, Value 2: 50
console.log(`Value 1: ${value1}, Value 2: ${value2}`);
{ | |
"name": "libxslt-wasm-demo", | |
"private": true, | |
"version": "0.0.0", | |
"dependencies": { | |
"husky": "^9.1.7", | |
"lint-staged": "^16.1.0" | |
} | |
} |
Pioneer Photographers from the Mississippi to the Continental Divide: A Biographical Dictionary, 1839-1865, Peter E. Palmquist, Thomas R. Kailbourn, 2005, Page 447
[Justus E. Moore and Captain Ward] received official permission to set up their daguerreian apparatus in the Capitol, including in the private chambers of Vice President Johnson and in the chamber of the Senate Committee on Military Affairs. In early March, Moore wrote that he and Ward had "taken many likenesses of the most distinguished members of the Senate and the House of Representatives." Even newly elected President William Henry Harrison sat for Moore and Ward in early March; their portrait of Harrison is thought to have been the first ever taken of a president, and probably was the last portrait taken of him before his death in April 1841.
Sources:
- Thomas M. Weprich, "The Pencil of Nature in Washington, D.C.: Daguerre-otyping the President," Daguerreian Annual 1995 (Pittsburgh: Daguerreian Society,1995), pp. 115, 117 nn. 1-3; New Yor
- Designed by Thomas U. Walter in 1858
- Historic walnut desk
- Occupied by the presiding officer of the United States Senate since 1858 - 1949
- First user was Vice President John Breckenridge (1857-1861)
- Last user was Vice President Alben W. Barkley from January 3, 1949 to July 1949
A color photo of the Research/ Reading Room in Margaret I. King North Library. The desk at the left was Vice President Barkley's desk from the United States Senate. Photographer: Terry Warth, 1985, University of Kentucky, University of Kentucky general photographic prints
For any losers like me who wanted a list of all the art owned by the White House and their histories: I found this pdf from Gerald Ford for "Items acquired for the White House Collection 1973-1974" (I think the heading is wrong because there are some things from 1970, 1972, etc.). I guess there was some controversy that https://en.wikipedia.org/wiki/Lansdowne_portrait was not done by Stuart
If you want the NARA url it's here https://catalog.archives.gov/id/81556669
Box 33, folder “Curator's Office - General (3)” of the Betty Ford White House Papers, 1973-1977 at the Gerald R. Ford Presidential Library. Curator's Office - General (3)
Even before President Nixon formally named it the Roosevelt Room, a tradition existed of Democratic administrations hanging Alfred Jonniaux's portrait of Franklin D. Roosevelt over the mantel with Theodore Roosevelt's equestrian portrait by Tade Styka titled Rough Rider hung on the south wall. Republican administrations hung Teddy Roosevelt's painting above the mantel and moved FDR's portrait to the south wall. Bill Clinton decided to keep the landscape formatted Teddy Roosevelt portrait above the mantel and FDR's portrait on the south wall.
FDR: (1933-1945) Can't find anything here other than he had an aquarium and fish in here. I find it unlikely he would put a picture of himself up and Alfred Jonniaux's portrait of Franklin D. Roosevelt hadn't been painted yet (1958).
Truman
Can't find anything here either.
Eisenhower
Suppose you want to set up VSCode with Emscripten. In my case, I am using devcontainers with Docker and Emscripten's official Docker image (emscripten/emsdk
), but any VSCode installation should do.
Run emconfigure env
and you should get an output similar to this:
...
EM_CONFIG=/emsdk/.emscripten
CC=/emsdk/upstream/emscripten/emcc
CXX=/emsdk/upstream/emscripten/em++
AR=/emsdk/upstream/emscripten/emar
Suppose you are wanting to use Emscripten's Embind with an Enum.
// exif-byte-order.h
typedef enum {
EXIF_BYTE_ORDER_MOTOROLA,
EXIF_BYTE_ORDER_INTEL
} ExifByteOrder;