S
S
syxoi2017-07-03 14:59:53
JavaScript
syxoi, 2017-07-03 14:59:53

Arch: how to fix asterisks and other characters in text?

I installed the system typically, installed the ttf-liberation font, set Liberation Sans everywhere in the LXDE settings, then asterisks and similar characters began to appear in the text instead of text. I can't find what is the reason. Thank you.
7b29f44f2e484e549e615d2415e8efa1.png

Answer the question

In order to leave comments, you need to log in

3 answer(s)
C
Confy, 2018-12-12
@Vetka_in_code

function findUniq(arr) {
  arr = arr.sort();
  
  if (arr[1] === arr[0]) {
    return arr[arr.length - 1];
  }
  return arr[0];
}

S
Stanislav Shendakov, 2018-12-12
@shindax

let arr = [ 3,3,3,3,2 ]
let main_digit = ( arr.reduce( (a,b) => a + b, 0 ) / arr.length ).toFixed(0)
let excess_digit = ( arr.filter( ( item, index ) => item != main_digit ))[0]
console.log( excess_digit )

S
syxoi, 2017-07-04
@syxoi

In general, after updating the system everything became normal.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question