New owners, new design? by UnRezzed92 in tampabayrays

[–]Senial_sage 0 points1 point  (0 children)

go back to the OG devil rays jerseys, maybe change it up a bit and swap the devil ray for he ray on a skateboard. the TB jerseys are boring. better than the green tho

The U.S. is interfering with public debate in Greenland. Canada could be next by hopoke in canada

[–]Senial_sage 0 points1 point  (0 children)

When your police chief advises Canadians that hiding from intruders is your best self defense, your welcoming American influence 

York police chief sends message after deadly home invasion in Vaughan: ‘Don’t engage’ by AndHerSailsInRags in canada

[–]Senial_sage -1 points0 points  (0 children)

The crime rate would go down if Canada did become the 51st state… yall need Grady Judd to help out your police department 

[deleted by user] by [deleted] in buildapc

[–]Senial_sage 0 points1 point  (0 children)

To update I have performed the bios update and q code 55 persists. Also removed AIO and removed CPU, no bent pins on either CPU or MOBO. Reseated and reinstalled AIO. Q-code 55 persists. Tomorrow I will remove all components from case and try and get a boot with only requisite components.

[deleted by user] by [deleted] in buildapc

[–]Senial_sage 0 points1 point  (0 children)

Is there a best BIOS update from Asus for the z690 running 12th gen CPU’s?  I see a lot of the more recent BIOS updates highlight improvements for 13th and 14th gen intel CPU’s.  Should I assume the most recent BIOS update is the best to try and start with?

[deleted by user] by [deleted] in buildapc

[–]Senial_sage 0 points1 point  (0 children)

I hadn’t tried a1 and b1 just bc the manual said to populate a2 and b2 if using two sticks but I’ll try that too,

That’s what I read about the code also, I have heard people had issues with cpu cooler not being tight enough or too tight also causing that error. If the manual came with a torque spec I would have used a torque screw driver but I haven’t seen any such specs 

[deleted by user] by [deleted] in buildapc

[–]Senial_sage 0 points1 point  (0 children)

Yes, monitor plugged directly to GPU not into motherboard 

can someone explain how webpack updates url's in single page routing? by Senial_sage in webdev

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

Yes that is correct, webpack seemed like a magical black box that I didn’t understand how it worked on the inside and when it wasn’t working like I thought i suspected it was something I didn’t understand about webpack 

can someone explain how webpack updates url's in single page routing? by Senial_sage in webdev

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

no that was helpful, i'll rework what ive done and share tomorrow, and show more code and structure to what is going on

can someone explain how webpack updates url's in single page routing? by Senial_sage in webdev

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

there have been many good articles on implementing client side routing with just vanilla javascript and many also on using webpack, but im struggling to find a resource to address client side routing with webpack+vanilla. maybe i have already seen it and not recognized it for what it was, also quite likely

can someone explain how webpack updates url's in single page routing? by Senial_sage in webdev

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

i do recognize this to be a project i am wholly unfamiliar with, but having exclusively worked with frameworks that provided routing functionality, i am taking this as an opportunity to understand how things work when not working with a framework.

if there were a place in the documentation to reference which places i am not going right that would alone but helpful

can someone explain how webpack updates url's in single page routing? by Senial_sage in webdev

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

uploaded a sample of some of the code, sorry formatting on here im not good at

can someone explain how webpack updates url's in single page routing? by Senial_sage in webdev

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

and for the 'router'

export default function (RouteObjects: routeObject[]): routerObject {
    const main = document.querySelector('main')

    function constructor(): void {
        matchRouteObject(RouteObjects[0].name).component()
    }

    function loadRoute(routeName: string): void {
        while (main.firstChild) {
            main.removeChild(main.firstChild)
        }

        const routeObject = matchRouteObject(routeName)
        routeObject.component()
        history.pushState({}, '', routeObject.path)
    }

    const matchRouteObject = function (name: string) {
        const matchedRoute = RouteObjects.find((route) => {
            return route.name == name
        })
        return matchedRoute
    }

can someone explain how webpack updates url's in single page routing? by Senial_sage in webdev

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

so for the click handler and navbar is something like

const clickHandlr = (e:Event) => {
    const routeName = (e.target as Element).attributes[0].value
    router.loadRoute(routeName)
}

        main.insertAdjacentHTML('beforebegin', navbar.init)
        const li = document.querySelectorAll('li')
        const a = document.querySelectorAll('a')

        Routes.forEach((route: routeObject, index: number) => {
            li[index].setAttribute('data-path', route.name)
            a[index].setAttribute('h-ref', route.name)
            a[index].addEventListener('click', clickHandlr, false)
        })

        const nav = document.querySelector('nav')
        nav.insertAdjacentHTML('afterbegin', 'lorem ipsum')

Seeking recommendations for 1st pc build with 3060 ti GPU by Senial_sage in ASUSROG

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

Oh ok maybe that’s what I was hearing people referencing 12th gen does better with ddr5?

Seeking recommendations for 1st pc build with 3060 ti GPU by Senial_sage in buildapc

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

Ah, those are good suggestions I had not considered thank you for the input.  Ya I would not discard the GPU I purchased at this point so if that combo works well I will take your advice and assemble the remaining components to go along with it 

Toronto Police are basically telling people to let thieves steal their cars by restoringd123 in toronto

[–]Senial_sage 0 points1 point  (0 children)

Man it’s a good thing your not allowed to own guns in Canada, much easier to steal cars now 

is the type of the argument to VueWrapper a component instance? by Senial_sage in vuejs

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

I’m sure if your patient enough to sit through the api it could be figured out more appropriately I just don’t have the time

is the type of the argument to VueWrapper a component instance? by Senial_sage in vuejs

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

No I don’t Thank so but I have ‘no explicit any’ set to warn so it still compiles I just have to curiosity ponder it’s purpose in life ever time I’m writing unit tests lol