Skip to content

Instantly share code, notes, and snippets.

View jihongeek's full-sized avatar

Jihong Kim jihongeek

View GitHub Profile
@TrevTV
TrevTV / ArcOn10.md
Last active July 19, 2024 05:22
Guide to installing Arc Browser on Windows 10

As this is not an official way of installing Arc, if you encounter any issues do NOT report them to the developers, they did not intend for people to be running Arc on Windows 10.

This guide is a bit more manual since I wanted to respect the developers' wishes and not directly link any downloads to the beta of Arc.

I don't know how this will work with updates, you may just need to redo the process to update it, but I'm not sure

  1. Install this font: https://aka.ms/SegoeFluentIcons (this fixes the icons since Windows 10 doesn't have this font installed by default)
  2. Download the Arc appinstaller and open it in notepad/some other text editor
  3. Copy everything inside and paste it into this website: https://codebeautify.org/xmlviewer (this is optional, but it makes reading and copying from the file easier)
  4. Find the mainpackage @Uri, it should end in Arc.x64.msix, and open that in a new tab. It should download that msix file.
@jangjunha
jangjunha / Flask_애플리케이션_배포하기.md
Last active October 12, 2023 09:00
Flask Deployment: Ubuntu server 16.04.1 LTS + Nginx + Uwsgi 환경에서 Flask 애플리케이션 배포하기

Flask 애플리케이션 배포하기

개요

Deployment를 수업 때 했는데 따라 치는 내용만 많아 이해하기 어려웠을 것 같아요. 경험상 배포하다 이것저것 다양한 에러를 많이 겪어봐서 따로 문서를 만들어 정리해봤습니다.

수업 시간에 VirtualBox 설정을 잘못해서 접속을 실패했었는데 마지막 부록에 설정 방법을 적어놨으니 참고하시면 됩니다. DB 설정 부분을 빠뜨렸었는데 그 부분도 확인 바랍니다.

@sloria
sloria / recorder.py
Last active April 12, 2024 11:43
WAV recording functionality using pyaudio
# -*- coding: utf-8 -*-
'''recorder.py
Provides WAV recording functionality via two approaches:
Blocking mode (record for a set duration):
>>> rec = Recorder(channels=2)
>>> with rec.open('blocking.wav', 'wb') as recfile:
... recfile.record(duration=5.0)
Non-blocking mode (start and stop recording):