This file contains 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
{ | |
"name": "Nord", | |
"foreground": "#D8DEE9", | |
"background": "#2E3440", | |
"selectionBackground": "#ECEFF4", | |
"cursorColor": "#D8DEE9", | |
"black": "#3B4252", |
This file contains 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
# Run commands in an elevated prompt | |
# Stop WinNAT | |
net stop winnat | |
# Docker | |
netsh int ipv4 add excludedportrange protocol=tcp startport=50000 numberofports=50 # Docker - extend range as needed | |
# Laravel Sail services | |
netsh int ipv4 add excludedportrange protocol=tcp startport=80 numberofports=1 # Web server |
This file contains 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
#!/bin/bash | |
function main() { | |
echo "Creating plugin package..." | |
local root=$(clean_folder $(dirname $(realpath "$0"))) | |
local path=$(prepare_package "$root") | |
local output="$root/nord-jetbrains.jar" | |
local jar=$(which jar) | |
if [ ! -z "$jar" ]; then |
This file contains 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
alias upgrade="time (sudo apt update && sudo apt list --upgradable && echo -n \"Do you want to continue? [y]n: \" && read answer && if [[ -z \"\$answer\" || \"\$answer\" != \"\${answer#[Yy]}\" ]]; then (echo -e \"\e[32mUpdating packages... \e[0m\" && sudo apt full-upgrade -y); else echo -e \"\e[33mThe update has been cancelled. No change has been made. \e[0m\"; fi)" |
This file contains 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
--- | |
ip: "192.168.10.10" | |
memory: 2048 | |
cpus: 1 | |
provider: vmware_esxi | |
esxi_hostname: esxi_hypervisor | |
esxi_username: homestead | |
esxi_password: "file:~/.secrets/vmware_esxi.pwd" | |
esxi_disk_store: storage1 |
This file contains 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
# Main Homestead Class | |
class Homestead | |
def self.configure(config, settings) | |
# Set The VM Provider | |
ENV['VAGRANT_DEFAULT_PROVIDER'] = settings['provider'] ||= 'virtualbox' | |
# Configure Local Variable To Access Scripts From Remote Location | |
script_dir = File.dirname(__FILE__) | |
# Allow SSH Agent Forward from The Box |
This file contains 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"?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<match target="pattern"> | |
<test name="family" qual="any"><string>ArialMT</string></test> | |
<edit name="family" mode="assign" binding="same"><string>Arial</string></edit> | |
</match> | |
<match target="pattern"> | |
<test name="family" qual="any"><string>TimesNewRomanPSMT</string></test> | |
<edit name="family" mode="assign" binding="same"><string>Times New Roman</string></edit> |
This file contains 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
^(?#scheme)(?:(?P<scheme>[A-Za-z][A-Za-z0-9+\-.]*):)? | |
(?:(?#authority)// | |
(?#userinfo)(?:(?P<userinfo>.+)@)? | |
(?#host)(?P<host>(?:(?#named|IPv4)[A-Za-z0-9\-._~%]+|(?#IPv6)\[[A-Fa-f0-9:.]+\]|(?#IPvFuture)\[v[A-Fa-f0-9][A-Za-z0-9\-._~%!$&'()*+,;=:]+\])?) | |
(?#port)(?::(?P<port>[0-9]+))? | |
)? | |
(?#path)(?:/?(?P<path>(?:[A-Za-z0-9\-._~%!$&'()*+,;=@]+/?)*))? | |
(?#query)(?:\?(?P<query>[A-Za-z0-9\-._~%!$&'()*+,;=:@/?]*))? | |
(?#fragment)(?:\#(?P<fragment>[A-Za-z0-9\-._~%!$&'()*+,;=:@/?]*))?$ |
This file contains 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
<?php | |
/** | |
* Name | |
* | |
* Description | |
* | |
* @package Package | |
* @extends Controller | |
*/ |
This file contains 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
<?php |