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
{ | |
"name": "Profile Name", | |
"host": "domain.ir", | |
"protocol": "ftp", | |
"port": 21, | |
"username": "username@domain.ir", | |
"password": "password", | |
"remotePath": "/", | |
"watcher": { | |
"files": "**/*", |
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
College of Nursing Sciences, UEC, Ochadamu, Kogi state 2025/2026 {O8125777035} Admission Form Is STILL ON SALE.. Call DR.MRS ALICE OGUNSOLA on {O8125777035}.The Management of the school hereby inform the general public of the sales of the general Nursing Admission form into the School of Nursing, Also midwifery, post-basic midwifery form, post-basic nursing form and internship form are still on sale for more information on purchase of the form and admission assistance call Admin Officer{O8125777035} |
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
m = [] | |
for n in range(1,100): | |
b = f'{n:b}' | |
if b.count('1')%2==0: | |
b = b + '0' | |
else: | |
b = b + '1' | |
if b.count('1')%2==0: | |
b = b + '0' | |
else: |
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, 2:02:32 PM | |
Loaded mods: | |
Harmony(brrainz.harmony)[v:2.3.1.0][mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1) | |
Core(Ludeon.RimWorld): (no assemblies) | |
Log Publisher from HugsLib(m00nl1ght.UnofficialUpdates.HugsLogPublisher): LunarLoader(1.1.8), LunarFramework(1.1.8), HugsLogPublisher(2.1.4) | |
Ideology(Ludeon.RimWorld.Ideology): (no assemblies) | |
Biotech(Ludeon.RimWorld.Biotech): (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:25.2.3), 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 Quests E |
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
from __future__ import annotations | |
from typing import TypeVar, TypeAlias | |
Ty = TypeVar("Ty", str, int, float, bool, None) | |
SingularJsonTy: TypeAlias = dict[str, "SingularJsonTy"] | list["SingularJsonTy"] | Ty | |
legal_singular: SingularJsonTy = {} | |
legal_singular["a"] = 3; | |
legal_singular["b"] = 3; |
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:00:50,269 5004 [DEBUG] - XmlConfiguration is now operational | |
2025-02-11 19:00:50,409 5004 [DEBUG] - Adding new type 'CygwinService' for type 'IAlternativeSourceRunner' from assembly 'choco' | |
2025-02-11 19:00:50,409 5004 [DEBUG] - Adding new type 'CygwinService' for type 'IInstallSourceRunner' from assembly 'choco' | |
2025-02-11 19:00:50,409 5004 [DEBUG] - Adding new type 'PythonService' for type 'IAlternativeSourceRunner' from assembly 'choco' | |
2025-02-11 19:00:50,409 5004 [DEBUG] - Adding new type 'PythonService' for type 'IListSourceRunner' from assembly 'choco' | |
2025-02-11 19:00:50,409 5004 [DEBUG] - Adding new type 'PythonService' for type 'IInstallSourceRunner' from assembly 'choco' | |
2025-02-11 19:00:50,427 5004 [DEBUG] - Adding new type 'PythonService' for type 'IUninstallSourceRunner' from assembly 'choco' | |
2025-02-11 19:00:50,427 5004 [DEBUG] - Adding new type 'RubyGemsService' for type 'IAlternativeSourceRunner' from assembly 'choco' | |
2025-02-11 19:00:50,427 5004 [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
## From: https://www.reddit.com/r/generative/comments/1imyi7b/comment/mc6vx7c/ | |
#!/usr/bin/env python3 | |
# coding: utf-8 | |
import matplotlib.pyplot as plt | |
import numpy as np | |
def main(): | |
X, Y = np.meshgrid( | |
np.linspace(-1, 1, 500), |
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 collections; | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.Clear(); | |
int account = 0; |
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
Ty = TypeVar("Ty", str, int, float, bool, None) | |
SingularJsonTy: TypeAlias = dict[str, "SingularJsonTy"] | list["SingularJsonTy"] | Ty | |
legal_singular: SingularJsonTy = {} | |
legal_singular["a"] = 3; | |
legal_singular["b"] = 3; |
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="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Video Processor</title> | |
<style> | |
body { font-family: Arial, sans-serif; max-width: 600px; margin: 20px auto; } | |
.progress-container { margin: 20px 0; } | |
progress { width: 100%; height: 20px; } |