Skip to content

Instantly share code, notes, and snippets.

View buster95's full-sized avatar
🦖

Walter Corrales buster95

🦖
View GitHub Profile
[Nombre Canal]
HQ Link
Mobile Link
Canal 2
http://138.117.4.70:8079/streams/d/CH-2/playlist.m3u8
http://138.117.4.70:8079/streams/d/Canal-2M/playlist.m3u8
Canal 4
http://138.117.4.70:8079/streams/d/CH-4/playlist.m3u8
@buster95
buster95 / git-clearHistory
Created February 7, 2020 02:22 — forked from stephenhardy/git-clearHistory
Steps to clear out the history of a git/github repository
-- Remove the history from
rm -rf .git
-- recreate the repos from the current content only
git init
git add .
git commit -m "Initial commit"
-- push to the github remote repos ensuring you overwrite history
git remote add origin git@github.com:<YOUR ACCOUNT>/<YOUR REPOS>.git
@buster95
buster95 / all-angular-material-components-imports.txt
Created July 22, 2019 04:55 — forked from pimatco/all-angular-material-components-imports.txt
All Angular Material Components Imports from app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
//Angular Material Components
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
import {MatCheckboxModule} from '@angular/material';
import {MatButtonModule} from '@angular/material';