2020의 게시물 표시

크롬 브라우저의 파란색 텍스트가 보라색으로 나올때 해결 방법

이미지
크롬의 주소 창에 아래 주소 입력 chrome://flags/#forced-colors 아래와 같이 forced colors의 default를 enabled로 변경 chrome 재시작

How to get VcXsrv working with WSL2

https://stackoverflow.com/questions/61110603/how-to-set-up-working-x11-forwarding-on-wsl2

엣지 브라우저의 텍스트가 보라색으로 나올 때 해결 방법

이미지
그림과 같이 크로미움 기반 엣지 브라우저의 파란 텍스트가 보라색으로 나올 때 해결 법 1. 주소창에 아래의 주소를 입력 (복사 & 붙여넣기)하여 셋팅 페이지로 간 후 edge://flags/#force-color-profile 2. Force color profile 의 Default를 sRGB로 설정 3. 브라우저의 창을 모두 닫고 다시 시작 영문 버젼 (English version) https://heungson.blogspot.com/2020/04/how-to-fix-when-chromium-edge-browser.html

How to fix when the Chromium Edge browser displays blue text as purple.

이미지
If your Chromium Edge browser displays all blue text as purple text, you can try this. Type this or copy and paste on the browser's address bar. edge://flags/#force-color-profile Find " Force color profile " and set it to sRGB . Restart your browser. (Close all your Edge browser windows before start again.) I hope this works for you too.

엣지 브라우저의 폰트가 뿌옇게 보일때 해결법.

NVIDIA의 그래픽 카드를 사용하고 있는데, 엣지 브라우저를 설치하니 폰트가 뿌옇게 보이는 현상이 나타 날 때 해결 법. 바탕화면 NVIDIA 제어판 -> 3D 설정 관리 -> 프로그램 설정 -> 추가 -> Edge Browser 선택 -> FXAA 끄기 아래 포스트에 그림과 함께 좀 더 자세히 (영문) 설명이 되어 있음 https://heungson.blogspot.com/2020/04/how-to-fix-when-chomium-edge-browser.html

How to fix when the Chromium Edge browser becomes blurry.

이미지
If you are using an NVIDIA graphic card and having a blurry text problem with the new chromium-based Edge browser, the solution described here might help. The solution is mentioned by vv_o_e_s and Paul_Sheperia in the link below https://techcommunity.microsoft.com/t5/discussions/chromium-edge-blurry/m-p/433244 1. right click your mouse on the wallpaper and click NVIDIA Control Panel 2. Go to Manage 3D settings 3. Goto Program Settings and Click Add 4. Add (Chromium-based) Microsoft Edge 5. Disable FXAA 6. Restart your edge browser. I hope this works for you, too.

Installing getfem++ from the source code under Linux and python 3 environment.

I had had a problem installing getfem++ with python 3. And here is the solution Environment OS : Ubuntu 18.04 x64 under Windows Subsystem for Linux (WSL) Python : Python 3.7.6 (under Anaconda) getfem : getfem++ 5.3 1. Install dependencies and Anaconda sudo apt install libatlas-base-dev libblas-dev liblapack-dev libmumps-seq-dev libqhull-dev gfortran https://docs.anaconda.com/anaconda/install/linux/ 2. Download getfem++ from getfem download page http://getfem.org/download.html 3. Build library make (see also  http://getfem.org/install/install_linux.html ) 4. Install library sudo make install (see also  http://getfem.org/install/install_linux.html ) 5. Check getfem python package location * The file name of the shared library file may differ depending on your python and Linux version. After installing library and I tried to run demo file in (getfem install directory/interface/tests/python). But it immediately displayed an error message No mo...