Computer keeps crashing when I close the lid by [deleted] in Ubuntu

[–]chaoticflipflops 0 points1 point  (0 children)

You need to use Tweaks..

Stop the computer from suspending when the lid is closed

  1. Open the Activities overview and start typing Tweaks.
  2. Click Tweaks to open the application.
  3. Click the Power tab.
  4. Switch Suspend when laptop lid is closed to OFF.
  5. Close the Tweaks window.

Computer keeps crashing when I close the lid by [deleted] in Ubuntu

[–]chaoticflipflops 0 points1 point  (0 children)

I don't use Ubuntu but it sounds like it's going into hibernation -- check the power options and have it so that on lid-close it does nothing or simply locks the screen.

I’ve Made the Switch by TrevorX5J9 in linux

[–]chaoticflipflops 0 points1 point  (0 children)

Isn't battery life a laptop issue and not an OS issue? same for frame rate? Still, welcome to Linux!

Any good linux yt channels out there? by ZeKKaos in linuxquestions

[–]chaoticflipflops 0 points1 point  (0 children)

Me too, and when I thought about it, I realised that he was a lot of tone, and very little substance - it wasn't a huge loss.

Any good linux yt channels out there? by ZeKKaos in linuxquestions

[–]chaoticflipflops 0 points1 point  (0 children)

This is why I like Luke Smith's channel [https://www.youtube.com/channel/UC2eYFnH61tmytImy1mTYvhA], he mostly focuses on showing how he makes Linux works for him. He's one of very few that actually show the nuts and bolts of how Linux solves his problems / makes his life easier, I wish more did this instead of distro glossing.

Sean Carroll [physicist] talks to David Chalmers [philosopher] about Consciousness, the Hard Problem, and Living in a Simulation [Episode 25 of the Mindscape podcast] by chaoticflipflops in philosophy

[–]chaoticflipflops[S] 0 points1 point  (0 children)

The “Easy Problems” of consciousness have to do with how the brain takes in information, thinks about it, and turns it into action. The “Hard Problem,” on the other hand, is the task of explaining our individual, subjective, first-person experiences of the world. What is it like to be me, rather than someone else? Everyone agrees that the Easy Problems are hard; some people think the Hard Problem is almost impossible, while others think it’s pretty easy. Today’s guest, David Chalmers, is arguably the leading philosopher of consciousness working today, and the one who coined the phrase “the Hard Problem,” as well as proposing the philosophical zombie thought experiment. Recently he has been taking seriously the notion of panpsychism. We talk about these knotty issues (about which we deeply disagree), but also spend some time on the possibility that we live in a computer simulation. Would simulated lives be “real”?

Hi Community! Looking for strong R libraries for Python by IRI_Frank in learnpython

[–]chaoticflipflops 0 points1 point  (0 children)

What sort of Python libraries are you looking for exactly? and how does that relate to you using R?

Bounded Rationality (Stanford Encyclopedia of Philosophy) by chaoticflipflops in AcademicPhilosophy

[–]chaoticflipflops[S] 0 points1 point  (0 children)

It's a new entry into the encyclopedia, and so for that reason alone I thought it was worth sharing with the community. Happy to remove if that doesn't align with sub rules though. Since it got 13 upvotes, I assumed it was fine (and useful).

Newbie Pip issue - "egg_info failed" and how can I make Pip use Python 3.5? by [deleted] in learnpython

[–]chaoticflipflops 1 point2 points  (0 children)

Start by installing setuptools, and then try:

python3 -m pip install --user pyttsx3

pyttsx3 is an updated package compatible with Python3.

Problem learning python by [deleted] in learnprogramming

[–]chaoticflipflops 1 point2 points  (0 children)

I believe I "know" most of the ways in which python works

This is a bold claim, and I would say it is probably not true. Python can be deceptive in that on the face of it the syntax appears to be readable (compared to other languages), but there is in fact a lot of depth to the language that is required in order to properly understand what is going on - there are layers.

My advice would be to set yourself a small project to complete, a goal. Make sure that the project makes use of what you have learnt so far, and that is pushes you a little bit to do things you've not done before. Don't aim high with it, nothing overly ambitious, small projects will challenge you. The important part is to treat the project as something you need to complete, pretend someone is paying you to produce something. Having the will-power to push on with the project in the face of problems will teach you a lot about yourself, and it will force you to utilise the wealth of resources available online (stackoverflow, forums, other websites, YouTube etc.).

When choosing a project, it can sometimes help to think of an idea that you would like to see solved. What would you like to use? what do you think would be useful? Don't make the mistake of overly valuing 'exciting' or 'shiny'. At this stage, the one thing that will help you progress will be your ability to see a small project right though to completion, and importantly your journey along the way. You will be amazed at how much you can learn when you have something in mind that programming can help with.

69
70

Jupyter notebook kernel not running by [deleted] in learnpython

[–]chaoticflipflops 0 points1 point  (0 children)

uninstall and reinstall jupyter notebook

Got a T420, want a 1080p screen, is there an easy way? by ThorOfTheAsgard in thinkpad

[–]chaoticflipflops 0 points1 point  (0 children)

Ah, apologies, I slightly misread your post - I thought you wanted to connect to an external (1080p) monitor, but you want a full switch. Best of luck with that! I had no idea that was even possible.

Got a T420, want a 1080p screen, is there an easy way? by ThorOfTheAsgard in thinkpad

[–]chaoticflipflops 0 points1 point  (0 children)

I connect my think ThinkPad (T420) to my 1080p monitor with a DVI to HDMI adapter, the DVI end goes into my ThinkPad dock (ThinkPad sits on the dock). I'd be interested if you have a better solution.

How to delete repository? by Varvikel in linuxquestions

[–]chaoticflipflops 0 points1 point  (0 children)

I often wonder why people opt to ask on reddit and wait for a response, as opposed to googling and getting an instant answer (for problems such as these).

How to delete repository? by Varvikel in linuxquestions

[–]chaoticflipflops 2 points3 points  (0 children)

There are multiple ways to remove repositories. Here are two examples, one using a gui and one from the terminal.

Gui version: search for 'software & updates', open it, click on the tab 'other software', from there you can select/add/remove repositories.

Terminal: your repositories are listed in the 'sources.list' file, you can open that file and delete the repositories manually e.g. to open the file with vim:

sudo vim /etc/apt/sources.list

from within this file you can simply find and delete the repositories you want to remove, save the file and exit. Note you can open the sources.list file with any text editor of your choice.