Skip to content

Instantly share code, notes, and snippets.

View AdanJSuarez's full-sized avatar
💻
Working remotely!

Adan J. Suarez AdanJSuarez

💻
Working remotely!
View GitHub Profile
@AdanJSuarez
AdanJSuarez / understanding-word-vectors.ipynb
Created October 15, 2020 17:46 — forked from aparrish/understanding-word-vectors.ipynb
Understanding word vectors: A tutorial for "Reading and Writing Electronic Text," a class I teach at ITP. (Python 2.7) Code examples released under CC0 https://creativecommons.org/choose/zero/, other text released under CC BY 4.0 https://creativecommons.org/licenses/by/4.0/
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@AdanJSuarez
AdanJSuarez / codesign_gdb.md
Created February 19, 2020 14:42 — forked from gravitylow/codesign_gdb.md
Codesign gdb on macOS

If you are getting this in gdb on macOS while trying to run a program:

Unable to find Mach task port for process-id 57573: (os/kern) failure (0x5).
 (please check gdb is codesigned - see taskgated(8))
  1. Open Keychain Access
  2. In menu, open Keychain Access > Certificate Assistant > Create a certificate
  3. Give it a name (e.g. gdbc)
@AdanJSuarez
AdanJSuarez / product_style_css
Last active May 17, 2019 21:24 — forked from atomjar/product_style
Stylesheet for Vue Mastery's Intro to Vue course
body {
font-family: tahoma;
color:#282828;
margin: 0px;
}
.nav-bar {
background: linear-gradient(-90deg, #84CF6A, #16C0B0);
height: 60px;
margin-bottom: 15px;