Skip to content

Instantly share code, notes, and snippets.

View voltek62's full-sized avatar

Vincent Terrasi voltek62

View GitHub Profile
We can't make this file beautiful and searchable because it's too large.
year,id,wrkstat,hrs1,hrs2,evwork,wrkslf,occ10,prestg10,indus10,marital,martype,divorce,widowed,sppres80,spocc10,sppres10,spind10,coocc10,coind10,mawrkslf,sibs,childs,age,agekdbrn,educ,degree,major1,dipged,sex,race,res16,reg16,family16,famdif16,mawrkgrw,incom16,born,parborn,granborn,adults,unrelat,earnrs,income,rincome,income16,rincom16,region,partyid,vote16,pres16,if16who,polviews,natspac,natenvir,natheal,natcity,natcrime,natdrug,nateduc,natrace,natarms,nataid,natfare,natroad,natsoc,natmass,natpark,natchld,natsci,natenrgy,natspacy,natenviy,nathealy,natcityy,natcrimy,natdrugy,nateducy,natracey,natarmsy,nataidy,natfarey,eqwlth,spkath,colath,libath,spkrac,colrac,librac,spkcom,colcom,libcom,spkmslm,colmslm,libmslm,cappun,gunlaw,courts,grass,attend,postlife,pray,prayer,bible,racopen,raclive,affrmact,wrkwayup,happy,hapmar,hapcohab,health,life,helpful,fair,trust,confinan,conbus,conclerg,coneduc,confed,conlabor,conpress,conmedic,contv,conjudge,consci,conlegis,conarmy,obey,popular,thnkself,workhard,helpoth,socrel,soco
Your are a SEO expert. Which are the 3 questions that you will ask your client prior to start working on any project?
Your are a SEO expert. What is your biggest achievement and biggest failure as an SEO?
Your are a SEO expert. How do you measure success?
Your are a SEO expert. What qualities you have that make you better than the other candidates?
Your are a SEO expert. How does a semantic search, social signals, and Google rankings are related to each other?
Your are a SEO expert. How can the page layout algorithms affect the site’s rankings?
Your are a SEO expert. Do exact match anchor internal text links hurt any website?
Your are a SEO expert. Can 404 pages affect rankings?
Your are a SEO expert. How can you find mobile queries for which your site is ranking?
Your are a SEO expert. I wish to remove visits from my own office from getting counted in Google Analytics. How can I do so?
@voltek62
voltek62 / gist:19c36395cc501c578cc3bb3ad792ce8a
Created August 12, 2021 15:23
OpenAI Codex : """ 1. get all relative links from this web page in a list called links - https://www.oncrawl.com 2. go through links list 3. prefix "https://www.oncrawl.com" to each link 4. visit each link 5. extract text from the page 6. save the page text to a new list called pages 7. implement error handling. 8. implement unit tests import re…
"""
1. get all relative links from this web page in a list called links - https://www.oncrawl.com
2. go through links list
3. prefix "https://www.oncrawl.com" to each link
4. visit each link
5. extract text from the page
6. save the page text to a new list called pages
7. implement error handling.
8. implement unit tests
import requests
@voltek62
voltek62 / getGoogleSuggest.R
Created February 5, 2019 21:25
Extracting Google Suggest Keyword
#autoinstall packages
packages <- c("XML", "httr")
if (length(setdiff(packages, rownames(installed.packages()))) > 0) {
install.packages(setdiff(packages, rownames(installed.packages())))
}
# Enjoy learning ? https://dataseolabs.com
library(httr)
library(XML)
@voltek62
voltek62 / extractMainContent.R
Created February 5, 2019 19:56
Extract only the main textual content from an HTML page
#autoinstall packages
packages <- c("rJava", "boilerpipeR", "httr")
if (length(setdiff(packages, rownames(installed.packages()))) > 0) {
install.packages(setdiff(packages, rownames(installed.packages())))
}
# Enjoy learning ? https://dataseolabs.com
# configure your jre
Sys.setenv(JAVA_HOME='C:\\Program Files\\Java\\jre1.8.0_181') # for 64-bit version
@voltek62
voltek62 / seoml.md
Created January 28, 2019 22:30 — forked from jroakes/seoml.md
ML Repository for SEO

Machine Learning Repository for SEO

SEO is a field that is rich with data, yet many young SEOs may not be equipped to learn tools that will prepare them for the future. We want to support our community by using our expertise to provide access to more advanced tools that will allow SEOs of all levels to play with the technologies that will shape the future of our work.

Objectives

  • Provide a repositiory that makes it possible to learn about ML specifically targeted to those interested in SEO
  • Provide a repository that allows a novice user to run a simple model on something meaningful for SEO.
  • Provide a repository that allows advanced users to save time on data getting, cleaning, preprocessing, and model selection.
  • Allow users to showcase work and models developed.
  • Have users get involved with the future development of the repo.
@voltek62
voltek62 / expired_domain_finder.ipynb
Created January 28, 2019 22:08
Jupyter Notebook that input outlink from Screaming Frog crawl, grabs PA & DA from Moz API, and uses WHOIS API to determine domain availability.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@voltek62
voltek62 / display_internal_page_rank.R
Created October 26, 2018 20:49
Visualizing your website’s Internal Linking
#autoinstall packages
packages <- c("igraph", "dplyr", "ggplot2", "magrittr")
if (length(setdiff(packages, rownames(installed.packages()))) > 0) {
install.packages(setdiff(packages, rownames(installed.packages())))
}
# Enjoy learning ? https://dataseolabs.com
library(igraph)
library(dplyr)
# install.packages("ngram")
# install.packages("tm")
library(ngram)
library(tm)
# read txt file
url <- "https://raw.githubusercontent.com/voltek62/RsparkleR-examples/master/examples/advs.txt"
txt <- readLines(url)
data.sentence <- concatenate(txt)
library(searchConsoleR)
# https://dataseolabs.com
## authentication with both GA and SC
options(googleAuthR.scopes.selected =
c("https://www.googleapis.com/auth/webmasters"))
googleAuthR::gar_auth()