2019년 3월 12일 화요일

heaps.io 1.9.1

  • cons
    • too much manual configuration during tutorial #1~#3
    • unable to setup mobile build?
      • https://community.heaps.io/t/mobile-platform-build-guide/37 
    • HL debug does not work correctly 
      • need git version - still imperfect at all?
  • pros
    • evoland 2
    • chrome debugger + vscode could be good pair of tool

2019년 3월 7일 목요일

2019년 3월 2일 토요일

manjaro setup

  1. installation
  2. hwclock to localtime
    1. https://wiki.manjaro.org/index.php?title=System_Time_Setting
    2. timeset
  3. find fastest mirror
    1. https://wiki.manjaro.org/index.php?title=Use_pacman-mirrors_to_Set_the_Fastest_Download_Server
    2. sudo pacman-mirrors --country South_Korea Japan Taiwan China && sudo pacman -Syyu 
  4. install yay
    1. sudo pamcn -S yay
  5. install fcitx
    1. install sakura
      1. yay -S sakura
    2. install vscode
      1. yay -S visual-studio-code-bin 
        1. extensions
          1. gitflow by vector-of-bool
          2. git history by don jayamanne
    3. setup firefox
      1. add add-ons
        1. ublock origin
        2. noscript security suite
        3. zoom page we
      2. preferences
        1. restore previous session
    4. install gitflow
      1. yay -S gitflow-avh
    5. setup git lg
      1. https://gist.github.com/johanmeiring/3002458 
    6. disable turbo boost
    7. install dropbox
      1. yay -S dropbox
    8. install keepassx2 
      1. yay -S keepasx2
    9. generate ssh-key and register!
    ref: HiDPI support

    manjaro fcitx

    yay -S fcitx-im fcitx-hangul fcitx-configtool

    ~/.xprofile

    export GTK_IM_MODULE=fcitx
    export QT_IM_MODULE=fcitx
    export QT4_IM_MODULE=fcitx
    export XMODIFIERS=@im=fcitx

    1. configure -> input method -> add -> hangul
    2. global config -> trigger input method

    2019년 3월 1일 금요일

    linux comparison 2019

    • mx linux
      • stable and fast
      • not quite easy to install newest software 
      • slow to fix security update(RDS issue)
    • antergos(discontinued)
      • easy to install new software
      • so much updates per day
      • mirror server is down sometimes and no nearest server(low popularity?)
      • installer broken many times(19.2)
    • manjaro
      • almost same as antergos
      • default theme is too green
    • archbang
      • unable to install bootloader for efi
      • discontinued? no guide or wiki 
    • zen installer - pure arch?
      • broken after 2nd upgrade -.-

    2019년 2월 28일 목요일

    mx linux korean input(fcitx) 18.1

    •  MX Package Installer
      • Korean_Input_fcitx
    • remove fonts-baekmuk 
    • 텔레그램에서도 잘 됨.
    • (fcitx) 잘 됨
    • (ibus)하지만 띄워쓰기에 문제가 있음😕

    ref: https://mxlinux.org/wiki/other/chinese-simplified-input

    2019년 2월 3일 일요일

    godot paint image on the fly

    setup
    onready var sprite = $BackgroundSceneRoot/Sprite


    func _ready():
        img = Image.new()
        img.create(Globals.WIDTH, Globals.HEIGHT, false, Image.FORMAT_RGB8)
        tex = ImageTexture.new()
        tex.create_from_image(img, 0)

        sprite.texture = tex

    update
        img.lock()
        img.set_pixel(x, y, Color(r, g, b))
        img.unlock()

        sprite.texture.set_data(img)

    debian 13 trixie setup

    install git fonts-firacode libwayland-bin for raylib libasound2-dev libx11-dev libxrandr-dev libxi-dev libgl1-mesa-dev libglu1-mesa-dev libx...