Skip to content

Instantly share code, notes, and snippets.

<?xml version="1.0" ?><rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:media="http://search.yahoo.com/mrss/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title><![CDATA[Airplane Flying Handbook FAA-H-8083-3A - Vol. 1 by Federal Aviation Administration (1958 - )]]></title>
<link><![CDATA[https://librivox.org/airplane-flying-handbook-faa-h-8083-3a-vol-1-by-federal-aviation-administration/]]></link>
<description><![CDATA[This audiobook contains chapters 1 through 10 from the Airplane Flying Handbook FAA-H-8083-3A. Study of the handbook should include the PDF from the FAA, which is available at http://www.faa.gov/regulations_policies/handbooks_manuals/. From the preface: "The Airplane Flying Handbook is designed as a technical manual to introduce basic pilot skills and knowledge that are essential for piloting airplanes. It provides information on transition to other airplanes and the opera
Thai Hot and Sour Noodle Soup with Shrimp
Ingredients
- 2 ounced rice vermicelli
- 1 lemon grass stalks, trimmed to bottom, 6 inches
- 2 scallions, trimmed, white parts left whole, greed parts cut into 1 inch lengths
- 3 makrut lime leaves, torn if large (sometimes sold as kaffir lime leaves)
- 0.5 thai chiles, stemmed, left whole
- 0.5 thai chiles, stemmed, sliced thin
- 1.5 thai chiles, stemmed, sliced thin, for serving
Beet Salad with Goat Cheese and Argulua
Ingredients
- 2 pounds beets, trimmed, peeled and cut into 3/4 in pieces
- 1/2 teaspoon plus 1/8 teaspoon plus 2 pinches table salt, divided
- 4 ounces goat cheese, crumbled (about 1 cup)
- 1 tablespoons plus 1 tablespoon minced chives, divided
- 1/2 teaspoon grated lemon zest
- 5 teaspoons lemon juice plus extra for seasoning
- 1/2 teaspoon caraway seeds
# Spicy Gochujang Glazed Pork Chops
Ingredients
- 4 teaspoons gochujang paste
- 4 teaspoons white miso (or substitute red miso)
- 1 tablespoon soy sauce
- 1 tablespoon maple syrup
- 1 tablespoon orange juice
- 1 garlic clove, minced
- 1 teaspoon kosher salt
#include <map>
#include <boost/filesystem.hpp>
int main() {
std::map<float, std::vector<boost::filesystem::path>> labeledImages;
labeledImages[3] = { boost::filesystem::path("/"), };
labeledImages[7] = { boost::filesystem::path("/"), boost::filesystem::path("/tmp"), };
for (auto& labeledPathsPair : labeledImages) {
#include <map>
int main() {
std::map<int, int> m;
m[0] = m.size();
// m[0] can legally be either 0 or 1.
}
; Function Attrs: nounwind ssp uwtable
define i32 @main() #0 {
%1 = tail call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([3 x i8]* @.str, i64 0, i64 0), double 3.500000e+00) #3
ret i32 0
}
class Collider {
};
class SpecificCollider : public Collider {
};
struct ColliderDetails {
std::unique_ptr<Collider> collider;
ColliderDetails(ColliderDetails&& o) noexcept
struct JumpTableEntry {
int & usage;
};
int main() {
int x;
JumpTableEntry e = {x};
}
[2:25pm][wlynch@watermelon /tmp] cat foo.c
#include <assert.h>
#include <stdlib.h>
#include <stdio.h>
typedef struct _list {
int key;
int freq;
struct _list *next;
struct _list *prev;