Skip to content

Instantly share code, notes, and snippets.

View JoshuaFrontEnd's full-sized avatar
🎯
Focusing

Joshua Torres JoshuaFrontEnd

🎯
Focusing
View GitHub Profile
@JoshuaFrontEnd
JoshuaFrontEnd / youtubeID.js
Last active December 18, 2019 13:44 — forked from takien/youtubeID.js
Obtener el ID de la url de un video en youtube
/**
* Get YouTube ID from various YouTube URL
* @author: takien
* @url: http://takien.com
* For PHP YouTube parser, go here http://takien.com/864
*/
function YouTubeGetID(url){
var ID = '';
url = url.replace(/(>|<)/gi,'').split(/(vi\/|v=|\/v\/|youtu\.be\/|\/embed\/)/);
html, body {
height: 100%;
}
body {
display: flex;
flex-direction: column;
}
.content {
flex: 1 0 auto;
}
@JoshuaFrontEnd
JoshuaFrontEnd / ocultartexto.css
Created October 2, 2020 02:28
replace text-indent: -9999px
.hide-text {
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
}
@JoshuaFrontEnd
JoshuaFrontEnd / gulpfile.js
Last active September 29, 2021 19:13
Gulpfile with gulp 4
const gulp = require('gulp');
const sass = require('gulp-sass');
const postcss = require("gulp-postcss");
const sortmediaqueries = require('postcss-sort-media-queries');
const autoprefixer = require("autoprefixer");
const cssnano = require("cssnano");
const browserSync = require('browser-sync').create();
const sourcemaps = require('gulp-sourcemaps');
//compile scss into css