Skip to content

Instantly share code, notes, and snippets.

View rayantony's full-sized avatar

ray anthony rayantony

  • Mexico
View GitHub Profile
@rayantony
rayantony / browser-security-sucks.md
Last active February 18, 2017 00:54
Browser Security Sucks

###a Bug Report Turned Op-ed Piece on Browser Security Over-Hypeed Lunacy

Ever have one of those days where the most basic things don't work? I've been having one all night. And I'm so sick of browser security turning things off.

the last straw

I have just gone from machine to machine testing code, where containers or ide's were not appropriate and in my estimation time prohibitive solutions, far more effort than the minor task would justify. The task in this case, was simply a color change of a background. Now, I need a new browser because even the scratchpad which I considered a last resort on account of the extra keystrokes involved and a whole window opening also did not work, its now telling me it's not safe for me to test a background color of light blue. Not safe? Are you f***ing kidding me? Meanwhile Gmail is telling me that the browser (Firefox) is a deprecated versi

@rayantony
rayantony / README.md
Last active September 7, 2016 12:02
CSS Xtras js and ss injector revisions

original line from

p,footer,header,a,article,soundmanager,video,input,post,h1,hr,h3{ animation-delay:1.5s; animation:fly-in-from-right 0.93s 1s ease both; transform-origin:top right; } top-panels,h4,h5,img,.bottom-panels,.list-group-item,list-item,list,li,ol,shop-button,shop-item,cart,ad,dl,dt,dd,figure {animation-delay:1.8s; animation:fly-in-from-left 2.93s 1.2s ease both; -webkit-animation-delay:1.8s; -webkit-animation:fly-in-from-left 2.93s 1.5s ease both; transform-origin:top left; } @keyframes fly-in-from-top { from { transform:translateX(12rem) rotate(90deg); opacity:0; } } @keyframes fly-in-from-left { from { transform:translateY(12rem) rotate(180deg); opacity:0; } } @keyframes fly-in-from-right { from { transform:translateY(12rem) rotate(-360deg); opacity:0; } }'+ 'frame,iframe,section{ animation-delay:2s; animation:fly-in-from-left 2s 2s ease both; transform-origin:top left; } body { font-size: 1.3em; line-height: 1.5; font-weight: 400; font-family: "Ral
@rayantony
rayantony / Dockerfile
Created September 4, 2016 07:02
Google Chrome Developer VNC Headless Docker Ubuntu
# Pull base image.
FROM ubuntu-desktop
# Install Chrome Dev Build (builds weekly approx, not nightly)
RUN \
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
&& \
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list' && \
apt-get update && \
apt-get install -y google-chrome-unstable && \
@rayantony
rayantony / list.csv
Last active September 2, 2016 04:18
private blog drafts mess
size date path
2.0K Sep 1 11:33 ./newrayantony/rayantony.github.io/about.md
242 Sep 1 11:33 ./newrayantony/rayantony.github.io/bower_components/pygments/README.md
1.1K Sep 1 11:33 ./newrayantony/rayantony.github.io/LICENSE.md
5.5K Sep 1 12:54 ./newrayantony/rayantony.github.io/_posts/2014-01-01-example-content.md
1.4K Sep 1 12:54 ./newrayantony/rayantony.github.io/_posts/2015-03-07-wtf-is-rayantony.md
2.4K Sep 1 11:45 ./newrayantony/rayantony.github.io/_posts/2016-08-30-all-the-small-things.markdown
2.4K Sep 1 11:45 ./newrayantony/rayantony.github.io/_posts/2016-08-30-all-the-small-things.md
3.4K Sep 1 12:54 ./newrayantony/rayantony.github.io/_posts/2016-08-30-credibility-and-reputation-bad-blogs.markdown
3.4K Sep 1 12:54 ./newrayantony/rayantony.github.io/_posts/2016-08-30-credibility-and-reputation-bad-blogs.md
@rayantony
rayantony / README.md
Last active September 4, 2016 07:26
D3js graphing basic example with csv data

===

Basic example of simple graphic object with svg fill generated with D3 being fed data live in a csv table.

raw index:

https://gist.githubusercontent.com/rayantony/028a59af5d9258142d010b9fee67eec8/raw/ebcf7962cdfbd9eda13f40645e476f0eabcedaf2/index.html
@rayantony
rayantony / README.md
Created August 30, 2016 09:59
installing and running live web to shell using curl wget busybox
@rayantony
rayantony / .bash_aliases
Last active September 2, 2016 08:54
My Shell Gits Extensions Aliases and Functions
#Standard Aliases from cloudyvbx
alias cls='clear'
alias lsh='ls -lashR --color=auto'
alias lsa='ls -lashF --color=auto '
alias shutdown='sudo shutdown -PH -v 0'
alias mem='echo -e "Memory Info:\n";free -m;df --total -h;echo -e "\n"'
alias os='echo -e "OS Info:\n";grep . /etc/os-release;grep . /etc/lsb-release;echo -e "\n"'
alias cpu='echo -e "CPU Info:\n";grep . /proc/cpuinfo;echo -e "\n"'
alias kernel='echo -e "\n";grep . /proc/cmdline;echo -e "\n";dmesg | grep -i "command line";echo -e "\n";uname -a'
alias history='cat ~/.bash_history | uniq -u | grep -i .'
@rayantony
rayantony / bkjs.uris
Last active November 23, 2016 09:01
Javascript CSS mixed file dynamic loading unloading injecting and bulk
// bookmarklets from my cuyrrent firefox session aug 2016 chrubblackie
//new test
javascript:strList='https://d39dlwgeopmdw0.cloudfront.net/assets/web/skel.css https://cdn-static-1.medium.com/_/fp/css/main-base.z0KlLzixSjqiO0ooeem2tg.csshttps://cdn-static-1.medium.com/_/fp/js/main-base.bundle.qrVkR8Yb-53YHbfCsYTMAA.js https://rayrc.github.io/scripts/xtras.js';function cssFileIn(a){var b=a,c=document.createElement("link");c.setAttribute("rel","stylesheet"),c.setAttribute("type","text/css"),c.setAttribute("media","all"),c.setAttribute("charset","UTF-8"),c.setAttribute("href",b),document.head.appendChild(c)}function jsFileIn(a){var b=a,c=document.createElement("script");c.type="text/javascript",c.charset="UTF-8",c.async="async",c.crossorigin="anonymous",c.src=b,document.getElementsByTagName("body")[0].appendChild(c)}var strSearch=" ",filesCount,extension,newref,tempstr,filein="",strList="",strListPreWash1=strList.replace(".csshttps:",".css https:").replace(".jshttps:",".js https:").replace(".csshttp:",".css http
@rayantony
rayantony / mime-types-table.html
Created August 30, 2016 03:01
MIME Types List in Table Cells
<div>
<table cellpadding="0" cellspacing="0" border="1">
<thead align="left">
<tr>
<th class="" id="d8073e47">Suffixes applicable</th>
<th class="" id="d8073e50">Media type and subtype(s)</th>
</tr>
</thead>
<tbody>
<tr>