https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table
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
# A basic script for uninstalling app packages in Windows 10/11, including those pre-installed with Windows | |
# | |
# Note: If you get an error about the script not being allowed to run, the below command will change the execution polciy temporarily for one session only: | |
# Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process | |
# | |
# To execute the script, open a Powershell window to the directory with the script and run the following command using your scripts file name (and don't forget the .\ ) | |
# .\WhateverScriptName.ps1 | |
# ------------------------------------------------------------------------------------------- | |
# Script by ThioJoe - https://github.com/ThioJoe | |
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/sh | |
# https://gist.github.com/nferocious76/c2809304e99478e2d5d4d13b7b44e9b7 | |
PORT=4502 | |
NAME="author" | |
FILE="aem-author-p4502.jar" | |
# find and kill active instance on port $PORT | |
INSTANCE=$(netstat -vanp tcp | grep $PORT) |
sysctl net | grep net.inet.tcp | egrep -i "cubic|reno"
net.inet.tcp.cubic_sockets: 36 net.inet.tcp.newreno_sockets: 0 net.inet.tcp.use_newreno: 0 net.inet.tcp.cubic_fast_convergence: 0 net.inet.tcp.cubic_minor_fixes: 1 net.inet.tcp.cubic_rfc_compliant: 1 net.inet.tcp.cubic_tcp_friendliness: 0 net.inet.tcp.cubic_use_minrtt: 0
192.168.0.0/16
172.16.0.0/12
10.0.0.0/8
Calculator: click here
To create an alias, use alias ALIAS_NAME="ALIAS_VALUE"
:
alias ll="ls -al"
To remove the alias, use the unalias
command:
unalias ll
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 | |
# https://firebase.googleblog.com/2017/01/debugging-firebase-cloud-messaging-on.html | |
# https://firebase.google.com/docs/cloud-messaging/http-server-ref#notification-payload-support | |
# https://firebase.google.com/docs/cloud-messaging/http-server-ref | |
# https://developer.apple.com/library/archive/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/CommunicatingwithAPNs.html#//apple_ref/doc/uid/TP40008194-CH11-SW1 | |
clear | |
echo | |
echo "------ Debug start ------" |
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 | |
# https://firebase.googleblog.com/2017/01/debugging-firebase-cloud-messaging-on.html | |
# https://developer.apple.com/library/archive/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/CommunicatingwithAPNs.html#//apple_ref/doc/uid/TP40008194-CH11-SW1 | |
# https://developer.apple.com/videos/play/wwdc2016/724/ | |
clear | |
echo | |
echo "------ Debug start ------" | |
echo |
NewerOlder