I always secretly admired how Stern gave no fucks:
![]()
![]()
Did the video match the story Ray Rice told you?
Ozzie Newsome: "You know. Ray had given a story to John [Harbaugh] and I. And what we saw on the video was what Ray said. Ray didn’t lie to me. He didn’t lie to me.”
When I wrote part of the script my wife was driving us home. I was relying purely on memory at that point so some stuff might be a little off. I changed it for you though!
Yeah, some of practice sites that MS offers in MVC are fun. I like anything by Jon Galloway.
Webforms is nice, it almost felt like building a desktop app. Plus when you use Entity Framework and Database First, it's pretty easy to get the data.
If this was missed, I'll post it, but it was an interview with the Bisciotti, Ozzie, and Dick Cass that just went down.
http://www.baltimoresun.com/sports/ravens/ravens-insider/bal-ravens-executives-address-ray-rice-investigation-in-exclusive-interview-20140910,0,5031283.story
Interesting quote, considering what Goodell said:
It was on Pardon the Interruption, don't know when it'll be on Youtube if it does, but the gist was: they got the video. Either he lied, or he has no control, which as commissioner for as long as he's been is inexcusable, and either way he absolutely needs to go.
MVC developer saying Webforms is nice? Blasphemy, you're supposed to pick sides and fight to the death!
I've never had to work with MVC yet, but id like to pick it up. I've never had to use strongly typed data controls either, as I usually handle databind explicitly in the code behind. I never liked the evaluate() way of inline data binding in the aspx pages, but I'm glad 4.5 offers a better way of doing it.
Michael Wilbon just did a rant and said live on ESPN that Goodell has to go.
This is not a saga that will end with Roger still in charge
MVC developer saying Webforms is nice? Blasphemy, you're supposed to pick sides and fight to the death!
I've never had to work with MVC yet, but id like to pick it up. I've never had to use strongly typed data controls either, as I usually handle databind explicitly in the code behind. I never liked the evaluate() way of inline data binding in the aspx pages, but I'm glad 4.5 offers a better way of doing it.
<asp:Repeater ID="rptTeamMembers" runat="server" ItemType="NFLGAFWC.Lib.TeamMember">
<h4>[B]<%# Item.Username %>[/B]</h4>
<div>
<span>Team:</span>
<span>
[B]<%# Item.Team.Name %>[/B]
</span>
</div>
If this was missed, I'll post it, but it was an interview with the Bisciotti, Ozzie, and Dick Cass that just went down.
http://www.baltimoresun.com/sports/ravens/ravens-insider/bal-ravens-executives-address-ray-rice-investigation-in-exclusive-interview-20140910,0,5031283.story
Interesting quote, considering what Goodell said:
This deserves a banGoodell? More like Badell amirite guys
MarkMaske ‏@MarkMaske 8m
Roger Goodell remains adamant he won't resign, source says: "Never."
44 million reasons not to.
Are enough owners going to make a fuss over this to vote him out though? Let's find out
John Football for commissioner!
Well, it's not entirely done, and I'm not sure if I have everyone in here yet, so don't be offended if you aren't on there yet. But I built a team members listing on the NFLGAF.com website.
I am going to add PSN, XBL, Steam, and NNID later, but the members listing works in the meantime. Anyone can use the sign up form to be added to a team.
The Quests are added, I'm not sure if I'll add an accompanying image to them either. I plan on having a signup where anyone can submit a quest.
I'm working on the other portions of the site, mainly the shit posts. I think I'll do the same thing where you can submit a shit post and if it's shitty enough I'll put it up.
I'll be pretty busy coming up, but I'll keep chipping away at it when I can. It's been a fun little project so far.
Check it out here, bear in mind it's not flashy as I'm a programmer not a designer! I'm open to suggestions as well.
http://nflgaf.com/
Tebow. Keeps him in the league, nice church going virgin. Leads well. Perfect gig for him.
20 years later you still madGoodell is going to get yelled at by Senators! Hooray! Expose Spygate!
Tebow will be too busy playing QB for the Rams
Dark days in Colts-Age.
20 years later you still mad
20 years later fuck you20 years later pats still haven't won shit.
James Harrison once broke down a door so he could slap around his girlfriend. He oughta sit this one out
Goodell? More like Badell amirite guys
I'm open to using anything really.
Yeah, I databind in the code behind as well.
When I declare a repeater for instance I just use the Item Type like this then I can get strongly typed syntax for instance:
Code:<asp:Repeater ID="rptTeamMembers" runat="server" ItemType="NFLGAFWC.Lib.TeamMember">
Then this gives me access to this syntax, which will generate an error if that object doesn't have that property:
Code:<h4>[B]<%# Item.Username %>[/B]</h4> <div> <span>Team:</span> <span> [B]<%# Item.Team.Name %>[/B] </span> </div>
So who in the league hasn't slapped someone?
.
20 years later fuck you
James Harrison once broke down a door so he could slap around his girlfriend. He oughta sit this one out
So who in the league hasn't slapped someone?
Rodgers, Watt, Russell, Kap? Good sconi boys.
Yeah that's a way better way if doing it. On our current project we use 4.5 but some of the other devs still don't use strong data typing, and it's such a pain to debug data issues sometimes. Luckily we've had to do a lot of data manipulation when binding (like concatenation multiple data columns together or altering data items depending on business logic) that we've done a lot more of it in the code behind lately.
Sweet deal man. Glad this project has gone so well so far. You planning on anything for the site in the long run?