Skip to content

Instantly share code, notes, and snippets.

View marcianomatias's full-sized avatar
:octocat:
Web developer

Marciano Matias dos Santos marcianomatias

:octocat:
Web developer
View GitHub Profile
@marcianomatias
marcianomatias / daily-ui-002-credit-card-checkout.markdown
Created July 2, 2023 17:02
Daily UI #002: Credit Card Checkout
@marcianomatias
marcianomatias / index.html
Created July 2, 2023 17:00
Useless But Cool RGB Picker
<div id="container">
<div id="picker" class="open">
<!--<p id="title">RGB PICKER</p>-->
<p id="color">255 255 255</p>
<div class="circle" id="c1" data-col="255"></div>
<div class="circle" id="c2" data-col="255"></div>
<div class="circle" id="c3" data-col="255"></div>
<div id="copy"></div>
</div>
</div>
@marcianomatias
marcianomatias / fullscreen-youtube-video-background-in-pure-css.markdown
Created March 25, 2023 09:23
FullScreen YouTube Video Background In Pure CSS
@marcianomatias
marcianomatias / index.html
Created March 25, 2023 09:10
Video.js Default Skin
<!--
Don't use the "5-unsafe" CDN version in your own code. It will break on you.
Instead go to videojs.com and copy the CDN urls for the latest version.
-->
<div id="instructions">
<video id="my_video_1" class="video-js vjs-default-skin" width="640px" height="267px"
controls preload="none" poster='http://video-js.zencoder.com/oceans-clip.jpg'
data-setup='{ "aspectRatio":"640:267", "playbackRates": [1, 1.5, 2] }'>
@marcianomatias
marcianomatias / index.html
Created January 7, 2023 14:56
Pure CSS Hamburger fold-out menu
<!-- Made by Erik Terwan -->
<!-- 24th of November 2015 -->
<!-- MIT License -->
<nav role="navigation">
<div id="menuToggle">
<!--
A fake / hidden checkbox is used as click reciever,
so you can use the :checked selector on it.
-->
<input type="checkbox" />
@marcianomatias
marcianomatias / git_e_rails.md
Created November 13, 2022 02:39 — forked from brunojppb/git_e_rails.md
configurando o git e o Rails no ubuntu

Instalar o git:

sudo apt-get update
sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev libxml2-dev libxslt1-dev libcurl4-openssl-dev software-properties-common libffi-dev

Instalar o rbenv:

git clone https://github.com/rbenv/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc