reg export HKEY_CLASSES_ROOT\ms-msdt 202206_export_msdt.reg
reg delete HKEY_CLASSES_ROOT\ms-msdt /f
#!/bin/bash | |
# Variables | |
RPM_FILE="tftp-server-5.2-38.el9.x86_64.rpm" | |
TFTP_HOMEDIR="/home/tftp-home" | |
if [ ! -f "$RPM_FILE" ]; then | |
echo "Error: $RPM_FILE not found. Please download the RPM first." | |
exit 1 | |
fi |
function bitwiseMapTo(valueMap, key) { | |
if (!Array.isArray(valueMap) || typeof key !== 'number' || isNaN(key)) { | |
return null; | |
} | |
// why loop is used: because it has to be an ordered list for bitwise compare | |
let length = valueMap.length; | |
for (let i = 0; i < length; i++) { | |
const item = valueMap[i]; | |
// Ensure item has at least two elements and the bitwise comparison holds | |
if (item.length > 1 && (item[0] & key) === item[0]) { |
Nintendo-Account-Datenschutzrichtlinie | |
Version: 09.2023 (DE-EU) | |
Die Nintendo Co., Ltd., 11-1 Hokotate-cho, Kamitoba, Minami-ku, Kyoto, 601-8501, Japan („NCL“) und die Nintendo of Europe GmbH, Goldsteinstraße 235, 60528 Frankfurt am Main, Deutschland („NOE“) respektieren die Datenschutzrechte ihrer Nutzer und erkennen die Wichtigkeit des Schutzes ihrer personenbezogenen Daten an. | |
Diese Nintendo-Account-Datenschutzrichtlinie (die „Datenschutzrichtlinie“) ist dazu bestimmt, Sie über die Erhebung, die Verarbeitung, die Nutzung und den Schutz der von Ihnen über den Nintendo-Account zur Verfügung gestellten Daten zu informieren. Die Daten werden vornehmlich von NCL erhoben. Sollten Sie in Kontakt mit NOE kommen, insbesondere wenn Sie die Nintendo-Shop-Services zum Erwerb Digitaler Produkte von NOE oder zur Registrierung von Lizenzen für Digitale Produkte nutzen, werden Daten von NOE erhoben. NCL und NOE sind jeweils ausschließlich für ihre eigenen Datenverarbeitungsprozesse nach dieser Datenschutzrichtlinie veran |
# Regex | |
\d(?=(?:\d{3})+(?!\d)) | |
# replace | |
$0. |
reg export HKEY_CLASSES_ROOT\ms-msdt 202206_export_msdt.reg
reg delete HKEY_CLASSES_ROOT\ms-msdt /f
#!/usr/bin/env ruby | |
# encoding: utf-8 | |
require "nokogiri" | |
require "fileutils" | |
# setup | |
required_colors = ["ff000", "006600", "003399"] | |
# main |
# web/controllers/authentication.rb | |
module Web | |
module Authentication | |
module Skip | |
def authenticate! | |
end | |
end | |
def self.included(action) | |
action.class_eval do |
require 'thread' | |
queue = Queue.new | |
threads = [] | |
1.step(1000) do |i| | |
queue << i | |
end | |
8.times do |
git for-each-ref --format='%(color:cyan)%(authordate:format:%m/%d/%Y %I:%M %p) %(align:35,left)%(color:yellow)%(authorname)%(end) %(color:reset)%(refname:strip=3)' --sort=authordate refs/remotes |
organization_obj = [] | |
10.times.each do |_i| | |
organization_obj << | |
{ :name => 'names.sample', | |
:title => 'title.sample', | |
:salary => rand(50000..100000) | |
} | |
end |