top hashtags

sixers online

Would you divorce her too?

I saw something on instagram, but can't find the link. It was basically a subreddit thread in AITA (Am I The Asshole?) where a man explains that he and his wife didn't want to have kids, he even had a vasectomy and still wore condoms during sex. They even discussed having an abortion if it happened, or possibly adopting the child out. And she said she was on birth control, that is until, surprise, a new kid was on the way. She stopped taking birth control. He wasn't sure how it happened, especially with the vasectomy. He thought she cheated. So he had various paternity tests done, and it turned out to be 100% his child. The vasectomy didn't work. She ended up wanting to keep the child, while he had no interest at all in raising a kid as they previously discussed. She wouldn't even allow adoption. So, they end up getting divorced and now he will be responsible to pay child support since he has no intentions of being in his kids life.

I would divorce her too. If someone doesn't want to have kids, you kinda have to honor that decision or leave them. Because if it's a deal breaker, you can't just force a kid on someone either. They agreed to having no kids and she changed her mind. He was still intending on not having kids. But, he is partly to blame for not making sure his vasectomy was successful. I guess they have to go to the doctors 3 months and a few more after to make sure the surgery was successful.

What's your view on this? I imagine most of ya wouldn't be very happy. This guy just doesn't seem to be for kids. But I can see some people changing their mind once they hold their child in their arms. I'd still divorce her, because she still broke my trust, but I'd take an active role in my child's life still.

Why Are You Gay?

I don't even know if this should get the Sports tag, so...

This video doesn't need a whole book to explain what it is, even the mumble rapper fans can understand it, so...

I could drone on and on about the complexities of working with the lower level functions of system calls using GObject or using the kernel C libraries but which one is better and will save me at least 1k in memory usage...?

Doesn't matter, here's the video


Login to view embedded media View: https://youtu.be/vK1qTGVoOUw

I Ran My Mama Over

WTF?
Who inspires this? How can an "artist" think this and pick up the pen and think, "Yeah, this is that real storytelling."

I mentioned earlier that I like songs instead of the artist because each song is motivated by something else.

Once I get past the worn excuse that, "I'm just rapping about where I came from.", what else does that artist offer? I'll give a pass to that one radio friendly song in order to get the rest of the album heard. What's left. Look at my clothes, look at the heauxs, my ride is clean, I make tons of money. Anything else?


Login to view embedded media View: https://youtu.be/Is6Yi-hN5tA

YouTube Is Dying

Well, this is a walkthrough on how YT is dying.

Login to view embedded media View: https://youtu.be/Ln1qbgZz_TQ




package main

import (
"github.com/mattn/go-gtk/gdkpixbuf"
"github.com/mattn/go-gtk/glib"
"github.com/mattn/go-gtk/gtk"
"os"
"os/exec"
"path"
"regexp"
"sort"
"strings"
)

func uniq(strings []string) (ret []string) {
return
}

