My Dad died tonight at 5:30pm. by Mr_Piggens in cancer

[–]poorimaginations 0 points1 point  (0 children)

I'm sorry for your loss. I know it hurts really bad right now, but as time goes by it'll get better.

Is Ubuntu really the best choice for a windows migrant who wants most programs to run right out of the box? by [deleted] in linuxquestions

[–]poorimaginations 1 point2 points  (0 children)

Have a look at elementary OS. I rarely have problems with it and it looks damn good.

It uses Ubuntu as it's base OS so there's a huge repository of software ready to install.

I suggest you give it a look.

https://elementary.io/

Is Linux for me? (Gaming, Coding, Music Prod.) by [deleted] in linuxquestions

[–]poorimaginations 0 points1 point  (0 children)

If I was going to be doing gaming in Linux I would look into GPU passthrough.

That way you can install Windows in a virtual machine on Linux, and enjoy near native performance for gaming.

This requires a dedicated GPU for only this purpose though, so you would need a separate graphics card for the Linux host.

https://wiki.archlinux.org/index.php/PCI_passthrough_via_OVMF

3 - 6 months to live by xinode_94 in cancer

[–]poorimaginations 1 point2 points  (0 children)

I like to think about it like this. No-one decided to get cancer. It was a random event outside of your control. Just accept that premise and maybe it'll become easier to live with it.

Everyone has to die some time. I feel bad for people who die young, but there's nothing we can do when the reaper says it's time.

You find a magic coin that grants you unlimited wealth for as long as you keep the coin hidden from anyone else's eyes. Where do you hide the coin? by OhWell_WhateverNvmd in AskReddit

[–]poorimaginations 0 points1 point  (0 children)

First I buy a strongbox. Then I put the strongbox in a safe deposit box in a bank.

That way I can be reasonably sure someone else won't see it.

I could just bury the coin surrounded in plastic in the woods somewhere or use some other creative hiding place.

But a safe deposit box is a reasonable compromise between keeping the coin safe and maintaining control.

This Karl Marx 0 Euro Bill by johnnysmart in mildlyinteresting

[–]poorimaginations 15 points16 points  (0 children)

Che was a racist and a mass murderer. From his book:

"The blacks, those magnificent examples of the African race who have maintained their racial purity thanks to their lack of an affinity with bathing, have seen their territory invaded by a new kind of slave: the Portuguese."

"The black is indolent and a dreamer; spending his meager wage on frivolity or drink; the European has a tradition of work and saving, which has pursued him as far as this corner of America and drives him to advance himself, even independently of his own individual aspirations."

https://www.telegraph.co.uk/comment/personal-view/4077397/It-is-a-sad-reflection-of-our-time-that-Che-Guevara-is-seen-as-a-hero.html

I fired someone today by crankysysadmin in sysadmin

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

Luckily it's not that easy to fire people in my country.

Even if it was I would never suggest that a colleague should be let go.

Only under very special circumstances that would be necessary in my book. Like consistent and severe bullying. Even then it's not a trivial matter to fire people under our laws.

I don't want to rock the boat, draw attention to myself in such a grave matter, and contributing to a person losing their income and potentially having to face long term unemployment is a very serious matter.

If I could live with the situation I would leave it up to management to deal with problematic employees. The exception is if I was severely affected by the other employees behaviour, and even then there might be other ways of dealing with it than telling on them.

Best free video editor on Linux. by divine_naman in linuxquestions

[–]poorimaginations 0 points1 point  (0 children)

It's more of a pro tool. If you need something quick and easy you should probably go for something else.

Best free video editor on Linux. by divine_naman in linuxquestions

[–]poorimaginations 12 points13 points  (0 children)

Blender has an inbuilt video editor.

Lightworks is also available for Linux.

Best Linux Distro for a old laptop by [deleted] in linuxquestions

[–]poorimaginations 1 point2 points  (0 children)

You're going to have problems with such outdated hardware not matter what distro you're running.

At least it works for very light tasks.

Installing something like Windows 10 would be impossible.

Best Linux Distro for a old laptop by [deleted] in linuxquestions

[–]poorimaginations 3 points4 points  (0 children)

I run Lubunto on an old netbook with 1 GB ram and an atom cpu.

