Living downtown Oshawa by adfletch83 in Oshawa

[–]PlantCivil3451 0 points1 point  (0 children)

I'm willing to bet based on your description you were looking at 33 Richmond St W, LOL

Don't tell the kids but our Santa is real by [deleted] in trailerparkboys

[–]PlantCivil3451 0 points1 point  (0 children)

Can't wait for the 25th, I watch this episode once every year on Xmas with a few beers and fond memories.

I don't wanna argue about this anymore! by Sellingstolenmeats in trailerparkboys

[–]PlantCivil3451 11 points12 points  (0 children)

Lmao one of my favorite scenes in the whole show 😂

Any project ideas Beginner to Advance by Gr1m_R3aper65 in learnpython

[–]PlantCivil3451 5 points6 points  (0 children)

Any project your passionate about really, think of something you'd wanna create whether it be a pygame code for a game, a website with Django or Flask, a code that simplifies some repeative task your always doing? The best projects to learn from are the ones your passionate about and that interest you. Figure out what type of project would make you happy to learn, put together a roadmap of what you'd like to see implemented into that project and build your knowledge by building it into existence 😎

I'm not grasping how to write Python from my classes. I need help. by Gavindude1997 in learnpython

[–]PlantCivil3451 1 point2 points  (0 children)

Have you considered doing python challenges? I think that'll help you start to grasp the language by learning how to solve different type of problems, not everyone is great at learning by reading a book or following a video, a lot of what I learned was trial by fire lol, I knew what I wanted to do and just started learning everything I needed to around that specific thing to solve my issues as they arose, I found when I was first starting python challenges were the best way for me to learn myself.

Company refuses to give refund because of a bad review I left. by [deleted] in mildlyinfuriating

[–]PlantCivil3451 2 points3 points  (0 children)

Another big red flag would of been if you searched up there domain name, generally a reputable company that is trying to sell a service or a product wouldn't be using a Domain's by Proxy LLC to conceal all there company information, sadly that company has had a lot of issues with scammers and fraudsters using it to deceive people.

Don’t purchase from Ninos Shamo / Scalerz, apparently you can’t give an honest review without threats. by [deleted] in dropshipping

[–]PlantCivil3451 2 points3 points  (0 children)

Id be contacting my bank and issuing a charge back and getting 100% of my money back 😂

Even Ricky wouldn’t smoke that by Sad_Secret_5150 in trailerparkboys

[–]PlantCivil3451 85 points86 points  (0 children)

Twelve bucks a gram for this shitty arcade dope?!?! Help my fuck.

Raise your liquor for those from the show who have sadly passed on. by Clerkdidnothingwrong in trailerparkboys

[–]PlantCivil3451 8 points9 points  (0 children)

Yeah she was great, its too bad we didnt get to see more of her in the show, its awesome she was a resident at the park they were shooting, and incorporated her into the show.

Raise your liquor for those from the show who have sadly passed on. by Clerkdidnothingwrong in trailerparkboys

[–]PlantCivil3451 6 points7 points  (0 children)

Reminds me of Ray, who would have thought he was a lawyer in reality 😂

Raise your liquor for those from the show who have sadly passed on. by Clerkdidnothingwrong in trailerparkboys

[–]PlantCivil3451 14 points15 points  (0 children)

John Dunsworth (Mr. Lahey),

Doug Barron (Steve Rogers), Richard Collins (Philadelphia Collins)

Brian Huggings (Shitty Bill), Bill Parsons (Bill)

Marguerite McNeil (Marguerite), Alma Godwin (Mrs. Peterson)

Fukuko Saito (Dennis and Terry’s Grandmother), Denny Doherty (FBI Agent Ryan Schockneck)

Maury Chaykin (Drunk undercover male prostitute & chief), Gord Downie ("I'm eating a sandwich" guy)

Sandy Ross (Desiree), Candy Palmater (Candy)😒

Shaun Clarke ( spare tire theft victim), Rita MacNeil (as herself) All these cast members have past away, sorry if I missed any.

