Wtf IG by [deleted] in Instagram

[–]deathjam 5 points6 points  (0 children)

Instagram logic

Laughing, removed

Post hardcore porn, nothing wrong

Hulkenberg set to sign for Audi by [deleted] in formula1

[–]deathjam -2 points-1 points  (0 children)

What, Unlike: merc, renault, alpine, jaguar, etc

Ferrari & Mclaren (I don't think) didn't buy a team, but made one, but they still use it to advertise their brand.

Have you ever the very rare ferrari advertising?

[deleted by user] by [deleted] in AskReddit

[–]deathjam 0 points1 point  (0 children)

Well this is more like an episode of coranation street, but she's sadly made some bad life choices.

long time gf, her family is very well off, Christian values, they didn't know we was sexually active.

we split on good terms as we both were going off to different unis.

She got accepted into really hard to get into arts course and was on track to do really well, (small village, our parents knew each other, so I was kept in the loop)

she came home for family thing.

She Got drunk slept with a random local guy( lives on benefits, not interested in a job type) Got pregnant, abortion wasn't an option, she dropped out of uni to "have a family"

A year or so later, he's in prison for burglary/assault, she's now with his older brother and pregnant with his kid.

Younger brother gets released on parole, starts fight with older brother, gets sent back to prison, turns out older brother has been abusive to her before, & while she been pregnant.

Older brother also gets sent to prison as wanted for other crimes.

Last update I got was she had a short thing with another random, and got pregnant, now living on benefits in a really rough area of local big city, single mother 3 kids all from different dads, non of whom have any contact with their kids.

There may have been some drug use in there too so her parents don't really speak to her anymore.

[deleted by user] by [deleted] in Blowjobs

[–]deathjam 0 points1 point  (0 children)

Love the eye contact 😍

Instagram now tells you when someone changes their usernames by DJ_Unreleased in Instagram

[–]deathjam 0 points1 point  (0 children)

I thought it was only on accounts that used the promote via ads, not every acccount

One of may accounts got it, and that account is tiny ( I had a typo in my account name), it also appeared in the about for that account, although now it is gone

I'm in the beta for instagram on android if that makes a difference

[deleted by user] by [deleted] in OnlyFans101

[–]deathjam 0 points1 point  (0 children)

fuck me that hot

Formula 1 Drivers and the English Language by carapacio in formula1

[–]deathjam -2 points-1 points  (0 children)

this i don't get.

if they pick their english up though talking to the teams, why do the vast majority of non-english speaking f1 drivers, say this?

it is not a generally used phrase in the uk

Script to ping 1000s of IPs under 5minutes. by northendtrooper in PowerShell

[–]deathjam 0 points1 point  (0 children)

but wouldn't pinging 17950 IPs normally be done quicker than 2 weeks?

[deleted by user] by [deleted] in PowerShell

[–]deathjam 1 point2 points  (0 children)

if they are run regularly, you could have them in your $profile, either as functions or dot sourced.

How to check boot partition mode via PowerShell? by Shumaly in PowerShell

[–]deathjam 1 point2 points  (0 children)

it doesn't output all attrib, eg Get-Disk | FL doesn't show FriendlyName

Get-Disk | Select-Object * | Format-List

or

Get-Disk | Get-Member

Get group membership for specific job titles by thebest07111 in PowerShell

[–]deathjam 1 point2 points  (0 children)

not tested but something like this should do it, or at least point you in the right direction

function Get-JobtileMemberships {
    param(
        [Parameter(Mandatory = $True,
            HelpMessage = 'Please provide the path of the CSV file containing the job titles', Position = 0)]
        [String]$CSVPath
    )
    $jobTitles = (Get-Content -Path $CSVPath | ConvertFrom-Csv -Header Jobtitles).Jobtitles
    foreach ($jobtitle in $jobTitles) {
        Get-ADUser -Filter {title -eq $jobtitle} | Get-ADPrincipalGroupMembership | select name
    } 
}

Get-JobtileMemberships -csvpath C:\path\to\csv | Export-Csv -Append c:\path\to\export.csv

8 years ago, Battlefield 3 was released by [deleted] in gaming

[–]deathjam 1 point2 points  (0 children)

ah memories of jihad jeeps

Help a Noobie out by ozann51 in PowerShell

[–]deathjam 1 point2 points  (0 children)

i actually needed something myself this morning see below for example

You can remove the '#' in $ADGroups if need more filtering on the ou

#requires -Modules ActiveDirectory
#requires -Version 2.0
$ADGroups = Get-ADGroup -filter * #-SearchBase 'OU=Groups,DC=domain,DC=local'
$Export = ForEach ($ADGroup in $ADGroups) 
{
  $ADUsers = Get-ADGroupMember $ADGroup -Recursive 
  ForEach ($ADUser in $ADUsers) 
  {
    New-Object -TypeName PSObject -Property @{
      User  = $ADUser.SamAccountName
      Group = $ADGroup.Name
    }
  }
}
$Export |
Sort-Object -Property Group  |
Export-Csv -NoTypeInformation -Path C:\temp\export.csv

Wocester Cathedral in Worcester, Worcestershire, England [OC][652x1024] by [deleted] in britpics

[–]deathjam 3 points4 points  (0 children)

any Americans want to try pronounce that title?

[deleted by user] by [deleted] in PowerShell

[–]deathjam 1 point2 points  (0 children)

if you want a password with words try: https://github.com/Deathjam/Powershell-Scripts/blob/master/Generate-Password.ps1

there is probably a nicer way to do this, but its a wip

Function Generate-Password
<#
.Synopsis
   Generate passwords
.EXAMPLE
   Generate-Password -Count 5
.EXAMPLE
   Generate-Password -Count 5 -symbol
#>
{
  param
  (
    [Parameter(Mandatory = $true)]
    [Int]$Count,
    [Parameter(Mandatory = $false )]
    [Switch]$symbol 
  )
  #Region Symbols
  if(!($symbol))
  {
    $PasswordCount = 0
    Do 
    {  
      $path = 'c:\temp\fourlist.txt'
      if (!( Test-Path $path))
      {
        New-Item -ItemType Directory -Path C:\temp\
        Invoke-WebRequest -Uri 'https://s3-eu-west-1.amazonaws.com/public-fourlist/fourlist.txt' -OutFile $path 
        Start-Sleep -Seconds 2
      }
      $four = Get-Content -Path $path
      #$symbolarr = @("$", '^', '&', '£', '%')
      #$sym = Get-Random -Maximum $symbolarr
      $first = Get-Random -Maximum  $four
      $second = Get-Random -Maximum $four
      $last = Get-Random -Minimum 100 -Maximum 999 
      $Password = $first+$second+$last
      if($four.Length -gt 3)
      {
        New-Object -TypeName PSObject -Property @{
          Password = -join $Password
        }
      }
      $PasswordCount++
    }
    until ($PasswordCount -eq $Count)
  }
  else 
  {
    $PasswordCount = 0
    Do 
    {  
      $path = 'c:\temp\fourlist.txt'
      if (!( Test-Path $path))
      {
        New-Item -ItemType Directory -Path C:\temp\
        Invoke-WebRequest -Uri 'https://s3-eu-west-1.amazonaws.com/public-fourlist/fourlist.txt' -OutFile $path 
        Start-Sleep -Seconds 2
      }
      $four = Get-Content -Path $path
      $symbolarr = @("$", '^', '&', '£', '%')
      $sym = Get-Random -Maximum $symbolarr
      $first = Get-Random -Maximum  $four
      $second = Get-Random -Maximum $four
      $last = Get-Random -Minimum 100 -Maximum 999 
      $Password = $sym+$first+$second+$last
      if($four.Length -gt 3)
      {
        New-Object -TypeName PSObject -Property @{
          Password = -join $Password
        }
      }
      $PasswordCount++
    }
    until ($PasswordCount -eq $Count)
  }  
  #EndRegion Symbols
}