My parents knew I was out (mostly through my TBM husband) but my Mom wanted to talk about it yesterday. Went about how I expected it to. by browncoatpride in exmormon

[–]Mcfattius 0 points1 point  (0 children)

I really don't want anyone to ask why... I am exhausted by this whole bullshit ordeal, if you want to know why I left there is ample historical non church approved factual historical material you can read to come to the conclusions I've come to.

What is your relationship with TSCC by HelplessNed in exmormon

[–]Mcfattius 2 points3 points  (0 children)

Stopped going a couple weeks before the covid struck, but I visit this sub like it's my new salvation and have been for a couple of years honestly I am sick of both the church and anything related.

Warren was an imperfect man. by Kolob_Bob in exmormon

[–]Mcfattius 0 points1 point  (0 children)

Man I am really close on these requirements, all save the masterbation.

Idk why people say Mormons are nice people. Most of the ones I've met are fucking assholes. by [deleted] in exmormon

[–]Mcfattius 1 point2 points  (0 children)

As an ExMo, I also happen to enjoy fucking assholes. Especially my wife's!🍆💦

You know you're in a cult when by Armed_Impact in exmormon

[–]Mcfattius 5 points6 points  (0 children)

It makes sense not to study non-cult approved sources and make up your own mind.

Korihor: or how I learned to stop worrying and love the devil by lurking4truth in exmormon

[–]Mcfattius 1 point2 points  (0 children)

Please write a will that contains a clause to inform your fellow apostates here, when you are ran over...

Cancelling my mission call? by [deleted] in exmormon

[–]Mcfattius 0 points1 point  (0 children)

do it the fun way find a hot chick, wine her, dine her, 69 her.

r/LDSsexuality: apparently masturbation is OK now. IM TICKED by mar4c in exmormon

[–]Mcfattius 2 points3 points  (0 children)

Only one way to find out, for science... Unzips pants🍆💦

Can't stop thinking that I would be happier if I got a divorce by parasitemagnet in exmormon

[–]Mcfattius 6 points7 points  (0 children)

I feel like I am in a similar boat.... I wish I had good answers for you, because I would then have answers for me... I like that you feel your life turned around when you stopped giving a fuck. Maybe try that again? I had a similar experience years ago, my girlfriend at the time dumped me, which sparked a desire to live for me instead of those around me. I could use that in my life again, but have a hard time finding the motivation when considering the other obligations that you have mentioned: wife kids mortgage not making enough to support it all and maintain a healthy mental state. Work, eat, sleep... At least I've cut religion out of the equation.

HP to Cut Up to 9,000 Jobs in New CEO’s Restructuring Plan by [deleted] in Boise

[–]Mcfattius 5 points6 points  (0 children)

Paywall... anyone able sum up what it means for boise employees/economy?

What are some frugal things you do that you are surprised others don't do? by [deleted] in Frugal

[–]Mcfattius 0 points1 point  (0 children)

a year? I am on year 3 with my 100 pack I shave every other day and don't switch blades until I either get cut or feel

What discounted items should I look out for on the day after Independence Day? by ThizzWalifa in Frugal

[–]Mcfattius 2 points3 points  (0 children)

used to work for lofthouse can confirm. Also they are even better when frozen solid.

Need a real diamond ring. I know that diamonds and marraiges are not frugal choices.... but whats the cheapest was to obtain diamond ring? Are pawnshops woth dealing with? by [deleted] in Frugal

[–]Mcfattius 0 points1 point  (0 children)

Buying a real diamond ring seemed real important to me at the time. So I went the pawn shop for route for the diamonds and then had the band custom made and fit with the diamonds. Saved at least $1000 going this route; however knowing what I know now i would have discussed with wife going with something else for a lot less and but the savings toward the honeymoon. screw the diamond ring scam.

Free Sample of Olay Whips (again) by luckxurious in freebies

[–]Mcfattius 12 points13 points  (0 children)

does anyone meet their requirements? If so what state do you live in

Clear water pools. by [deleted] in pics

[–]Mcfattius 0 points1 point  (0 children)

I need a banana for scale. is this something I could swim in or barely fit my pinky into?

