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
xprop | grep -i 'class' |
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
// Scroll para o fim da pagina | |
// Esse script é feito para scrollar até o fim de paginas com loading | |
// Eu o programei para ir até o final da pagina do instagram web | |
// mas creio que possa ser usado em diversos cenarios por isso estou compartilhando | |
// Caso ele pare antes de chegar ao final tente aumentar o tempo do sleep na linha 12 | |
const sleep = (ms) => { return new Promise(resolve => setTimeout(resolve, ms)) } | |
var isEndOfPage = false; | |
while (!isEndOfPage) { | |
let heightBegin = document.body.scrollHeight; |
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
<template> | |
<div id="app"> | |
<div class="lateral-block" | |
:style="{width: widthLateral+'px'}"> | |
<div class="lateral"> | |
</div> | |
<div class="gutter-vertical" id="gutterVertical"></div> | |
</div> | |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
using System.ComponentModel; | |
using System.Diagnostics; | |
using System.Web.Services; | |
using System.Web.Services.Protocols; | |
using System.Xml.Serialization; |
NewerOlder