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
using System; | |
namespace triton | |
{ | |
internal class Program | |
{ | |
private static void Main(string[] args) | |
{ | |
int[,] array = new int[2, 4]; | |
int secondLineSum = 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
{ | |
"basics": { | |
"name": "Mikhail Savin", | |
"label": "TechLead SRE / CTO / Practicing teacher", | |
"picture": "https://github.com/jtprogru.png", | |
"email": "jtprogru@gmail.com", | |
"website": "https://jtprog.ru", | |
"summary": "I have quite rich and versatile experience in the role of Infrastructure Engineer, SRE, Head of IT Division and Operations, CTO. I am a member of DevOpsConf program committee and a practicing teacher of RTU MIREA.", | |
"location": { | |
"city": "Moscow", |
Source: codewithsadee (https://www.youtube.com/watch?v=3l8Lob4ysI0)
A Pen by Leonam Silva de Souza on CodePen.
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
import random | |
class Warrior: | |
def setHealth(self,health): | |
self.health = health | |
def getAttack(self): | |
self.health -=20 | |
first = Warrior() | |
second = Warrior() |
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
<?xml version="1.0" encoding="utf-8"?> | |
<registrySnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<user>S-1-5-21-3145728412-1752322905-909997274-1000</user> | |
<keys> | |
<key installerType="Unknown" displayName="Vivaldi" displayVersion="7.1.3570.48"> | |
<RegistryView>Registry64</RegistryView> | |
<KeyPath>HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Vivaldi</KeyPath> | |
<DefaultValue /> | |
<InstallLocation><![CDATA[C:\Users\vagrant\AppData\Local\Vivaldi\Application]]></InstallLocation> | |
<UninstallString><![CDATA["C:\Users\vagrant\AppData\Local\Vivaldi\Application\7.1.3570.48\Installer\setup.exe" --uninstall --vivaldi-install-dir="C:\Users\vagrant\AppData\Local\Vivaldi"]]></UninstallString> |
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
with IDs as ( | |
SELECT visitId, attributions, | |
#ctx.userInfo.userId, | |
#ctx.rivuletBrowserInfo.browserId, | |
any_value(ctx.userInfo.userId) as userId, | |
any_value(ctx.rivuletBrowserInfo.browserId) as browser_id, | |
FROM(select visitId, contextualInfo, attributions FROM `etsy-ml-systems-prod.attributed_instance.query_pipeline_market_web_organic_2025_02_04` ), | |
UNNEST(contextualInfo) AS ctx | |
group by 1, 2 | |
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
// ==UserScript== | |
// @name Stop zoom capture in Outlook | |
// @namespace Violentmonkey Scripts | |
// @match https://outlook.office.com/* | |
// @grant none | |
// @version 1.0 | |
// @author b | |
// @description 2/4/2025, 9:49:58 AM | |
// ==/UserScript== |
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
<?xml version="1.0" encoding="utf-8"?> | |
<registrySnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<user>S-1-5-21-3145728412-1752322905-909997274-1000</user> | |
<keys> | |
<key installerType="Unknown" displayName="Vivaldi" displayVersion="7.1.3570.48"> | |
<RegistryView>Registry32</RegistryView> | |
<KeyPath>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Vivaldi</KeyPath> | |
<DefaultValue /> | |
<InstallLocation><![CDATA[C:\Program Files\Vivaldi\Application]]></InstallLocation> | |
<UninstallString><![CDATA["C:\Program Files\Vivaldi\Application\7.1.3570.48\Installer\setup.exe" --uninstall --vivaldi-install-dir="C:\Program Files\Vivaldi" --system-level]]></UninstallString> |