Skip to content

Instantly share code, notes, and snippets.

View kishdubey's full-sized avatar
:shipit:

Kish Dubey kishdubey

:shipit:
View GitHub Profile
@kishdubey
kishdubey / accessibility_internationalization.html
Created December 11, 2022 01:29
StatCan Accessibility and Internationalization Doc
<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><title>Frontier Counts - Web App</title><style>
/* cspell:disable-file */
/* webkit printing magic: print all background colors */
html {
-webkit-print-color-adjust: exact;
}
* {
box-sizing: border-box;
-webkit-print-color-adjust: exact;
}
@kishdubey
kishdubey / gsoc.py
Created November 19, 2019 19:40
getting most frequent organizations appearing in Google Summer of Code (GSOC)
import requests
from bs4 import BeautifulSoup
from collections import Counter
def get_organizations(url):
'''
(String) ->()
Adding names of all organizations listed in the given GSOC url
'''
@kishdubey
kishdubey / configure.txt
Created September 5, 2019 02:37
configure local connection in saspy
saspy provides Python APIs to the SAS environment.
Configuring SASPy on Windows 7:
1. Create a python file by the name of "sascfg_personal.py" at C:\\Program Files\\Anaconda3\\lib\\site-packages\\saspy
2. Fill file with following:
SAS_config_names = ['winlocal']
# Windows client class path
# build out a local classpath variable to use below for Linux clients CHANGE THE PATHS TO BE CORRECT FOR YOUR INSTALLATION
cpW = "C:\Program Files\SASHome\SASDeploymentManager\9.4\products\deploywiz__94435__prt__xx__sp0__1\deploywiz\sas.svc.connection.jar"