Jump to content

Prariedog13

Member
  • Posts

    50
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Profile Information

  • Gender
    Male
  • Location
    Spaceeeeeeeee
  • Interests
    Stuff
  • Biography
    I'm special

Recent Profile Visitors

430 profile views

Prariedog13's Achievements

  1. No just because the ltt channel is currently not on youtube that link won't work, and youtube will just redirect you to the home page.
  2. Likely an influx of people coming over from youtube. turns out the main channel getting hacked unintentionally ddosed forums and floatplane.
  3. It's likely that the ltt account was connected to techquickie and techlinked, either on the same google account or as a backup email, so that's how they would have gotten access. I would guess mac address and shortcircuit are on different accounts as they are newer channels. I'm not sure why channel super fun wouldn't have been hacked then because that is older than techquickie I believe. Maybe they're afraid of dennis.
  4. Luke is over there telling them to hold off on the recovery because floatplane memberships are skyrocketing.
  5. They edited it to make the videos legit but couldn't get the right photo. They use the same darker red with the tesla lettering every time a channel gets hacked -it's a dead giveaway every time.
  6. It's not a bad Idea for one person to do it with the minimum amount just so it shows up, probably just doesn't need multiple people -- although I like the lttstore promotion. It also says that it is restricted to allow only subscribers of 15 years -- youtube should change that so you can't limit comments to subscribers who have been 'subscribed' longer than the channel has been around.
  7. I have 2 options between an LG c8 oled or a Samsung q7. They are both 55 inch and my price difference is negligible. Which one will work better with series S, along with using streaming apps and some TV via antenna. They both have native 120. Is it worth it to go for the oled for the contrast or the Samsung for vrr and hdmi 2.1? As far as I can tell the lg doesn't support 1440 120 as the Samsung does. Thanks for your help
  8. I got an original wd my cloud around probably 2014 -15, and recently I got a my cloud home, which is not able to be accessed within a network as a networked storage drive, which the original could do. Now I am looking at the EX2 ultra and the PR2100, which I plan to put in a RAID 1 setup, but I am not sure if they both are able to accessed as a network storage drive -- ie. Accessible on a TV, or any windows device without using wd software. Do they both act as a network storage device, or which one does and which one doesn't?
  9. Sorry I totally didn't use your code, couldn't figure out how to get it to work, but I made this, and I still dont understand why it doesn't work, it just crashes every time I edit a cell. Private Sub Worksheet_Change(ByVal Target As Range) X = 1 Start: Application.Wait (Now + TimeValue("00:00:10")) If IsEmpty(Range("H2").Value) = True Then GoTo Start Else: GoTo Start1 End If Start1: X = X + 1 Dim xOutApp As Object Dim xOutMail As Object Dim xMailBody As String Set xOutApp = CreateObject("Outlook.Application") Set xOutMail = xOutApp.CreateItem(0) xMailBody = (Range("E" & X).Value) On Error Resume Next With xOutMail .To = (Range("D" & X).Value) .CC = "" .BCC = "" .Subject = (Range("C" & X).Value) .Body = xMailBody .Display 'or use .Send End With On Error GoTo 0 Set xOutMail = Nothing Set xOutApp = Nothing If X > 49 Then GoTo Done End If Done: End Sub
  10. Sorry about late reply, couldn't get to this all day. I got this far, but I dont really understand what the last steps are: what is Mail_small_Text_Outlook 1 ? Totally new to vba, just copied a simple email thing and modified it from what I could find on the internet. Here is an updated version of the code, and a picture of the spreadsheet if that helps too. Edit: also how would I modify the IsEmpty lines at the top?
  11. How do I make this program work for every row in the spreadsheet?
×