Lance Koth

Lance R. Koth is an American politician. He is a Republican representing the 20th district in the South Dakota House of Representatives.

Lance Koth
Member, South Dakota House of Representatives, 20th District
Assumed office
2019[1]
Personal details
Political partyRepublican
ResidenceMitchell, South Dakota[2]

Political career

In 2018, Koth ran for election to one of two seats representing District 20 in the South Dakota House of Representatives. He and fellow Republican Paul Miskimins won against Democrats Ione Klinger and James Schorzmann.[1]

As of July 2020, Koth sits on the following committees:[3]

  • Committee on Appropriations
  • Joint Committee on Appropriations
  • Interim Appropriations Committee

Electoral record

2018 general election: South Dakota House of Representatives, District 20[1]
Party Candidate Votes %
Republican Paul Miskimins 5,429 33.2%
Republican Lance Koth 4,756 29.1%
Democratic Ione Klinger 3,297 20.2%
Democratic James Schorzmann 2,866 17.5%
gollark: My "fix" is this:```lua--[["Fix" for bug PS#E9DCC81BSummary: `pcall(getfenv, -1)` seemingly returned the environment outside the sandbox.Based on some testing, this seems like some bizarre optimization-type feature gone wrong.It seems that something is simplifying `pcall(getfenv)` to just directly calling `getfenv` and ignoring the environment... as well as, *somehow*, `function() return getfenv() end` and such.The initial attempt at making this work did `return (fn(...))` instead of `return fn(...)` in an attempt to make it not do this, but of course that somehow broke horribly. I don't know what's going on at this point.This is probably a bit of a performance hit, and more problematically liable to go away if this is actually some bizarre interpreter feature and the fix gets optimized away.Unfortunately I don't have any better ideas. Also, I haven't tried this with xpcall, but it's probably possible, so I'm attempting to fix that too.]]local real_pcall = pcallfunction _G.pcall(fn, ...) return real_pcall(function(...) local ret = {fn(...)} return unpack(ret) end, ...)end local real_xpcall = xpcallfunction _G.xpcall(fn, handler) return real_xpcall(function() local ret = {fn()} return unpack(ret) end, handler)end```which appears to work at least?
gollark: Fixed, but I don't really know how or why.
gollark: ... should I create a bug report?
gollark: It returns two, actually. The second one. I don't know *what* the first one is doing.
gollark: Is this some weird implementation thing or is Lua actually defined/specified to work like this?!

References

  1. "Lance Koth". Ballotpedia. Retrieved 3 July 2020.
  2. "Lance Koth's Biography". Project Vote Smart. Retrieved 3 July 2020.
  3. "Representative Lance R. Koth - 2020". South Dakota Legislature. Retrieved 3 July 2020.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.