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
| # SUDO | |
| net stop w32time | |
| w32tm /unregister | |
| w32tm /register | |
| net start w32time | |
| w32tm /config /update /manualpeerlist:pool.ntp.org | |
| w32tm /config /update /manualpeerlist:south-america.pool.ntp.org | |
| w32tm /resync |
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
| sudo apt-get update && | |
| sudo apt-get remove dkms build-essential linux-headers-* -y && | |
| sudo apt-get install dkms build-essential linux-headers-$(uname -r) -y | |
| # Download do VBoxGuestAdditions_X.Y.ZZ.iso em http://download.virtualbox.org/virtualbox/ | |
| curl http://download.virtualbox.org/virtualbox/6.1.16/VBoxGuestAdditions_6.1.16.iso -O | |
| sudo mkdir -p /media/iso | |
| sudo mount VBoxGuestAdditions_6.1.16.iso /media/iso | |
| cd /media/iso |
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
| { | |
| "$help": "https://aka.ms/terminal-documentation", | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "actions": | |
| [ | |
| { | |
| "command": | |
| { | |
| "action": "copy", | |
| "singleLine": false |
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
| # Generated by Powerlevel10k configuration wizard on 2020-11-22 at 22:56 -03. | |
| # Based on romkatv/powerlevel10k/config/p10k-classic.zsh, checksum 39417. | |
| # Wizard options: nerdfont-complete + powerline, small icons, classic, unicode, darkest, | |
| # 24h time, angled separators, sharp heads, flat tails, 2 lines, disconnected, no frame, | |
| # sparse, many icons, concise, instant_prompt=verbose. | |
| # Type `p10k configure` to generate another config. | |
| # | |
| # Config for Powerlevel10k with classic powerline prompt style. Type `p10k configure` to generate | |
| # your own config based on it. | |
| # |
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
| #!/usr/bin/env bash | |
| echo "COMPOSER..." | |
| composer cc | |
| echo "NPM..." | |
| sudo npm cache rm --force | |
| echo "YARN..." | |
| yarn cache clean |
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
| [General] | |
| Description=Frequence response from: https://www.rtings.com/headphones/1-3-1/graph#510/3161 | |
| Configuration Icon=10 | |
| Device=HyperXCloudRevolverS_AudioBack, Realtek(R) Audio | |
| Device GUID={47454e2c-bf15-4adc-bc3e-7d4fc428c129} | |
| Bass Gain=12 | |
| Bass Frequency=200 | |
| Bass Target=0 | |
| Treble Gain=4 | |
| Treble Frequency=2000 |
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
| #!/usr/bin/env bash | |
| echo "UPDATING BREW..." && \ | |
| echo "entre a senha 2 vezes:" && \ | |
| sudo mkdir -p $(brew --caskroom) $(brew --cellar) && \ | |
| sudo chown -R $(whoami) $(brew --caskroom) $(brew --cellar) && \ | |
| echo "=====> BREW UPDATE " && \ | |
| brew update && \ | |
| echo "=====> BREW UPGRADE " && \ | |
| brew upgrade --force && \ |
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
| // REMOVE ALL ITEMS FROM YOUTUBE PLAYLIST "WATCH LATER" | |
| // Go to playlist without Polymer | |
| // https://www.youtube.com/playlist?list=WL&disable_polymer=1 | |
| window.open('https://www.youtube.com/playlist?list=WL&disable_polymer=1', '_self'); | |
| // Removing all items | |
| !function (loadMoreClass, removeBtnClass, getTitle, i) { | |
| // Load all items | |
| i('Loading all items...'); |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <project version="4"> | |
| <component name="BladeInjectionConfiguration" default="false"> | |
| <directives> | |
| <data directive="@role" injection="true" prefix="<?php if(auth()->check() && auth()->user()->hasRole(" suffix=")): ?>" /> | |
| <data directive="@elserole" injection="true" prefix="<?php elseif(auth()->check() && auth()->user()->hasRole(" suffix=")): ?>" /> | |
| <data directive="@endrole" /> | |
| <data directive="@hasrole" injection="true" prefix="<?php if(auth()->check() && auth()->user()->hasRole(" suffix=")): ?>" /> | |
| <data directive="@endhasrole" /> |
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # All Vagrant configuration is done below. The "2" in Vagrant.configure | |
| # configures the configuration version (we support older styles for | |
| # backwards compatibility). Please don't change it unless you know what | |
| # you're doing. | |
| Vagrant.configure("2") do |config| | |
| # The most common configuration options are documented and commented below. | |
| # For a complete reference, please see the online documentation at |