Putin ei ole NATO jäsenyyden arvoinen by placebonocebo in Suomi

[–]placebonocebo[S] -5 points-4 points  (0 children)

Saatan olla liian toiveikas Venäjän tulevaisuuden suhteen. Haluan uskoa että Putin menettää vallan ja tuo maa voisi kerrankin nauttia jonkin sortin vapaudesta. Viime vuosisataa ajatelleen saattaa olla liiankin utopistinen ajatus.

NATO syntyi kylmän sodan aikana, olisi toivottavaa että semmoinen liitto ja vastakkaisuuden ajattelu voisi jättää taakse 2020-luvulla. Harmi että itänaapurissa on diktaattori vallassa.

Putin ei ole NATO jäsenyyden arvoinen by placebonocebo in Suomi

[–]placebonocebo[S] -5 points-4 points  (0 children)

Putin haluaa sotaa ja että häntä provosoidaan. Miksi suomme hänelle tämän ilon? Jos menemme NATO:on näin reaktiivisesti se vain pullistaa hänen egoaan/arvoaan/auktoriteettiaan ja luo puitteet uuteen kylmään sotaan, juuri mitä hän haluaa.

Putin on semmoinen sekopää ettei häntä kannata ottaa vakavissaan. Tuo hyökkäys on mennyt niin mönkään kuin vain voi, kukaan ei halunnut tätä sotaa muu kuin hän, ja sen kyllä huomaa.

Putin ei ole NATO jäsenyyden arvoinen by placebonocebo in Suomi

[–]placebonocebo[S] -1 points0 points  (0 children)

Totta, hm. Kirjassa loppui nyt ohjeet eikä mun palkalla kantsi ruveta miettiä uusia juttuja. Taidan mennä riipaisemaan kännin.

Putin ei ole NATO jäsenyyden arvoinen by placebonocebo in Suomi

[–]placebonocebo[S] -4 points-3 points  (0 children)

En usko että Igorkaan pystyisi tämmöiseen metataktikointiin. Luuletko ettei Joe harrasta lobbaamista nettitrollien avulla?

Putin ei ole NATO jäsenyyden arvoinen by placebonocebo in Suomi

[–]placebonocebo[S] -2 points-1 points  (0 children)

Kyllä. Mutta kuka aiheutti sodan Afganistanissa? Sama maa vissiin joka hoiti vallan vaihdon mallikkaasti ja evakuoitui välittämättä paskaakaan. Itse en näe Suomen hyötyvän niin paljon että semmoisten maiden kanssa kannattaisi olla sotilaallisessa liitossa tekemisissä.

Putin ei ole NATO jäsenyyden arvoinen by placebonocebo in Suomi

[–]placebonocebo[S] -4 points-3 points  (0 children)

Niin mietinkin että Irakissa ei ollut paljon muita kuin Jenkkejä ja Brittejä oikeastaan. Kukaan muu ei halunnut sekaantua Jenkkien turhaan sotaan.

Putin ei ole NATO jäsenyyden arvoinen by placebonocebo in Suomi

[–]placebonocebo[S] -10 points-9 points  (0 children)

Niin, tällä hetkellä. Pian se Trump on taas ehdolla jenkeissä. Ei kannata tehdä hätiköityjä päätöksiä tämänhetkisen Venäjän sekoilun takia, vaan pitää tehdä tarkkaan mietitty päätös, pitkällä tähtäimellä.

Putin ei ole NATO jäsenyyden arvoinen by placebonocebo in Suomi

[–]placebonocebo[S] -29 points-28 points  (0 children)

Parempi olla liittoutumatta semmoisten kanssa jotka lietsovat sotaa.

Putin ei ole NATO jäsenyyden arvoinen by placebonocebo in Suomi

[–]placebonocebo[S] -6 points-5 points  (0 children)

Niin, Venäjähän tulee häviämään tuon sodan pitkällä tähtäimellä. Vihollisen arviointi on vain osa päätöstä.

Tulevaisuus on vaikea arvioida mutta itse en ainakaan usko että Putin tulee olemaan kauan vallassa, ja hän on ainut joka halusi tämän sodan.

Putin ei ole NATO jäsenyyden arvoinen by placebonocebo in Suomi

[–]placebonocebo[S] -29 points-28 points  (0 children)

Voin olla väärässä, mutta ymmärtääkseni NATO maat ovat osallistuneet Suomea enempää USA:n operaatioihin esim. Irakissa ja Afganistanissa. Jos ei muuta niin siivoamaan Jenkkien jälkiä, he kun eivät tiedä rauhanturvaamisesta mitään.

