Skip to content

Instantly share code, notes, and snippets.

View tsengeagle's full-sized avatar
🌴
On vacation

曾義格 tsengeagle

🌴
On vacation
View GitHub Profile
private bool JoeySequenceEqual(IEnumerable<int> first, IEnumerable<int> second)
{
var firstEnumerator = first.GetEnumerator();
var secondEnumerator = second.GetEnumerator();
var result = true;
while (firstEnumerator.MoveNext() )
{
if (secondEnumerator.MoveNext())
{
if (firstEnumerator.Current != secondEnumerator.Current)
ansible-playbook 2.8.4
config file = None
configured module search path = ['/Users/tsengeagle/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
ansible python module location = /Users/tsengeagle/.pyenv/versions/3.7.0/lib/python3.7/site-packages/ansible
executable location = /Users/tsengeagle/.pyenv/versions/3.7.0/bin/ansible-playbook
python version = 3.7.0 (default, Nov 21 2018, 00:03:23) [Clang 10.0.0 (clang-1000.10.44.4)]
No config file found; using defaults
setting up inventory plugins
host_list declined parsing /Users/tsengeagle/source/awx/installer/inventory as it did not pass it's verify_file() method
script declined parsing /Users/tsengeagle/source/awx/installer/inventory as it did not pass it's verify_file() method
# It's not recommended to modify this file in-place, because it will be
# overwritten during package upgrades. If you want to customize, the
# best way is to create a file "/etc/systemd/system/postgresql.service",
# containing
# .include /lib/systemd/system/postgresql.service
# ...make your changes here...
# For more info about custom unit files, see
# http://fedoraproject.org/wiki/Systemd#How_do_I_customize_a_unit_file.2F_add_a_custom_unit_file.3F
# For example, if you want to change the server's port number to 5433,
@tsengeagle
tsengeagle / 1_output.md
Created July 28, 2022 12:05 — forked from casimir/1_output.md
AES-256 examples

Informations

cipher key: 0123456789abcdef0123456789abcdef
IV: 0123456789ABCDEF
padding character: fs (ASCII=34 -> FILE SEPARATOR)

Expected output

secret message: this information is confidential, for your eyes only
@tsengeagle
tsengeagle / Angular 17 Dev Setup.md
Created January 5, 2024 00:10 — forked from doggy8088/Angular 18 Dev Setup.md
Angular 17 開發環境說明

Angular 17 開發環境說明

為了能讓大家能夠順利的建立起 Angular 17 開發環境,以下是需要安裝的相關軟體與安裝步驟與說明。

Angular LOGO

[ 作業系統 ]

  • Windows 10 以上版本
  • Mac OS X 10.6 以上版本