Terrence Nunn

Terrence Nunn (born July 25, 1986 in Houston, Texas) is a former American football wide receiver. He most recently played for the Saskatchewan Roughriders of the Canadian Football League. He was signed by the New England Patriots as a street free agent in 2009. He played college football at Nebraska.

Terrence Nunn
Position:Wide Receiver
Personal information
Born: (1986-07-25) July 25, 1986
Houston, Texas
Height:6 ft 0 in (1.83 m)
Weight:195 lb (88 kg)
Career information
High school:Houston (TX) Cypress Falls
College:Nebraska
Undrafted:2008
Career history
CFL status:Import
Career NFL statistics
Player stats at NFL.com

Nunn has also played for the Tampa Bay Buccaneers.

Early years

Nunn attended Cypress Falls High School in Harris County, Texas, where he played football and track and field. He was a two-time all-district selection, and the team's MVP in his 2003 senior season. He caught 27 passes for 623 yards as a junior and 34 passes for 471 yards as a senior.

College career

After graduating high school, Nunn attended the University of Nebraska, where he played in 11 games as a true freshman, starting six. He finished the year with 16 catches for 218 yards. In 2005 Nunn started all 12 games, recording 43 receptions, a career-high, for 495 yards and seven touchdowns, also a career-high. He caught 42 balls in nine starts as a junior while also leading the team in punt returns. As a senior in 2007, Nunn started 10 of 12 games, picking up 452 yards on 35 catches. He ranks third all-time at Nebraska in career receiving yards (1,762) and career receptions (136).

Professional career

New England Patriots

Nunn went undrafted in the 2008 NFL Draft and spent the season out of football. He was signed by the New England Patriots on May 11, 2009, after a tryout. He had eight catches for 133 yards in the preseason, but was waived on September 5 during final cuts. He was re-signed to the team's practice squad the next day.

Tampa Bay Buccaneers

On November 23, 2009 Nunn was signed off the Patriots' practice squad by the Tampa Bay Buccaneers. However, he was waived on August 31, 2010.

Saskatchewan Roughriders

Nunn was signed by the Roughriders on March 8, 2011.[1] Nunn had an unproductive and disappointing 2011 season, he was cut on Jan. 12, 2012.

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.

References

  1. "Riders add three to offence". The StarPhoenix. 2011-03-09. Retrieved 2011-03-09.

https://leaderpost.com/sports/football/roughriders-football/ABOU+MECHREK+season+signings+seldom/9601538/story.html

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