Se o sistema operacional do servidor for Windows Server 2008 R2 ou Windows 7, instale o hotfix oficial da Microsoft disponível neste link.
- Baixe o instalador oficial
| (function () { | |
| const ytPlayer = document.getElementById("movie_player"); | |
| const viewCount = document.querySelector(".ytd-video-view-count-renderer"); | |
| const oldBtns = document.querySelectorAll("[data-timestamputils='true']"); | |
| oldBtns.forEach(function (el) { el.remove(); }); | |
| function buildButton(name, onClickFn) { | |
| const btn = document.createElement("button"); | |
| btn.setAttribute("data-timestamputils", true); |
| class Ball: Throwable() | |
| class P(var target: P?) { | |
| fun aim(ball: Ball) { | |
| try { | |
| throw ball | |
| } catch (b: Ball) { | |
| target?.aim(b) | |
| } | |
| } | |
| } |
| package compal; | |
| import robocode.*; | |
| import java.awt.Color; | |
| import robocode.ScannedRobotEvent; | |
| import robocode.util.Utils; | |
| // API help : https://robocode.sourceforge.io/docs/robocode/robocode/Robot.html | |
| /** | |
| * NewLaziness - a robot by (Compal Team) | |
| */ |
| /* eslint-env browser */ | |
| /* global chrome */ | |
| chrome.runtime.onInstalled.addListener(async function () { | |
| console.log('start measuring') | |
| const datasetSize = 1000 | |
| const jsonUrl = `http://www.filltext.com/?rows=${datasetSize}&id={string|8}&username={username}&password={string|5}&text={lorem|30}` | |
| let myData = await getJSON(jsonUrl) |
| sudo apt install fonts-dejavu-core git pandoc | |
| git clone https://github.com/getify/You-Dont-Know-JS.git | |
| wget -O You-Dont-Know-JS/epub.css https://gist.githubusercontent.com/bmaupin/6e3649af73120fac2b6907169632be2c/raw/epub.css | |
| cd You-Dont-Know-JS | |
| # Clean up redundant headings that end up getting split into separate chapters by themselves | |
| find . -iname "*.md" -exec sed -i '/# You Don'\''t Know JS.*/d' {} \; | |
| # Fix <br> tags which pandoc won't convert to <br /> | |
| find . -iname "*.md" -exec sed -i 's#<br>#<br />#' {} \; |
Se o sistema operacional do servidor for Windows Server 2008 R2 ou Windows 7, instale o hotfix oficial da Microsoft disponível neste link.
| #!/bin/sh -xu | |
| # important | |
| # Automated Media Center | |
| # https://www.filebot.net/forums/viewtopic.php?t=215 | |
| # Plex Naming Schemes | |
| # https://www.filebot.net/forums/viewtopic.php?f=5&t=4116 |
| version: '2' | |
| services: | |
| # comandinho: sudo chown -R 1000 /opt/tools/jenkins/ | |
| jenkins: | |
| image: jenkins:latest | |
| environment: | |
| JAVA_OPTS: "-Djava.awt.headless=true" | |
| ports: | |
| - "50000:50000" | |
| - "8081:8080" |
| wget https://www2.ati.com/drivers/linux/ubuntu/amdgpu-pro-17.10-401251.tar.xz # faz download | |
| tar -Jxvf amdgpu-pro-17.10-401251.tar.xz # descompacta | |
| cd amdgpu-pro-17.10-401251 | |
| sed -i -e 's/$ID/$ID_LIKE/g' ./amdgpu-pro-install # substitui $ID (linuxmint) por $ID_LIKE (ubuntu) | |
| ./amdgpu-pro-install -y | |
| sudo usermod -a -G video $LOGNAME | |
| cd .. | |
| # rm -rf amdgpu-pro-17.10-401251 | |
| # sudo shutdown -r 0 |