Robert Oberst

Robert Oberst (born December 20, 1984) is an American professional strongman who was awarded his "Pro Card" at the 2012 Dallas Europa Amateur Strongman Competition. He is a yearly competitor of the World's Strongest Man competition and a finalist in the 2013 World's Strongest Man and 2018 World's Strongest Man competitions.

Robert Oberst
Born (1984-12-20) 20 December 1984
Other names"Obie"
OccupationStrongman
Height201 cm (6 ft 7 in)[2]
Websitewww.theamericanmonster.com
Competition record
Strongman
Representing  United States
World's Strongest Man
9th 2013 World's Strongest Man
Qualified 2014 World's Strongest Man
Qualified 2015 World's Strongest Man
Qualified 2016 World's Strongest Man
8th 2018 World's Strongest Man
Qualified 2019 World's Strongest Man
Arnold Strongman Classic
8th 2014 Arnold Strongman Classic
America's Strongest Man
3rd 2012 America's Strongest Man
2nd 2013 America's Strongest Man
2nd 2014 America's Strongest Man

Strongman accomplishments

-First Place, San Jose Fit Expo, 2012[3]

-First Place, Dallas Europa, 2012[3]

-Third Place, America's Strongest Man, 2012[4]

-First Place, Giants Live Las Vegas, 2013[5]

-First Place, Odd Haugen’s US Open MAS Wrestling Championship, 2013[6]

-Third Place, All-American Strongman Challenge, 2013[7]

-Sixth Place, Giants Live British Open, 2013[8]

-Third Place, China's Strongest Man, 2013[3]

-Ninth Place, World's Strongest Man, 2013[9]

-Second Place, America's Strongest Man, 2013[10]

-Fifth Place, MAS-Wrestling World Cup, 2013[3]

-Eighth Place, Arnold Strongman Classic, 2014[11]

-Second Place, America's Strongest Man, 2014[12]

-Third Place, Arnold Strongman Classic Australia, 2015[13]

-Sixth Place, Giants Live North American Open, 2016[14]

-Sixth Place, Giants Live World Tour Finals, 2017[15]

-Eighth Place, World's Strongest Man, 2018

Personal records

In competition

  • Log Lift – 465 lb (211 kg) [16]
  • Deadlift - 750 lb (340 kg) for 4 reps - Done at America's Strongest Man 2013. [17]

Early life

Oberst was born in Santa Cruz, California. From a young age, he was considerably taller than most of his family and friends, standing at 6 ft 1 (1.85m) and weighing 220lbs (99.8kg) on his 12th birthday. He attended high school at Aptos High School in Aptos, California. It was there he played football and track and field, lettering four times in football and once in track and field. He then went on to continue playing football at the collegiate level at Western Oregon University majoring in history. Oberst graduated from Western Oregon University in 2008.[18] After college, Oberst gave the NFL a shot, but did not make the cut. Soon after, Oberst got into bouncing at a nightclub. It was there that one of Oberst's coworkers introduced him to the world of Strongman competitions and encouraged him to train for the events. Upon going to his first workout session, he unofficially broke the amateur Log Press world record, which at the time was around 150kg, or 330lbs. With some training, his strength grew greater, and after only four months of training, Oberst had received his Pro-Card.[19]

gollark: Here is a similar thing for JSON. Note that it delegates out to an external JSON library for string escaping.```luafunction safe_json_serialize(x, prev) local t = type(x) if t == "number" then if x ~= x or x <= -math.huge or x >= math.huge then return tostring(x) end return string.format("%.14g", x) elseif t == "string" then return json.encode(x) elseif t == "table" then prev = prev or {} local as_array = true local max = 0 for k in pairs(x) do if type(k) ~= "number" then as_array = false break end if k > max then max = k end end if as_array then for i = 1, max do if x[i] == nil then as_array = false break end end end if as_array then local res = {} for i, v in ipairs(x) do table.insert(res, safe_json_serialize(v)) end return "["..table.concat(res, ",").."]" else local res = {} for k, v in pairs(x) do table.insert(res, json.encode(tostring(k)) .. ":" .. safe_json_serialize(v)) end return "{"..table.concat(res, ",").."}" end elseif t == "boolean" then return tostring(x) elseif x == nil then return "null" else return json.encode(tostring(x)) endend```
gollark: My tape shuffler thing from a while ago got changed round a bit. Apparently there's some demand for it, so I've improved the metadata format and written some documentation for it, and made the encoder work better by using file metadata instead of filenames and running tasks in parallel so it's much faster. The slightly updated code and docs are here: https://pastebin.com/SPyr8jrh. There are also people working on alternative playback/encoding software for the format for some reason.
gollark: Are you less utilitarian with your names than <@125217743170568192> but don't really want to name your cool shiny robot with the sort of names used by *foolish organic lifeforms*? Care somewhat about storage space and have HTTP enabled to download name lists? Try OC Robot Name Thing! It uses the OpenComputers robot name list for your... CC computer? https://pastebin.com/PgqwZkn5
gollark: I wanted something to play varying music in my base, so I made this.https://pastebin.com/SPyr8jrh is the CC bit, which automatically loads random tapes from a connected chest into the connected tape drive and plays a random track. The "random track" bit works by using an 8KiB block of metadata at the start of the tape.Because I did not want to muck around with handling files bigger than CC could handle within CC, "tape images" are generated with this: https://pastebin.com/kX8k7xYZ. It requires `ffmpeg` to be available and `LionRay.jar` in the working directory, and takes one command line argument, the directory to load to tape. It expects a directory of tracks in any ffmpeg-compatible audio format with the filename `[artist] - [track].[filetype extension]` (this is editable if you particularly care), and outputs one file in the working directory, `tape.bin`. Please make sure this actually fits on your tape.I also wrote this really simple program to write a file from the internet™️ to tape: https://pastebin.com/LW9RFpmY. You can use this to write a tape image to tape.EDIT with today's updates: the internet→tape writer now actually checks if the tape is big enough, and the shuffling algorithm now actually takes into account tapes with different numbers of tracks properly, as well as reducing the frequency of a track after it's already been played recently.
gollark: https://pastebin.com/pDNfjk30Tired of communicating fast? Want to talk over a pair of redstone lines at 10 baud? Then this is definitely not perfect, but does work for that!Use `set rx_side [whatever]` and `set tx_side [whatever]` on each computer to set which side of the computer they should receive/transmit on.

See also

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.