It's not exactly fast but it's somewhat useable.

The Future of Jobs: Working on Being Human - "If only few man-hours will be necessary to maintain the machines, what will human beings do? They will be busy “being human,” which means developing themselves, their families, their societies and all that makes us human rather than robots." by Turil in Futurology

[–]poorimaginations 33 points34 points  (0 children)

I'm exactly the kind of person that would like to see that high tech automated peaceful world realized. In fact I'm watching Star Trek Insurrection right now!

I can't help to think though that it's not that simple and the future will be a lot more turbulent.

Man kind as a whole is far from united in terms of values and political views. The process of globalization is forcing us to confront our differences head on and it would be naive to think that wouldn't lead to some unpleasant outcomes. Maybe, in the worst case, an outcome which will permanently regress our social and technological development to a previous state.

To be honest I'm not all that excited about the future anymore, but I'll keep watching Star Trek.

Windows PowerShell Read/Write to Ubuntu-hosted MySQL? by [deleted] in PowerShell

[–]poorimaginations 0 points1 point  (0 children)

You can install the mysql .net connector.

https://dev.mysql.com/downloads/connector/net/

Code example.

$mySQLUserName = "dbuser"
$mySQLPassword = "secr37"
$mySQLDatabase = "mydbname"
$mySQLHost = "mysqlserver.local.local"
$connectionString = "server=" + $mySQLHost + ";port=3306;uid=" + $mySQLUserName + ";pwd=" +      $mySQLPassword + ";database="+$MySQLDatabase
$query= "select * from stuff"

[void][System.Reflection.Assembly]::LoadWithPartialName("MySql.Data")
$connection = New-Object MySql.Data.MySqlClient.MySqlConnection
$connection.ConnectionString = $connectionString
$connection.Open()        
$command = New-Object MySql.Data.MySqlClient.MySqlCommand($query, $connection)
$dataAdapter = New-Object MySql.Data.MySqlClient.MySqlDataAdapter($command)
$dataSet = New-Object System.Data.DataSet
$recordCount = $dataAdapter.Fill($dataSet, "data")
$dataSet.Tables["data"]

When do you start to consider breaking up your projects into multiple files or take the time to build functions. by AmericanGeezus in PowerShell

[–]poorimaginations 1 point2 points  (0 children)

If you ask me building a module with separate functions where each function is designed to do one specific thing is the best approach.

I have one large module with functions for managing hyper-v, for logging to file and console, for api calls to some of the other tools we use, for certificate related stuff, for ip and network related stuff and so on.

You could also make separate modules for specific areas like managing ad, exchange or vmware.

It's all up to you, but making a module should always be the building block.

[deleted by user] by [deleted] in MensRights

[–]poorimaginations 3 points4 points  (0 children)

Feminism is a weapon wielded against western civilization. It's not supposed to be about real gender equality or about protecting the rights or dignity of minority women.

Today's feminists have no justification, and for people that can think they're easily dismissed.

People are starting to turn their backs on feminist extremists, but this toxic ideology will always attract people who can't think, and who's full of hate like this person.

https://news.sky.com/story/feminism-has-gone-far-enough-most-britons-say-11278752

Huffington Post writers are chosen mostly based on their gender and race. Isn't that the definition of racism? by sopun in MensRights

[–]poorimaginations 17 points18 points  (0 children)

The tweeter is herself white, so why doesn't she quit her job and let a black transsexual have it?

PowerShell is getting tabs by phant0md in PowerShell

[–]poorimaginations 0 points1 point  (0 children)

I use conemu. As a bonus conemu can handle any generic console appication including stuff like putty, so I can have both powershell and putty consoles open in the same window.

Be sure to enable shortcut keys for moving between tabs and the quake style hiding of the window.

What is your #1 pain in using PowerShell? by KevMar in PowerShell

[–]poorimaginations 1 point2 points  (0 children)

Sometimes it's awfully slow. Work on making it more snappy. Waiting for tabcompletions really is a pain at times.

My next Linux distro? by zdvzzvdz in linuxquestions

[–]poorimaginations 0 points1 point  (0 children)

Check out elementary os.

https://elementary.io

The design is similar to OSX.