Skip to content

Instantly share code, notes, and snippets.

View KazuyaHayashi's full-sized avatar

林 和哉 KazuyaHayashi

  • 日本
  • 東京都
View GitHub Profile
@KazuyaHayashi
KazuyaHayashi / purgeAndroid.txt
Created July 4, 2018 01:25 — forked from tahmidsadik/purgeAndroid.txt
How to completely remove Android Studio from Mac OS X
How to Completely Remove Android Studio
Execute these commands from the terminal
rm -Rf /Applications/Android\ Studio.app
rm -Rf ~/Library/Preferences/AndroidStudio*
rm ~/Library/Preferences/com.google.android.studio.plist
rm -Rf ~/Library/Application\ Support/AndroidStudio*
rm -Rf ~/Library/Logs/AndroidStudio*
@KazuyaHayashi
KazuyaHayashi / main.js
Created November 7, 2021 07:58
Minimum code to reproduce `setContentProtection` issue
const { app, BrowserWindow } = require('electron')
const path = require('path')
function createWindow () {
const win = new BrowserWindow({
width: 800,
height: 600,
})
win.loadURL("https://www.google.com");
@KazuyaHayashi
KazuyaHayashi / index.js
Created April 23, 2022 06:27
Electron video issue on Udemy
const { app, BrowserWindow } = require('electron')
const path = require('path')
function createWindow () {
const win = new BrowserWindow({
width: 800,
height: 600,
})
win.loadURL("https://www.udemy.com/course/fearless-public-speaker-bootcamp-by-ricky-mendoza/");