USS Althea
Three ships of the United States Navy have been named Althea, after a shrub of the mallow family; the rose of sharon or a hollyhock.
- USS Althea (1862) was a collier that served during the Civil War.
- USS Althea (1863) was a tugboat that served during the Civil War.
- USS Althea (SP-218) was a motorboat built in 1907.
Sources
- This article incorporates text from the public domain Dictionary of American Naval Fighting Ships. The entry can be found here.
gollark: e.g.PotatOS
gollark: Not all Lua is created equal.
gollark: It's maaaaaagic.
gollark: From potatOS sandboxing somewhere.
gollark: ```luafunction new.find(wildcard) local function recurse_spec(results, path, spec) -- From here: https://github.com/Sorroko/cclite/blob/62677542ed63bd4db212f83da1357cb953e82ce3/src/emulator/native_api.lua local segment = spec:match('([^/]*)'):gsub('/', '') local pattern = '^' .. segment:gsub('[*]', '.+'):gsub('?', '.') .. '$' if new.isDir(path) then for _, file in ipairs(new.list(path)) do if file:match(pattern) then local f = new.combine(path, file) if new.isDir(f) then recurse_spec(results, f, spec:sub(#segment + 2)) end if spec == segment then table.insert(results, f) end end end end end local results = {} recurse_spec(results, '', wildcard) return results end```
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.