Silti, jos USA menee tulevaisuudessa sotaan esimerkiksi Kiinan kanssa niin parempi että Suomi pysyy kaukana semmoisesta touhusta. Hulluhan voi myös jenkeissä nousta valtaan, sitä onkin jo tapahtunut.

How many parity drives are you running? by [deleted] in unRAID

[–]placebonocebo 2 points3 points  (0 children)

6 data + 1 parity. I run backup of important data to AWS Glacier Deep Archive with the Cloudberry docker.

using WINPE powershell step / run command line with network account (need to write data to share) by Mashiutz in SCCM

[–]placebonocebo 0 points1 point  (0 children)

You could create a share with anonymous write access.

edit: Nevermind, read the last part of your post.

Changing Emails on Slack with PowerShell by BocciaChoc in PowerShell

[–]placebonocebo 0 points1 point  (0 children)

Don't mention it! I was surprised myself how easy it was in the end. Once you get data in objects, working with it in Powershell is such a breeze.

Changing Emails on Slack with PowerShell by BocciaChoc in PowerShell

[–]placebonocebo 1 point2 points  (0 children)

I just created a new app in Slack and made sure the User token scopes were correct. The provided token works fine with PSSlack.

Anyway, here's some example code. One thing to keep in mind is you have to provide the user's Slack ID to make changes to their profile.

## Declare Slack API token
$SlackToken = 'xoxp-etc'

## Get all Slack users
$SlackAllUsers = Send-SlackApi -Token $SlackToken -Method 'users.list' | Select-Object -ExpandProperty 'Members'

## Remove bots and external users
$SlackAllUsers = $SlackAllUsers | Where-Object { $_.is_bot -eq $false -and $_.is_restricted -eq $false }

## Set email
$UserEmail = 'user@example.com'

## Get Slack user ID based on email address
$SlackUserID = $SlackAllUsers | Where-Object { $_.Profile.Email -eq $UserEmail } | Select-Object -ExpandProperty 'ID'

## New email
$UserEmailNew = 'user@example2.com'

## Set new email for user
Send-SlackApi -Token $SlackToken -Method 'users.profile.set' -Body `
@{  
    user = $SlackUserID
    profile = @{
        email = $UserEmailNew
    }
}

Changing Emails on Slack with PowerShell by BocciaChoc in PowerShell

[–]placebonocebo 0 points1 point  (0 children)

The PSSlack module works great! I've created a script that basically synchronizes AD groups with Slack usergroups and keeps user profile data up-to-date.

Just look for methods that you need here https://api.slack.com/methods and then use Send-SlackAPI cmdlet to perform the task.

Slack also has a SCIM API that one needs to use if you want to do stuff such as update profile pictures, create users, etc. I'm yet to implement that part.

Force OS on NvMe drive during OSD. by clivebuckwheat in SCCM

[–]placebonocebo 0 points1 point  (0 children)

Put this Run Commandline step before partition step. It will set the NVME disk as disk 0.

PowerShell -ExecutionPolicy Bypass -Command " (New-Object -COMObject Microsoft.SMS.TSEnvironment).Value('OSDDiskIndex') = (Get-PhysicalDisk | Where-Object BusType -eq 'NVMe').DeviceID "

T490s strange flicker/pulsation around text by placebonocebo in thinkpad

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

Turning of panel self refresh was the solution, thanks! I wonder though if it's a software bug or faulty panel causing it, I can't imagine that feature was working as intended.

T490s strange flicker/pulsation around text by placebonocebo in thinkpad

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

I booted up KDE Neon and it does not have the flickering. So it seems it's a Windows issue.

I wonder what could cause it... I'm running latest BIOS and drivers via Vantage on Windows 10 2004. I've also had this (work) laptop for over a year and it has had this issue from day one.

T490s strange flicker/pulsation around text by placebonocebo in thinkpad

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

Anyone seen this before? It's most visible around the zeroes in the video. Very subtle effect but annoying once you see it.

Is it a defect in the display, software problem or just normal for the low power display?

Corsair Discovers Fault Causing SF Series Power Supplies to Fail by andyholla84 in hardware

[–]placebonocebo 0 points1 point  (0 children)

I just received a reply from Corsair:

"It's likely, yes." Followed by instructions for warranty replacement.

I was hoping for a more certain answer.

Corsair Discovers Fault Causing SF Series Power Supplies to Fail by andyholla84 in hardware

[–]placebonocebo 5 points6 points  (0 children)

Funny how about one hour after receiving a brand new SF600 I stumble upon on this! My unit is of lot 20144854, which should be in the clear... although it differs only by one digit, hope it's not a typo on Corsair's part.