Skip to content

Instantly share code, notes, and snippets.

View sudarshanbs's full-sized avatar
🎯
Focusing on SQL & Data

Sudarshan B S sudarshanbs

🎯
Focusing on SQL & Data
  • Error: Not Found!
  • Earth
View GitHub Profile
SQL Server 2022 Product Key
---------------------------
Enterprise: J4V48-P8MM4–9N3J9-HD97X-DYMRM
Enterprise Core: 2Q48Q-PB48J-DRCVN-GB844-X2H4Q
Standard: FG86G-CHH2T-CB7NJ-XT7D2-V8V4X
Web: 2R97W-F4XNT-T6MYV-3TKB7–6X3JM
Developer: 22222–00000–00000–00000–00000
@sudarshanbs
sudarshanbs / vmwk17key-5000keys-unchecked.txt
Created July 19, 2024 14:10 — forked from PurpleVibe32/vmwk17key-5000keys-unchecked.txt
5000k+ vmware workstation pro 17 (untested)
4U612-DN31H-MJEJ0-0V0Z4-978HD
5G44H-ACH50-0J4C9-1VC5P-CY0QD
JC000-8G047-MJDF1-0H3E6-8QR5F
JV2NU-0XL5N-0J4Q8-0T0E6-8GH56
JZ6E0-4R1E0-HJ1Q0-1R8NH-3AK28
0Z48K-4X29Q-MJE80-113GK-C7K3A
HF4H0-46K80-MJ8D9-1KAZP-CKK12
NY69H-2N05P-HJ170-1V1ZM-CG222
4C45A-D8J0H-HJ5T0-1T25H-92A76
0Z4H2-0WK9K-4JE10-0T9G6-9C8M4
import pytest
@pytest.fixture(autouse=True)
def data():
assert False
class TestData():
def test_foo(self):
assert 'prasha' in "prashanth"
@sudarshanbs
sudarshanbs / test_selenium.py
Created October 2, 2023 07:11 — forked from prashanth-sams/test_selenium.py
Screenshot Example | pytest-html-reporter
from selenium import webdriver
import unittest
from pytest_html_reporter import attach
class TestClass(unittest.TestCase):
def __init__(self, driver):
super().__init__(driver)
def setUp(self):
global driver
These keys are for Office Professional Plus 2019
Version: Office19_RTM19_ProPlus2019VL_MAK_AE
BN8D3-W2QKT-M7Q73-Y3JWK-KQC63 (Activation left: 5000+)
PNB29-Y9TKP-BJFD2-RBCXR-DJ4XQ (Activation left: 1500+)
Download Link: ed2k://|file|cn_office_professional_plus_2019_x86_x64_dvd_5e5be643.iso|3775004672|1E4FFA5240F21F60DC027F73F1C62FF4|/
or please download from trusted source!
@sudarshanbs
sudarshanbs / Windows 10 Product Key
Created October 1, 2023 11:19 — forked from moonsbtt/Windows 10 Product Key
Free Windows 10 Product Serial Key
Here are some working Windows 10 Product Product Serial Keys. Choose the right version and apply the right key!
------------------------------------
Win 10 RTM Professional Volume:MAK
------------------------------------
WP88N-TQK3K-W962W-K9DF4-TVJXM
Activation left: 938
CVNT9-C36BX-82H27-GMBH9-BKMQB
Activation left: 370

Python naming conventions

This document gives coding conventions example for the Python code. This style guide evolves over time as additional conventions are identified and past conventions are rendered obsolete by changes in the language itself.

1. General

  • Avoid using names that are too general or too wordy. Strike a good balance between the two.
    • Bad: data_structure, my_list, info_map, dictionary_for_the_purpose_of_storing_data_representing_word_definitions
    • Good: user_profile, menu_options, word_definitions
  • Never use the characters as single character variable names:
  • “l“ : lowercase letter el
@sudarshanbs
sudarshanbs / SpellNumber.vbs
Last active July 10, 2023 06:11 — forked from hjpotter92/SpellNumber.vbs
Convert Numbers into Words in Microsoft Excel using SpellNumber Function
Option Explicit
' Converts a number from 100-999 into text
Function GetHundreds(ByVal MyNumber)
Dim Result As String
If Val(MyNumber) = 0 Then Exit Function
MyNumber = Right("000" & MyNumber, 3)
' Convert the hundreds place.
If Mid(MyNumber, 1, 1) <> "0" Then
Result = GetDigit(Mid(MyNumber, 1, 1)) & " Hundred "
@sudarshanbs
sudarshanbs / Programming_Languages_Extensions.json
Created March 23, 2023 06:22 — forked from ppisarczyk/Programming_Languages_Extensions.json
Programming Languages and their File Extensions
[
{
"name":"ABAP",
"type":"programming",
"extensions":[
".abap"
]
},
{
"name":"AGS Script",
[
{
"name":"ABAP",
"type":"programming",
"extensions":[
".abap"
]
},
{
"name":"AGS Script",