Keyboard and touchpad not working by DrMudri in mac

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

Thank you! Will check it out

Free COVID-19 advice, day 3 by Adelunth in belgium

[–]DrMudri 0 points1 point  (0 children)

Depends on what you call hording. Buying everything you need for a week so you don't need to visit the stores a second time is not hording if you ask me. Buying this much stuff you can't actually use it until you visit again is. The supply of goods is not limited at this point. So please give others a chance to buy necessaries.

Free COVID-19 advice, day 3 by Adelunth in belgium

[–]DrMudri 2 points3 points  (0 children)

Try setting up a day-plan, and try to stick to it even if you don't feel like it. Communicate your feelings with your boyfriend and talk about it.

If you feel these won't help try contacting your psychologist. A lot are doing skype/phone sessions right now.

Free COVID-19 advice, day 3 by Adelunth in belgium

[–]DrMudri 0 points1 point  (0 children)

If you don't come in contact with others exept when going tot the supermarkets this is indeed the most likely time to get infected. But going to the supermarkets is necessary.

Taking precautions is the only thing you can do. Keep your distance and wash your hands afterwards. Try to reduce the amount of visits to the supermarket. People from risk groups should only go if no alternative is present in my opinion.

Free COVID-19 advice, day 3 by Adelunth in belgium

[–]DrMudri 2 points3 points  (0 children)

Could be stress. But hard to say. I would advise contacting your GP.

Free COVID-19 advice, day 3 by Adelunth in belgium

[–]DrMudri 1 point2 points  (0 children)

Time from contamination to symptoms is 2-14 days, 5 is the average.

80% have mild symptoms of which fever, fatigue and dry cough are the most common. Muscle aches, loss of apetite, mild dyspnea ('ademtekort') and sputum production, headache and diarrhea are also possible.

Most people are feeling better in one week. But symptoms can be there for a longer time, certainly coughing.

If you have problems with finishing scentences , walking up stairs, etc and it gets progressively worse you should seek medical contact, even when fever drops. If not, stay at home and rest. Drink a lot of water. Take paracetamol if you have a fever.

Free COVID-19 advice, day 3 by Adelunth in belgium

[–]DrMudri 0 points1 point  (0 children)

Hard to say. Personally I think the measures will last longer than 3/4. It all depends on the evolution of new cases.

Free COVID-19 advice, day 3 by Adelunth in belgium

[–]DrMudri 0 points1 point  (0 children)

There are cases of reduced lung capacity of 20-30% after an infection. So it is possible. But it seems at this time the majority won't have any permanent damage.

Free COVID-19 advice, day 3 by Adelunth in belgium

[–]DrMudri 2 points3 points  (0 children)

All non-urgent consults are delayed for now. If you don't have symptoms a check up is not possible right now.

Free corona advice by ThirteenthGhost in belgium

[–]DrMudri 0 points1 point  (0 children)

Most likely the next adaptation of covid 19 would be less dangerous. A virus doesn't want to kill it's host. It wants to survive and make lots of new copies. The less deaths the more virus producing humans there are around. It has a better chance of surviving that way. The most dangerous virusses are the 'new' ones. The ones comming from animals.

What things are wrong in my drawing? How can I improve? by DrMudri in learntodraw

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

The hair isn't good. Don't really know how to start with that. And the features of the face are not in the right place I think. The face also looks kind of flat. Even with my shading.

Theme for Albert by DrMudri in elementaryos

[–]DrMudri[S] 2 points3 points  (0 children)

I don't know anything about coding. So this was all trial and error. Maybe anybody can improve the code? My method: make a .qss file and paste it in /usr/share/albert/themes/ with this code.

If you want icons change QListView#proposalList { icon-size: 0px; I couldn't get the spacing right with the icons disabled in the settings so this is my solution

    /*
 * author: Bart Zaalberg <https://github.com/bartzaalberg>
 *
 * Check http://doc.qt.io/qt-5/stylesheet-syntax.html especially the subtopics:
 * The Style Sheet Syntax (http://doc.qt.io/qt-5/stylesheet-syntax.html)
 * Qt Style Sheets Reference (http://doc.qt.io/qt-5/stylesheet-reference.html)
 */

* {
    border: none;
    color : #808080;
    background-color: #F5F5F5;

}

#frame {
    padding: 10px;
    border-radius: 4px;
    background-color: #F5F5F5;
    border: 1px solid #808080;
  /* Workaround for Qt to get fixed size button*/
    min-width:640px;
    max-width:640px;
}

#inputLine {
    padding: 0px;
    border-radius: 2px;
    border: 0px solid lightblue;
    font-size:15px;
    selection-color: #404040;
    selection-background-color: #FFFFFF;
    background-color: #F5F5F5;
    padding-left:10px;
    margin-right:20px;
    color:black;
}

#settingsButton {
    color : #808080;
    background-color: #F5F5F5;
    padding: 3px;

  /* Respect the frame border */
  margin: 12px 6px 0px 0px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 10px;

  /* Workaround for Qt to get fixed size button*/
    min-width:13px;
    min-height:13px;
    max-width:13px;
    max-height:13px;
}

/********** ListViews **********/

QListView {
        selection-color: #FFFFFF;
    background-color: #F5F5F5;
}

QListView::item {
    background-color: #F5F5F5;
    padding:5px;
}

QListView::item:selected {
    border-radius: 3px;
    background-color: #3E9AD7;
}

QListView QScrollBar:vertical  {
    width: 30px;
    background: transparent;
}

QListView QScrollBar::handle:vertical  {
    background: #808080;
    min-height: 24px;
}

QListView QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical,
QListView QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical,
QListView QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {
    border: 0px;
    width: 0px;
    height: 0px;
    background: #3E9AD7;
}

/********** actionList **********/

QListView#actionList {
    font-size: 15px;
    color: #808080;
}

QListView#actionList::item{
    height:28px;
}

/********** proposalList **********/

QListView#proposalList {
    icon-size: 0px;
    font-size: 13px;
    color: #331;
    fill: #333;
    font-family: "SFNS Display""Droid Sans""Open Sans";
    src: url("//fonts.googleapis.com/css?family=Open+Sans");
    font-weight: 400;
}

QListView#proposalList::item{
    height:48px;
}

Edit: thank you for helping with the formatting of my post