- Monitor LG 38": https://amzn.to/2jegMvj
- Microfone Rode Procaster com suporte de mesa: https://amzn.to/2FoOpDf
- Interface USB Focusrite Scarlett Solo: https://amzn.to/2HE5HhC
- Cabo XLR: https://amzn.to/2r8fJAC
- Amplificador Cloudlifter: https://amzn.to/2r3JQcu
- Pop filter: https://www.bswusa.com/Pop-Filters-BSW-RE320POP-P7872.aspx
- Adaptador phone: https://amzn.to/2HGsSYY
- Headphone Holder Apple Charging Station: https://amzn.to/2HC6ek9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const axios = require('axios') | |
class GDEAPI { | |
constructor({ token }) { | |
this.token = token | |
} | |
async submitContributions(body) { | |
const headers = { | |
"accept": "application/json, text/plain, */*", | |
"accept-language": "en-US,en;q=0.9", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const YOUTUBE_KEY = "YOUR YOUTUBE KEY" | |
import axios = from 'axios'; | |
function getVideoId(link) { | |
const videoId = link.match(/v=(?<videoId>.*)/)?.groups?.videoId | |
return videoId | |
} | |
async function getVideoViews(link) { | |
const videoId = getVideoId(link) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x = document.getElementsByClassName('artdeco-button--secondary'); for (let i=0 ; i<50; i++) x[i].click(); | |
// falta paginacao e aceitar >100 numa tacada :P |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component, Input, AfterViewInit } from '@angular/core'; | |
import { NgModel, DefaultValueAccessor, NgControl } from '@angular/forms'; | |
import { Http, Headers, RequestOptions } from '@angular/http'; | |
@Component({ | |
selector: 'app-file-uploader', | |
template: '<input type="file" (change)="updated($event);">', | |
providers: [NgModel, DefaultValueAccessor] | |
}) | |
export class FileUploaderComponent implements AfterViewInit { |