1898–99 Bucknell Bison men's basketball team

The 1898–99 Bucknell Bison men's basketball team represented Bucknell University during the 1898–99 college men's basketball season. The team finished with an overall record of 3–5.

1898–99 Bucknell Bison men's basketball
ConferenceIndependent
1898–99 record3–5
Head coachStudent coaches
CaptainC.A. Weymouth
Home arenanone

Schedule

Date
time, TV
Opponent Result Record Site
city, state
12/19/1898*
Danville L 08–19  1–0
 
 
1/07/1899*
Danville W 17–09  1–1
 
 
1/16/1899*
Clover Wheelmen L 16–18  1–2
 
 
1/20/1899*
at Williamsport L 8–10  1–3
 
 
1/28/1899*
at State College L 6–17  1–4
 
 
2/10/1899*
at Bridgeton L 16–26  1–5
 
 
2/21/1899*
at Williamsport W 14–12  2–5
 
 
3/03/1899*
State College W 12–08  3–5
 
 
*Non-conference game. (#) Tournament seedings in parentheses.

[1]

gollark: allegedly.
gollark: Yes, wojbie, that's actual live code (with some bits removed to make it fit), not an example.
gollark: No evil "class" stuff needed.
gollark: This is an API I run to do some random things.
gollark: ```python#!/usr/bin/env python3from flask import Flask, jsonifyfrom wsgiref.simple_server import make_serverimport subprocessimport randomfrom mpd import MPDClientimport threadingimport timempd_client = MPDClient()mpd_client.connect("localhost", 6600)print("connected, mpd is", mpd_client.mpd_version)app = Flask(__name__)@app.route("/")def index(): return "Hello, World!"@app.route("/fortune/")def fortune(): return subprocess.run(["fortune"], stdout=subprocess.PIPE).stdoutcurrent_song = Nonedef mpd_loop(): print("mpd query loop started") while True: global current_song current_song = mpd_client.currentsong() current_song["status"] = mpd_client.status() time.sleep(0.2)threading.Thread(target=mpd_loop).start()@app.route("/current-song")def get_current_song(): return jsonify(current_song)with make_server('', 1337, app) as httpd: print("Serving HTTP...") httpd.serve_forever()```

References

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