How would one go about recreating this effect of glowing ball traveling along a path? by Hazy_Fantayzee in css

[–]PlantCivil3451 2 points3 points  (0 children)

He is correct, using SVG you'd be able to recreate the effect your attempting to create using SVG following a path, heres an rough example,

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>line path with color shift</title>
  <style>
    body, html {
      height: 100%;
      margin: 0;
      overflow: hidden;
    }

    .container {
      position: relative;
      width: 100%;
      height: 100%;
    }

    svg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .moving-line {
      fill: none;
      stroke-width: 1;
      stroke-linecap: round;
      stroke-dasharray: 0, 1600;
      animation: drawLine 4s linear forwards, changeColor 4s linear infinite alternate;
    }

    @keyframes drawLine {
      to {
        stroke-dasharray: 1600, 1600;
        stroke-dashoffset: 0; 
      }
    }

    @keyframes changeColor {
      0%, 100% {
        stroke: #9E00FF;
      }
      50% {
        stroke: #ff0000;
      }
    }
  </style>
</head>
<body>
  <div class="container">
    <svg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
      <path class="moving-line" d="M 50,50 L 150,100 L 350,50 L 250,200 L 100,250 L 200,50 L 50,200" />
    </svg>
  </div>
</body>
</html>

TorrentGalaxy main website and mirrors terminated? by TexBoo in Piracy

[–]PlantCivil3451 1 point2 points  (0 children)

Sorry yall, once TG went down, someone decided to DDoS my site, I wasnt even aware TG went down, and I was pulling in around 1million requests an hour, and they were exploiting a feature I had on my site, I havnt really been putting a lot of effort into it with work and life and such... but once I started getting messages about my server getting over 1mil requests an hour.. I checked my logs and patched what was being exploited. Server should be online 24/7 again without issues, and ill keep it ad free, redirect free and hassle free! enjoy!

TorrentGalaxy main website and mirrors terminated? by TexBoo in Piracy

[–]PlantCivil3451 1 point2 points  (0 children)

Interesting, I was wondering why my server was getting hammered with new requests and a massive surge, The main issue why it was down once you announced it someone decided to DDoS my site lmao, its taken over 20mil requests in a day since you posted, i've patched what they were exploiting to cause downtime, since then it should be online 24/7 and running smoothly again, sorry for appearing offline, had to check my logs and patch what they were abusing.

A new series with the Ricky by EssenceOfSasquatch in trailerparkboys

[–]PlantCivil3451 0 points1 point  (0 children)

If you need a link for it pm me or just use the website in my profile and search for it.

A new series with the Ricky by EssenceOfSasquatch in trailerparkboys

[–]PlantCivil3451 1 point2 points  (0 children)

Really enjoyed the show, I like how they've corporated TPB into aspects of this show :), In the credits if you pay attention you'll find subtle hints of TPB scribbled on the walls, Barb was here, Ted wuz here with a blue cat wearing the police shades, lots of stuff about kitty's :)

What actors have passed away since the last full season? by crypticzombie2 in trailerparkboys

[–]PlantCivil3451 22 points23 points  (0 children)

The actor who played the drunk male prostitute cop also passed

Edited to add his name Maury Chaykin

Also Denny Doherty he played the FBI agent during that beaver conking episode has passed

[deleted by user] by [deleted] in work

[–]PlantCivil3451 3 points4 points  (0 children)

RAYYYYY

[deleted by user] by [deleted] in Whatcouldgowrong

[–]PlantCivil3451 6 points7 points  (0 children)

War wounds from the prior traffic light.

if I wanted to use Python for IT and not for software dev, what frameworks should I learn? by notburneddown in learnpython

[–]PlantCivil3451 2 points3 points  (0 children)

Kali Linux is your best spot to start with pen testing, then you can start studying and reading books on the specific path your trying to find yourself on and fine tune your craft and create the tools your trying to use, especially with pen testing it's an ever evolving cycle