Posts

Showing posts with the label bug

Do not use anydesk application

Image
 I have recently installed anydesk on my Linux Mint Cinnamon Dell laptop. Two bad things happened: It installs itself as an autostart application which starts immediately when a session starts. That's considered bad behavior. I don't need it to autostart just to connect to other computers every few months. I couldn't find inside the application itself how to disable it had to get into my Cinnamon settings startup apps and disable it. Even worse than that:           2. I started getting weird behavior of Cinnamon. It happened that a new gnome-session was starting in the background causing me to lose the Cinnamon session while working. After running "apt purge anydesk" all problems were solved. That's looks like a bug or some other disturbing behavior. I recommend other software like teamviewer which does not include the malicious behavior above. I am not affiliated with any o...

Looks like a bug in Google Charts for aria-label="A tabular representation of the data in the chart."

Looks like a bug in Google Charts Library . It have a new feature adding a div with aria-label =" A tabular representation of the data in the chart. " that holds the data of your graph in a table. It is discussed here: https://groups.google.com/forum/#!topic/google-visualization-api/k2Kk772j2no But for me it created a bug in the css causing the whole screen to be very wide with a bottom scroll. After some investigations with Firebug I noticed the aria-label =" A tabular representation of the data in the chart. " have a style="position: absolute; left: -10000px" causing this endless horizontal scroll. The solution for me was to add in the css a " display:none ": .small_graph svg + div {display:none;} http://www.jobstrends.co.il