Discover gists
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
# yaml-language-server: $schema=https://raw.githubusercontent.com/PowerShell/DSC/main/schemas/2023/08/config/document.json | |
# Reference: https://learn.microsoft.com/en-us/powershell/dsc/concepts/configurations?view=dsc-3.0#getting-the-current-state-of-a-configuration | |
$schema: https://raw.githubusercontent.com/PowerShell/DSC/main/schemas/2023/08/config/document.json | |
resources: | |
- type: Microsoft.DSC/PowerShell | |
name: Powershell DSC Resources | |
properties: | |
resources: | |
- type: Microsoft.WinGet.DSC/WinGetPackage | |
name: PowerShell |
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 | |
/** | |
* Add larger-radius options for geolocation radius search. | |
* | |
* @param array $options Nested array. `value` key maps to the size of the radius. | |
* | |
* @return array Modified array of options. | |
*/ | |
add_filter( 'gk/gravitymaps/geolocation_radius_options', function ( $options ) { |
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
2025-02-11 19:18:00,441 6076 [DEBUG] - XmlConfiguration is now operational | |
2025-02-11 19:18:00,564 6076 [DEBUG] - Adding new type 'CygwinService' for type 'IAlternativeSourceRunner' from assembly 'choco' | |
2025-02-11 19:18:00,564 6076 [DEBUG] - Adding new type 'CygwinService' for type 'IInstallSourceRunner' from assembly 'choco' | |
2025-02-11 19:18:00,581 6076 [DEBUG] - Adding new type 'PythonService' for type 'IAlternativeSourceRunner' from assembly 'choco' | |
2025-02-11 19:18:00,581 6076 [DEBUG] - Adding new type 'PythonService' for type 'IListSourceRunner' from assembly 'choco' | |
2025-02-11 19:18:00,581 6076 [DEBUG] - Adding new type 'PythonService' for type 'IInstallSourceRunner' from assembly 'choco' | |
2025-02-11 19:18:00,608 6076 [DEBUG] - Adding new type 'PythonService' for type 'IUninstallSourceRunner' from assembly 'choco' | |
2025-02-11 19:18:00,608 6076 [DEBUG] - Adding new type 'RubyGemsService' for type 'IAlternativeSourceRunner' from assembly 'choco' | |
2025-02-11 19:18:00,608 6076 [DEBUG] - Adding new typ |
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
namespace Lesson; | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int targetNumber; | |
int exponent = 0; | |
int currentPowerOfTwo = 1; | |
int baseNumber = 2; | |
Random random = new Random(); |
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
use 01ejerciciosBasicos | |
db.usuarios.insertMany([ | |
{ | |
"item": "journal", | |
"instock": [ | |
{ | |
"warehouse": "A", | |
"qty": 5 |
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
Log uploaded on Tuesday, February 11, 2025, 3:03:02 PM | |
Loaded mods: | |
Harmony(brrainz.harmony)[mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1) | |
Core(Ludeon.RimWorld): (no assemblies) | |
Royalty(Ludeon.RimWorld.Royalty): (no assemblies) | |
Ideology(Ludeon.RimWorld.Ideology): (no assemblies) | |
Biotech(Ludeon.RimWorld.Biotech): (no assemblies) | |
Anomaly(Ludeon.RimWorld.Anomaly): (no assemblies) | |
Vanilla Expanded Framework(OskarPotocki.VanillaFactionsExpanded.Core): 0ModSettingsFramework(1.0.0), 0MultiplayerAPI(av:0.3.0,fv:0.3.0), 0PrepatcherAPI(1.1.1), ExplosiveTrailsEffect(1.0.7140.31563), GraphicCustomization(1.0.0), HeavyWeapons(1.0.0), KCSG(av:1.1.2,fv:24.3.27), MVCF(2.0.0.1), NoCamShakeExplosions(1.0.0), OPToxic(1.0.0), Outposts(av:3.0.0,fv:1.0.0), PipeSystem(av:1.0.1,fv:22.7.29), RecipeInheritance(1.0.1), RRO(1.0.0), SmokingGun(1.0.0), VanillaStorytellersExpanded(1.0.0), VanillaWeaponsExpandedLaser(0.0.0), VFECore(av:1.1.7,fv:1.1.9), VWEMakeshift(1.0.0) | |
Vanilla Cooking Expanded(VanillaExpanded.VCookE): VanillaCookingExp |
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
[ | |
{ | |
"animeEng": "Asobi Asobase: Workshop of Fun", | |
"animeRomaji": "Asobi Asobase", | |
"songName": "Inkya Inplus", | |
"artist": "Hina Kino, Rika Nagae, Konomi Kohara feat. Ikepy & KSKN", | |
"type": "Ending 1", | |
"correctCount": 80, | |
"startTime": 54, | |
"songDuration": 88.949395, |
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
void main() { | |
// Task 1: Calculate Total and Average Marks | |
print("=== Task 1: Marks Calculator ==="); | |
List<double> marks = [60, 45, 68, 99, 27]; // Predefined marks by me | |
if (marks.isEmpty) { | |
print("Error: The marks list is empty."); | |
return; | |
} |
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
:: ################################################################ | |
:: ## 🔥 WinMasterBlocker 🔥 # | |
:: ################################################################ | |
:: # Author: https://github.com/ph33nx # | |
:: # Repo: https://github.com/ph33nx/WinMasterBlocker # | |
:: # # | |
:: # This script blocks inbound/outbound network access # | |
:: # for major apps like Adobe, Autodesk, Corel, Maxon, # | |
:: # and more using Windows Firewall. # | |
:: # # |
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
<!DOCTYPE html> | |
<html lang="ru"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Карточка</title> | |
</head> | |
<body> | |
<div class="card"> |