This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
#! /bin/sh | |
set -e | |
function build_raylib_macos { | |
curr_dir="$(basename $(pwd))" | |
if [[ "$curr_dir" != "src" ]]; | |
then |
Source: https://opensource.com/business/16/2/top-6-open-source-crm-tools-2016 + community contributions
EspoCRM `github.com/espocrm/espocrm`_ PHP https://www.espocrm.com
using System.Collections; | |
using UnityEngine; | |
using UnityEngine.UI; | |
public static class ScrollViewFocusFunctions | |
{ | |
public static Vector2 CalculateFocusedScrollPosition( this ScrollRect scrollView, Vector2 focusPoint ) | |
{ | |
Vector2 contentSize = scrollView.content.rect.size; | |
Vector2 viewportSize = ( (RectTransform) scrollView.content.parent ).rect.size; |
I am writing this guide becuase I coudn't find a proper one online which contained all the information I was searching for. I will try to guide you through the process of enabling link aggregation (802.3ad) with your Ubiquiti hardware and your Unraid server. Note: not all of Ubiquiti's hardware supports link aggregation (LAG). As of the time of writing Ubiquiti states the following.
Applicable to all UniFi Switch models excluding the USW-Flex and USW-Flex-Mini.
Source: Ubiquiti
Abstract: This guide provides best practices for writing clear, maintainable, and robust Zsh scripts. Aimed at helping developers transition from Bash to Zsh, particularly on macOS, this guide offers practical advice and examples for creating standardized and efficient scripts.
Copyright This text of this guide is Copyright ©️2024 by Christopher Allen, and is shared under spdx:CC-BY-SA-4.0 open-source license. All the example code is relenquished to the public domain under spx:CC0-1.0.
Tags: #zsh #scripting #cli #opinionated
(require 'cl-lib) | |
(require 'subr-x) | |
(defun *-ini-sort () | |
"Sort an INI buffer by sections and properties. | |
Combines repeated sections. E.g. | |
[b] | |
b1=1 | |
b3=3 |
** Collection #1 passwords list ** | |
Hello everyone, | |
Recently, a dark web monitoring firm 4iQ discovered a massive trove of 41GB data file containing 1.4 billion billion login credentials including emails and passwords in clear-text format. | |
This db was already found in the dark net during january and succefully removed from the internet but it has been newly uploaded. | |
magnet:?xt=urn:btih:7ffbcd8cee06aba2ce6561688cf68ce2addca0a3&dn=BreachCompilation&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969&tr=udp%3A%2F%2Fglotorrents.pw%3A6969&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337 | |
- follow me on https://twitter.com/criptixo :) |
#!/usr/bin/env bash | |
set -euo pipefail | |
###################### | |
# Script that fetches a list of all images from GCR | |
# uses 3 different users in GCR | |
###################### | |
keyfile="gcr-svc-acc-keyfile.json" | |
projectName="example-project" |