1988 Sun Belt Conference men's soccer season

The 1988 Sun Belt Conference men's soccer season was the 12th season of men's soccer in the conference.

1988 Sun Belt Conference men's soccer season
LeagueNCAA Division I
SportSoccer
DurationAugust 1988 – November 1988
Regular Season
Season championsEast: Charlotte
West: South Alabama
Tournament
ChampionsSouth Florida
  Runners-upOld Dominion
1988 Sun Belt Conference men's soccer standings
Conf  Overall
TeamW L T  W L T
East
Charlotte 3 0 0  10 4 3
Old Dominion 2 1 0  11 5 3
VCU 1 2 0  6 9 2
Jacksonville 0 3 0  7 10 1
West
South Alabama 3 0 0  17 4 1
South Florida 2 1 0  9 7 2
UAB 1 2 0  7 8 1
WKU 0 3 0  7 11 1
  • + - Invited to the NCAA Division I Men's Soccer Championship
Rankings from NSCAA

Teams

Team Location
East
Charlotte 49ers Charlotte, North Carolina
Jacksonville Dolphins Jacksonville, Florida
Old Dominion Monarchs Norfolk, Virginia
VCU Rams Richmond, Virginia
West
South Alabama Jaguars Mobile, Alabama
South Florida Bulls Tampa, Florida
UAB Blazers Birmingham, Alabama
Western Kentucky Hilltoppers Bowling Green, Kentucky

Regular season

Postseason

Sun Belt Tournament

The tournament was held in Norfolk, Virginia.

  Semifinals     Championship
                 
  South Florida 2  
  Charlotte 1    
      South Florida 1[lower-alpha 1]
      Old Dominion 1
  Old Dominion 4    
  South Alabama 1   Third place
 
South Alabama 3
  Charlotte 0
  1. South Florida won on penalty kicks

All-Sun Belt awards and teams

1988 Sun Belt Men's Soccer Individual Awards[1]
Award Recipient(s)
Coach of the Year Bob Warming, Charlotte
1988 Sun Belt Men's Soccer All-Conference Teams[1]
First Team Second Team
  • Andri Marteinsson (South Alabama)
  • Chris Haywood (Old Dominion)
  • Sean Crowley (Old Dominion)
  • Michael Bates (South Florida)
  • John Dugan (VCU)
  • Sigfus Karason (South Alabama)
  • Thor Geirsson (South Alabama)
  • Chris Pfau (Old Dominion)
  • Ricky Riera-Gomez (Charlotte)
  • Ian Gruno (Charlotte)
  • Eduardo Carvacho (South Alabama)
  • John King (South Florida)
  • Orlin Weise (VCU)
  • Paul Cann (Old Dominion)
  • Jeff Paciolla (Charlotte)
  • Rich Biondi (South Florida)
  • Chris Grecco (WKU)
  • Giles Hooper (South Alabama)
  • Craig Fossett (South Florida)
  • Pat Moriarty (VCU)
  • Richard Butler (UAB)
  • Mike Coons (South Florida)
  • Aidan Heaney (Charlotte)
  • Robert RoJhan (Jacksonville)
gollark: My tape download program now supports downloading big files without splitting them, via range requests, assuming they're served from a server which supports it: https://pastebin.com/LW9RFpmY (do `web2tape https://url.whatever range`)
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.

See also

  • 1988 NCAA Division I men's soccer season
  • 1988 Sun Belt Conference Men's Soccer Tournament
  • 1988 Sun Belt Conference women's soccer season

References

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