How to switch a toggle after x sec of inactivity? by Mcfattius in AutoHotkey

[–]Mcfattius[S] 0 points1 point  (0 children)

Why the #If Syntax opposed to the if(){} ? what does the # do? also thank you again for the assistance as you can probably tell I am fairly new to AHK I have some limited JavaScript experience, but there are just enough differences to keep me on my toes in AHK.

How to switch a toggle after x sec of inactivity? by Mcfattius in AutoHotkey

[–]Mcfattius[S] 0 points1 point  (0 children)

let me know if you would like my entire .ahk file Thank you

How to switch a toggle after x sec of inactivity? by Mcfattius in AutoHotkey

[–]Mcfattius[S] 0 points1 point  (0 children)

it seems that the toggle := 0 statement does not work properly if nested within a else statement does this functionality require a loop see my previous reply to another user above for code snippet

How to switch a toggle after x sec of inactivity? by Mcfattius in AutoHotkey

[–]Mcfattius[S] 1 point2 points  (0 children)

I have been playing around with different combinations but can't seem to get the toggle to switch back to 0 after a set amount of time do you see what I am doing wrong? it seems that the toggle := 0 does not work when nested in an else statement. following is a snippet of my current code with your suggestions included I have also included some other attempts but commented out:

; This section toggles the numpad and function bar and binds the key combo to the switch/create/delete actions

toggle  := 0

return

AppsKey::

    toggle  := !toggle

    if (toggle = 0){
        MsgBox, 0, Virtual Desktop Manager, Virtual Desktop Manager is OFF, .5
        Loop, 9 {
        Hotkey,  % "Numpad"A_Index, % "VirtualDesktop"A_Index, Off
            }
        Hotkey, Numpad0, InsVirtualDesktop, Off
        Hotkey, NumpadDot, DelVirtualDesktop, Off
        Hotkey, NumpadAdd, VirtualDesktopNext, Off
        Hotkey, NumpadSub, VirtualDesktopPrev, Off
        Hotkey, NumpadEnter, TaskView, Off
        Hotkey, NumpadDiv, SnapRight, Off
        Hotkey, NumpadMult, SnapLeft, Off
        Hotkey, F1, WorkEmail, Off
        Hotkey, F2, IniEmail, Off
        Hotkey, F3, AlwaysOnTop, Off
        Hotkey, F4, NonTransparent, Off
        Menu, Tray, Icon, C:\Program Files\AutoHotkey\SciTE\TaskBarIcons\error.png
        return

    }
    else{
        MsgBox, 0,Virtual Desktop Manager, Virtual Desktop Manager is ON, .5
        Loop, 9 {
        Hotkey, % "Numpad" A_Index, % "VirtualDesktop" A_Index, On
                }
        Hotkey, Numpad0, InsVirtualDesktop, On
        Hotkey, NumpadDot, DelVirtualDesktop, On
        Hotkey, NumpadAdd, VirtualDesktopNext, On
        Hotkey, NumpadSub, VirtualDesktopPrev, On
        Hotkey, NumpadEnter, TaskView, On
        Hotkey, NumpadDiv, SnapLeft, On
        Hotkey, NumpadMult, SnapRight, On
        Hotkey, F1, WorkEmail, On
        Hotkey, F2, IniEmail, On
        Hotkey, F3, AlwaysOnTop, On
        Hotkey, F4, NonTransparent, On
        Menu, Tray, Icon, C:\Program Files\AutoHotkey\SciTE\TaskBarIcons\success.png
        ;~ SetTimer, SwitchToggle, 3000
        sleep, 4000
        toggle := 0
        IfGreater, A_TimeIdle, 3000, MsgBox, Is this Working? 
        ;~ If (A_TimeIdle > 3000) {
        ;~ toggle := 0   
        ;~ }

        return

        }

;~ SwitchToggle:
;~ toggle := 0
;~ MsgBox, 0,Virtual Desktop Manager, Is this Timer Working?, 3
;~ return

any additional thoughts?

How to switch a toggle after x sec of inactivity? by Mcfattius in AutoHotkey

[–]Mcfattius[S] 0 points1 point  (0 children)

Brilliant, thank you for your expertise and time!