Skip to content

Instantly share code, notes, and snippets.

View minhlaoleu's full-sized avatar
🐤
I'm newbie

Minh Bùi minhlaoleu

🐤
I'm newbie
  • Ho Chi Minh City
  • 09:51 (UTC +07:00)
View GitHub Profile
@freewind
freewind / sed cheatsheet
Created October 21, 2015 16:21 — forked from un33k/sed cheatsheet
magic of sed -- find and replace "text" in a string or a file
FILE SPACING:
# double space a file
sed G
# double space a file which already has blank lines in it. Output file
# should contain no more than one blank line between lines of text.
sed '/^$/d;G'
@dcondrey
dcondrey / responsive-youtube-iframe.css
Last active November 21, 2022 14:39
Really responsive Youtube iFrame (width XOR height ) *Preview available here: https://www.thebouqs.com/en/content/8-how-it-works
#hero { width:100%;height:100%;background:url('{$img_ps_dir}cms/how-it-works/hero.jpg') no-repeat top center; }
.videoWrapper { position:relative;padding-bottom:56.25%;padding-top:25px;max-width:100%; }
@media (min-width:1000px) {
#hero { background-size:cover; }
}
@media (max-width:767px) {
#hero { width:100%;height:94%!important;background:url('{$img_ps_dir}cms/how-it-works/hero-mobile.jpg') no-repeat top center;background-position: 0 -155px;height: 273px!important;background-position:0 -209px; }
}
@media (max-width:540px) {