Garland, Arkansas

Garland, also known as Garland City,[3] is a town[4] in Miller County, Arkansas, United States. It is part of the Texarkana, Texas - Texarkana, Arkansas Metropolitan Statistical Area. The population was 242 at the 2010 census.

Garland, Arkansas
Location of Garland in Miller County, Arkansas.
Coordinates: 33°21′44″N 93°42′54″W
CountryUnited States
StateArkansas
CountyMiller
Area
  Total0.88 sq mi (2.27 km2)
  Land0.88 sq mi (2.27 km2)
  Water0.00 sq mi (0.00 km2)
Elevation
226 ft (69 m)
Population
 (2010)
  Total242
  Estimate 
(2019)[2]
236
  Density269.10/sq mi (103.91/km2)
Time zoneUTC-6 (Central (CST))
  Summer (DST)UTC-5 (CDT)
Zip Code
71839
FIPS code05-25780
GNIS feature ID0076999

Former Nevada Governor Kenny Guinn was born in Garland.

Geography

Garland is located at 33°21′44″N 93°42′54″W (33.362268, -93.715081).[5]

According to the United States Census Bureau, the town has a total area of 2.1 km2 (0.8 mi2), all land.

Demographics

Historical population
CensusPop.
1910277
192037033.6%
193042514.9%
1940325−23.5%
19503518.0%
19603777.4%
1970321−14.9%
1980660105.6%
1990415−37.1%
2000352−15.2%
2010242−31.2%
Est. 2019236[2]−2.5%
U.S. Decennial Census[6]
2014 Estimate[7]

As of the census[8] of 2000, there were 352 people, 133 households, and 88 families residing in the town. The population density was 165.7/km2 (428.6/mi2). There were 164 housing units at an average density of 77.2/km2 (199.7/mi2). The racial makeup of the town was 27.84% White, 69.89% Black or African American, 0.28% Native American, 0.28% Asian, and 1.70% from two or more races. 0.57% of the population were Hispanic or Latino of any race.

There were 133 households, out of which 25.6% had children under the age of 18 living with them, 35.3% were married couples living together, 23.3% had a female householder with no husband present, and 33.1% were non-families. 29.3% of all households were made up of individuals, and 13.5% had someone living alone who was 65 years of age or older. The average household size was 2.65 and the average family size was 3.24.

In the town, the population was spread out, with 25.6% under the age of 18, 9.1% from 18 to 24, 25.0% from 25 to 44, 26.4% from 45 to 64, and 13.9% who were 65 years of age or older. The median age was 38 years. For every 100 females, there were 92.3 males. For every 100 females age 18 and over, there were 87.1 males.

The median income for a household in the town was $17,500, and the median income for a family was $20,625. Males had a median income of $24,375 versus $15,000 for females. The per capita income for the town was $9,292. About 37.6% of families and 44.7% of the population were below the poverty line, including 62.5% of those under age 18 and 38.9% of those age 65 or over.

Infrastructure

Highways

Garland has a small airstrip on the south side of the town that is mostly used by crop dusters.

Education

Lafayette County School District operates public schools. On July 1, 1990, the Garland School District consolidated into the Lewisville School District. On July 1, 2003, the Lewisville district consolidated with the Stamps School District to form the Lafayette County district.[9]

gollark: I didn't do any horrible homoglyph hacks with THAT.
gollark: It uses the function, yes.
gollark: So, I finished that to highly dubious demand. I'd like to know how #11 and such work.
gollark: > `x = _(int(0, e), int(e, е))`You may note that this would produce slices of 0 size. However, one of the `e`s is a homoglyph; it contains `2 * e`.`return Result[0][0], x, m@set({int(e, 0), int(е, e)}), w`From this, it's fairly obvious what `strassen` *really* does - partition `m1` into 4 block matrices of half (rounded up to the nearest power of 2) size.> `E = typing(lookup[2])`I forgot what this is meant to contain. It probably isn't important.> `def exponentiate(m1, m2):`This is the actual multiplication bit.> `if m1.n == 1: return Mаtrix([[m1.bigData[0] * m2.bigData[0]]])`Recursion base case. 1-sized matrices are merely multiplied scalarly.> `aa, ab, ac, ad = strassen(m1)`> `аa, аb, аc, аd = strassen(m2)`More use of homoglyph confusion here. The matrices are quartered.> `m = m1.subtract(exponentiate(aa, аa) ** exponentiate(ab, аc), exponentiate(aa, аb) ** exponentiate(ab, аd), exponentiate(ac, аa) ** exponentiate(ad, аc), exponentiate(ac, аb) ** exponentiate(ad, аd)) @ [-0j, int.abs(m2.n * 3, m1.n)]`This does matrix multiplication in an inefficient *recursive* way; the Strassen algorithm could save one of eight multiplications here, which is more efficient (on big matrices). It also removes the zero padding.> `m = exponentiate(Mаtrix(m1), Mаtrix(m2)) @ (0j * math.sin(math.asin(math.sin(math.asin(math.sin(math.e))))), int(len(m1), len(m1)))`This multiples them and I think also removes the zero padding again, as we want it to be really very removed.> `i += 1`This was added as a counter used to ensure that it was usably performant during development.> `math.factorial = math.sinh`Unfortunately, Python's factorial function has really rather restrictive size limits.> `for row in range(m.n):`This converts back into the 2D array format.> `for performance in sorted(dir(gc)): getattr(gc, performance)()`Do random fun things to the GC.
gollark: > `globals()[Row + Row] = random.randint(*sys.version_info[:2])`Never actually got used anywhere.> `ε = sys.float_info.epsilon`Also not used. I just like epsilons.> `def __exit__(self, _, _________, _______):`This is also empty, because cleaning up the `_` global would be silly. It'll be overwritten anyway. This does serve a purpose, however, and not just in making it usable as a context manager. This actually swallows all errors, which is used in some places.> `def __pow__(self, m2):`As ever, this is not actual exponentiation. `for i, (ι, 𐌉) in enumerate(zip(self.bigData, m2.bigData)): e.bigData[i] = ι + 𐌉` is in fact just plain and simple addition of two matrices.> `def subtract(forth, 𝕒, polynomial, c, vector_space):`This just merges 4 submatrices back into one matrix.> `with out as out, out, forth:`Apart from capturing the exceptions, this doesn't really do much either. The `_` provided by the context manager is not used.> `_(0j, int(0, 𝕒.n))`Yes, it's used in this line. However, this doesn't actually have any effect whatsoever on the execution of this. So I ignore it. It was merely a distraction.> `with Mаtrix(ℤ(ℤ(4))):`It is used again to swallow exceptions. After this is just some fluff again.> `def strassen(m, x= 3.1415935258989):`This is an interesting part. Despite being called `strassen`, it does not actually implement the Strassen algorithm, which is a somewhat more efficient way to multiply matrices than the naive way used in - as far as I can tell - every entry.> `e = 2 ** (math.ceil(math.log2(m.n)) - 1)`This gets the next power of two in a fairly obvious way. It is used to pad out the matrix to the next power of 2 size.> `with m:`The context manager is used again for nicer lookups.> `Result[0] += [_(0j, int(e, e))]`Weird pythonoquirkiness again. You can append to lists in tuples with `+=`, but it throws an exception as they're sort of immutable.> `typing(lookup[4])(input())`It's entirely possible that this does things.

References

  1. "2019 U.S. Gazetteer Files". United States Census Bureau. Retrieved June 30, 2020.
  2. "Population and Housing Unit Estimates". United States Census Bureau. May 24, 2020. Retrieved May 27, 2020.
  3. highway signs on US 71 at AR 134 south of Fouke
  4. Local.Arkansas.gov - Garland, retrieved September 3, 2012
  5. "US Gazetteer files: 2010, 2000, and 1990". United States Census Bureau. 2011-02-12. Retrieved 2011-04-23.
  6. "Census of Population and Housing". Census.gov. Retrieved June 4, 2015.
  7. "Annual Estimates of the Resident Population for Incorporated Places: April 1, 2010 to July 1, 2014". Archived from the original on May 22, 2015. Retrieved June 4, 2015.
  8. "U.S. Census website". United States Census Bureau. Retrieved 2008-01-31.
  9. "ConsolidationAnnex_from_1983.xls." Arkansas Department of Education. Retrieved on October 13, 2017.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.