Skip to content

Instantly share code, notes, and snippets.

View JoeyBurzynski's full-sized avatar
💭
Hacking away on @EdgeSEO tools.

Joey Burzynski JoeyBurzynski

💭
Hacking away on @EdgeSEO tools.
View GitHub Profile
@JoeyBurzynski
JoeyBurzynski / gsc_download_with_R.R
Created May 23, 2021 18:47 — forked from Leszek-Sieminski/gsc_download_with_R.R
Downloading GSC data with R
# Description: The aim of this Gist is to show a simple way of downloading Google Search Console API data through R
# Created: 2020-04-28
# Author: Leszek Sieminski
#
# Goals:
# 1. Full - no data inconsistencies allowed
# 2. Stable - not ruining Google API limits
# 3. Functional - based on functions that encapsulate specific tasks.
#
# The idea: download all the data for every single day and loop this process for all dates in a date range
@JoeyBurzynski
JoeyBurzynski / multiple_ssh_setting.md
Created June 4, 2021 09:39 — forked from jexchan/multiple_ssh_setting.md
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"
@JoeyBurzynski
JoeyBurzynski / baseSchema.js
Created August 16, 2021 11:42 — forked from adamcolpitts/baseSchema.js
Create models dynamically with mongoose
var mongoose = require('mongoose');
var BaseSchema = new mongoose.Schema({
name: { type: String, default: '' },
created_at: { type: Date, default: Date.now },
updated_at: { type: Date, default: Date.now }
});
exports.BaseSchema = BaseSchema;
@JoeyBurzynski
JoeyBurzynski / nginx.conf
Created January 12, 2022 15:28 — forked from jonathantittle/nginx.conf
NGINX Configuration
user nginx nginx;
worker_processes 1;
worker_priority -10;
worker_rlimit_nofile 260000;
timer_resolution 100ms;
pcre_jit on;
events {
@JoeyBurzynski
JoeyBurzynski / understanding-word-vectors.ipynb
Created April 2, 2022 19:15 — 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.
@JoeyBurzynski
JoeyBurzynski / spacy-extraction-medley.ipynb
Created April 2, 2022 19:19 — forked from aparrish/spacy-extraction-medley.ipynb
Example code for extracting things with spacy and writing them out to text files and then reading them in again.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@JoeyBurzynski
JoeyBurzynski / enough-python.ipynb
Created April 2, 2022 19:19 — forked from aparrish/enough-python.ipynb
Just enough Python!
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@JoeyBurzynski
JoeyBurzynski / environment.yml
Created April 2, 2022 19:20 — forked from aparrish/environment.yml
Flat, randomness, curves, asemic writing
name: rwet
channels:
- conda-forge
dependencies:
- python
- numpy
@JoeyBurzynski
JoeyBurzynski / extracting-conversations-from-project-gutenberg.ipynb
Created April 2, 2022 19:20 — forked from aparrish/extracting-conversations-from-project-gutenberg.ipynb
Extracting conversations from Project Gutenberg. 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.
@JoeyBurzynski
JoeyBurzynski / predictive-text-concatenated-word-vectors.ipynb
Created April 2, 2022 19:20 — forked from aparrish/predictive-text-concatenated-word-vectors.ipynb
Predictive text with concatenated word vectors. 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.