Skip to content

Instantly share code, notes, and snippets.

@bitaller
bitaller / Disabling Windows 10-11 Update.md
Created December 15, 2022 07:14
Disabling Windows 10-11 Update

if you just want to stop the automatic-update but you still want to be able to install updates yourself by launching the Windows update manually, you just need to apply a group-policy: run: gpedit.msc, computer configuration, administrative templates, windows components, windows update, configure automatic updates - set to disabled.

01_start_run_gpedit_msc_group_policy

02_group_policy_windowsupdate_configureautomaticupdates_disabled_noautoupdate

or apply:

@74th
74th / macbookair2020-install-ubuntu.md
Last active August 20, 2023 03:37
MacBookAir(2020) へ のUbuntuのインストール

MacBookAir9,1(2020)へ の Ubuntu 20.04 のインストール (installing Ubuntu 20.04 to MacBookAir9,1(2020))

MacBookPro でも動作すると思います。(The followings work on other MacBookPro.)

自分の環境では、以下は動作しませんでした。(WiFi on MacBookAir does not work on my machine.)

  • WiFi : USB の外付け WiFi アダプタで代用 (I use USB WiFi Adapter instead of WiFi on MacBookAir.)

資料(References)

@nicklasfrahm
nicklasfrahm / .clang-format
Last active June 4, 2024 06:28
Opinionated .clang-format for JS boys coming from prettier and stumbling into C++
AccessModifierOffset: 2
AlignAfterOpenBracket: true
AlignConsecutiveAssignments: true
AlignConsecutiveDeclarations: true
AlignEscapedNewlines: Right
AlignOperands: true
AlignTrailingComments: true
AllowAllParametersOfDeclarationOnNextLine: true
AllowShortBlocksOnASingleLine: false
AllowShortCaseLabelsOnASingleLine: true

Arch Install for Macbook Pro

Macbook Pro Retina 15-inch, Late 2013
Model Identifier: MacBookPro11,2

The MacBook Pro 11,x consists of models with Retina display shipped by Apple In Late 2013 and Mid 2014.
Following ArchWiki guide.

Steps for OS installation

Grab a cup of coffe and get ready, because life is not always easy 🙈

Assets

@ajohnclark
ajohnclark / install.sh
Last active October 24, 2017 18:21
sublime text 3 fedora 26 build_3143
#!/bin/sh
SHORTCUT="[Desktop Entry]
Name=Sublime Text 3
Comment=Edit text files
Exec=/opt/subl3/sublime_text
Icon=/opt/subl3/Icon/128x128/sublime-text.png
Terminal=false
Type=Application
Encoding=UTF-8
Categories=Utility;TextEditor;"
@pepicrft
pepicrft / steps.md
Last active August 30, 2016 23:24
Setup the Android SDK/NDK in OSX
  1. Install the SDK using brew
brew install android-sdk
brew install android-ndk
  1. Set the environment vars
export BREW_HOME="$(brew --prefix)"
export ANDROID_HOME="${BREW_HOME}/opt/android-sdk"
export PATH="$PATH:${ANDROID_HOME}/tools"
@nickloewen
nickloewen / bret_victor-reading_list.md
Last active September 9, 2024 20:44
Bret Victor’s Reading List

This is a plain-text version of Bret Victor’s reading list. It was requested by hf on Hacker News.


Highly recommended things!

This is my five-star list. These are my favorite things in all the world.

A few of these works have had an extraordinary effect on my life or way of thinking. They get a sixth star. ★

@brandonb927
brandonb927 / osx-for-hackers.sh
Last active September 8, 2024 11:59
OSX for Hackers: Yosemite/El Capitan Edition. This script tries not to be *too* opinionated and any major changes to your system require a prompt. You've been warned.
#!/bin/sh
###
# SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer)
# For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos
###
# Alot of these configs have been taken from the various places
# on the web, most from here
# https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx
@jexchan
jexchan / multiple_ssh_setting.md
Created April 10, 2012 15:00
Multiple SSH keys for different github accounts

Multiple SSH Keys settings for different github account

create different public key

create different ssh key according the article Mac Set-Up Git

$ ssh-keygen -t rsa -C "your_email@youremail.com"