func authors() []string {
if b, err := exec.Command("git", "log").Output(); err == nil {
lines := strings.Split(string(b), "\n")

var a []string
r := regexp.MustCompile(`^Author:\s*([^ <]+).*$`)
for _, e := range lines {
ms := r.FindStringSubmatch(e)
if ms == nil {
continue
}
a = append(a, ms[1])
}
sort.Strings(a)
var p string
lines = []string{}
for _, e := range a {
if p == e {
continue
}
lines = append(lines, e)
p = e
}
return lines
}
return []string{"Yasuhiro Matsumoto "<Duke >"}
}

func main() {
var menuitem *gtk.MenuItem
gtk.Init(nil)
window := gtk.NewWindow(gtk.WINDOW_TOPLEVEL)
window.SetPosition(gtk.WIN_POS_CENTER)
window.SetTitle("GTK Go!")
window.SetIconName("gtk-dialog-info")
window.Connect("destroy", func(ctx *glib.CallbackContext) {
println("got destroy!", ctx.Data().(string))
gtk.MainQuit()
}, "foo")

//--------------------------------------------------------
// GtkVBox
//--------------------------------------------------------
vbox := gtk.NewVBox(false, 1)

//--------------------------------------------------------
// GtkMenuBar
//--------------------------------------------------------
menubar := gtk.NewMenuBar()
vbox.PackStart(menubar, false, false, 0)

//--------------------------------------------------------
// GtkVPaned
//--------------------------------------------------------
vpaned := gtk.NewVPaned()
vbox.Add(vpaned)

//--------------------------------------------------------
// GtkFrame
//--------------------------------------------------------
frame1 := gtk.NewFrame("Demo")
framebox1 := gtk.NewVBox(false, 1)
frame1.Add(framebox1)

frame2 := gtk.NewFrame("Demo")
framebox2 := gtk.NewVBox(false, 1)
frame2.Add(framebox2)

vpaned.Pack1(frame1, false, false)
vpaned.Pack2(frame2, false, false)

//--------------------------------------------------------
// GtkImage
//--------------------------------------------------------
dir, _ := path.Split(os.Args[0])
imagefile := path.Join(dir, "../../data/go-gtk-logo.png")

label := gtk.NewLabel("Go Binding for GTK")
label.ModifyFontEasy("DejaVu Serif 15")
framebox1.PackStart(label, false, true, 0)

//--------------------------------------------------------
// GtkEntry
//--------------------------------------------------------
entry := gtk.NewEntry()
entry.SetText("Hello world")
framebox1.Add(entry)

image := gtk.NewImageFromFile(imagefile)
framebox1.Add(image)

//--------------------------------------------------------
// GtkScale
//--------------------------------------------------------
scale := gtk.NewHScaleWithRange(0, 100, 1)
scale.Connect("value-changed", func() {
println("scale:", int(scale.GetValue()))
})
framebox2.Add(scale)

//--------------------------------------------------------
// GtkHBox
//--------------------------------------------------------
buttons := gtk.NewHBox(false, 1)

//--------------------------------------------------------
// GtkButton
//--------------------------------------------------------
button := gtk.NewButtonWithLabel("Button with label")
button.Clicked(func() {
println("button clicked:", button.GetLabel())
messagedialog := gtk.NewMessageDialog(
button.GetTopLevelAsWindow(),
gtk.DIALOG_MODAL,
gtk.MESSAGE_INFO,
gtk.BUTTONS_OK,
entry.GetText())
messagedialog.Response(func() {
println("Dialog OK!")

//--------------------------------------------------------
// GtkFileChooserDialog
//--------------------------------------------------------
filechooserdialog := gtk.NewFileChooserDialog(
"Choose File...",
button.GetTopLevelAsWindow(),
gtk.FILE_CHOOSER_ACTION_OPEN,
gtk.STOCK_OK,
gtk.RESPONSE_ACCEPT)
filter := gtk.NewFileFilter()
filter.AddPattern("*.go")
filechooserdialog.AddFilter(filter)
filechooserdialog.Response(func() {
println(filechooserdialog.GetFilename())
filechooserdialog.Destroy()
})
filechooserdialog.Run()
messagedialog.Destroy()
})
messagedialog.Run()
})
buttons.Add(button)

//--------------------------------------------------------
// GtkFontButton
//--------------------------------------------------------
fontbutton := gtk.NewFontButton()
fontbutton.Connect("font-set", func() {
println("title:", fontbutton.GetTitle())
println("fontname:", fontbutton.GetFontName())
println("use_size:", fontbutton.GetUseSize())
println("show_size:", fontbutton.GetShowSize())
})
buttons.Add(fontbutton)
framebox2.PackStart(buttons, false, false, 0)

buttons = gtk.NewHBox(false, 1)

//--------------------------------------------------------
// GtkToggleButton
//--------------------------------------------------------
togglebutton := gtk.NewToggleButtonWithLabel("ToggleButton with label")
togglebutton.Connect("toggled", func() {
if togglebutton.GetActive() {
togglebutton.SetLabel("ToggleButton ON!")
} else {
togglebutton.SetLabel("ToggleButton OFF!")
}
})
buttons.Add(togglebutton)

//--------------------------------------------------------
// GtkCheckButton
//--------------------------------------------------------
checkbutton := gtk.NewCheckButtonWithLabel("CheckButton with label")
checkbutton.Connect("toggled", func() {
if checkbutton.GetActive() {
checkbutton.SetLabel("CheckButton CHECKED!")
} else {
checkbutton.SetLabel("CheckButton UNCHECKED!")
}
})
buttons.Add(checkbutton)

//--------------------------------------------------------
// GtkRadioButton
//--------------------------------------------------------
buttonbox := gtk.NewVBox(false, 1)
radiofirst := gtk.NewRadioButtonWithLabel(nil, "Radio1")
buttonbox.Add(radiofirst)
buttonbox.Add(gtk.NewRadioButtonWithLabel(radiofirst.GetGroup(), "Radio2"))
buttonbox.Add(gtk.NewRadioButtonWithLabel(radiofirst.GetGroup(), "Radio3"))
buttons.Add(buttonbox)
//radiobutton.SetMode(false);
radiofirst.SetActive(true)

framebox2.PackStart(buttons, false, false, 0)

//--------------------------------------------------------
// GtkVSeparator
//--------------------------------------------------------
vsep := gtk.NewVSeparator()
framebox2.PackStart(vsep, false, false, 0)

JALEN ROSE FILES FOR DIVORCE FROM MOLLY QERIM

FD580B6A-9AD8-4008-8747-B61B2BB75FF2.jpeg

One of sports TV's power couples has broken up -- ex-NBA player Jalen Rose filed for divorce from ESPN host Molly Qerim, TMZ Sports has learned.

Court records show Rose filed docs earlier this year ... kickstarting the process to end their 2 and a half year marriage.

Sources tell us the breakup was amicable and both sides remain cordial.

Rose first went public with the "First Take" host in June 2016 ... and they tied the knot at a lowkey NYC ceremony in July 2018.


Don’t forget this stupid tramped played the “you big brute“ card on Lavar Ball. I’m glad he’s moving on.

Login to view embedded media View: https://youtu.be/IETonkGvZqg?t=180

Could be true, could also be nothing


I would not be surprised if any or all of this were true. Would make a lot of things make sense concerning Barry and Michelle. What ya'll think? You could even talk me into the rumors about Michelle (which are OUT there)

What are your well known pro-black leader(s) you revered and respected during their time or at this moment.

Hey B1 family I started this thread to get everyone's favorite and/or well known pro-black leader(s) and also if you want you can add a little auto-bio on that individual(s) as well. I want this thread to be an appreciation for those who gave and are giving their lives today to fight for the empowerment of our people and the generations that come after our generations.

I Love My People

Everyone here know that I love my FBA family. I got love for Africans too. How could you come to the US and look at me like I'm a POS and the kids in Lagos are literally swimming in poop. Watch the first 5 minutes...

White supremacy got these people living like this and trying to crap on us...


Login to view embedded media View: https://youtu.be/8NTIY8Qy2f0

Positivity

We all know when someone is coming for you. It could be a person or a group. I know that I cannot keep my composure if I know you're trying to hurt me or my reputation.
Do you have such a positive spirit where you can parry and make the other person look bad or are you a "hands to throat" type that would risk it all? I'm hoping we all can be the latter.

Dolly flipped the script so smoothly. I marvel at people that can keep their cool even when they know that the person is only two feet from you and is phony.

Login to view embedded media View: https://youtu.be/If-oWqUYzlQ

This is a two fold thread related to Gaming and TV/Movies

What was your very first WTF or "I didn't see that coming" moment in either a video game, TV or movie?
Also, I'm not putting spoilers on mine because they're old af and if it's still a spoiler for you at this point well, then that's on you.

For me in gaming: I would have to say it was Final Fantasy X. Finding out that Yevon was playing everyone for the fool just to keep the leaders all in power and letting Sin run amok on the people to keep them all in line? Meanwhile the summoners are all going off on a suicide mission, thinking they'll be the one to finally defeat Sin for good? That shit blew my mind at age 16 because it was so relevant to what was happening with the Church at the time amid all the scandals and the covering it all up and the hush money and just all the lengths a religious construct is willing to do to keep the people obedient.

TV/Movie: Sixth Sense was my first movie "WTF" moment. Finding out Bruce Willis' character actually died in the end? The Skeleton Key I would argue is a very close second.

Dr Dre coming to GTA V and he's bringing new music?

Now we're talking. I don't usually bother with GTA anymore, the game has become stale for me, at least when it comes to the online mode. I can't get into it unfortunately. But, this might entice me enough to play the new Franklin DLC that's coming out, which will be featuring Dr. Dre and new unreleased music.

Watch the trailer for it below. I wish it was more of a story DLC rather than online, but I guess we get what we get with Rockstar these days.

Login to view embedded media View: https://youtu.be/UviLsT1RO04

Do you get another pet when one passes away?

Your pets passing away is not a fun experience. I've lost a few pets in my life and it doesn't get easier. But, how do you cope after they pass? Do you get another pet afterwards? Or do you usually wait it out before adopting another pet into the family?

Each of my pets have helped me a lot with my mental health, and losing them is very tough on me, but I think for the most part, giving another pet a home is a good option. I've been think about adopting a pet from the pound, so that I at least adopt a pet in need. Anyway, how do you deal with a loss of a pet, do you adopt another pet right away? Or do you take the time to grieve and wait on adopting another pet?

Bill Burr

am so glad I am a warrior. I love the color of my skin. I love the color of my family's skin. I love the people with the same skin color as mine who dosent love themselves. But love will not stop me from my mission. Even if those people have the same skin as mine. I will destroy you also. But the funny thing is some people dont know that there DNA is alive.They dont undertsand the power that I can harness.The power that they can harness also. I dont know WHAT you are on EARTH for but im not here to follow. I will not follow any other organizations. I follow specific orders. Your being "brave" and combative against me shows the agenda of our advisary in realtime. I love our people.I love myself. Yall trippin but im locked and loaded. MENTALLY.

Do you think social media is creating less fulfilling relationships?

I been thinking about this for a while. It seems like a lot of people come and go from relationships like chewed bubblegum these days. I can't help but make the connection to social media. Like where people go to get validation and feel-good hormones released and soon as it wears out, they need to find something to get the next hit. It seems like this is how a lot of people treat relationships these days. Good until it no longer serves their needs or pleasures, or until something better comes along.

What are your thoughts on this?

Professor Black Truth - MOT #28 - Yes, The Racists Are Getting Younger

Login to view embedded media View: https://youtu.be/vVonHBwR0uI


This is a great edition as it makes it clear that the racism is not going anywhere. Despite what your elders and liberal white pals have told you, racism is not dying out with old age. We see Dylan Roof, Rittenhouse, Proud Boys and other groups of White Supremacists armed and ready to trounce on the unsuspecting brother or sister. Racism is taught to them in their adolescence and passed down from generation to generation. In other words, you cannot pray or vote this away! YOU NEED TO KEEP YOUR SNICKERS ON YOU IN CASE YOU GET HUNGRY.

That’s today‘s 6Z Brief of the MoT.

Trending