Skip to content

Instantly share code, notes, and snippets.

View willingc's full-sized avatar
🐍
Build things for others

Carol Willing willingc

🐍
Build things for others
View GitHub Profile
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"dashboard": {
"type": "object",
"properties": {
"multiViews": {
"type": "array",
"items": {
@willingc
willingc / git-checklist.md
Last active February 8, 2023 19:19
Git checklist and workflow

Here's a checklist of some generic steps and git commands that I use:

  • Fork the project
  • Clone it to your local development system git clone
  • Set up your git remotes (origin and upstream) git remote -v git remote add <remote name> <url of remote repo> Note: you will only need to do this step once.
  • Create a local branch for any new development git branch <feature branch name> and checkout the branch git checkout <feature branch name>
  • Develop and commit changes to the local branch git add, git commit, git log, git status
  • Get the most up to date version of the upstream code git fetch upstream
  • Rebase your changes onto upstream git rebase upstream/master Use git log to check that your commit is the most recent.
  • Push the changes to your GitHub repo git push origin
@willingc
willingc / gource.md
Created December 21, 2022 22:27
Gource video of multiple repos

Retro Video Process

Use gource, ffmpeg packages to do the primary work. They can be brew installed.

Basic process

You will take a repo and use gource to generate a log file of timestamps and commits.

Then you can feed that log into gource to render a video of the timeline.

@willingc
willingc / scala-kernel.md
Last active January 25, 2022 23:20
Installing Almond (Jupyter Scala) kernel

Scala Kernel Instructions for MacOS

Note: These instructions are over 3 years old. Please consult the Scala docs and the Almond docs for up-to-date instructions.

  1. Download Scala https://www.scala-lang.org/download/

    • check Java version (java -version)
    • Install Scala sbt brew install sbt@1
@willingc
willingc / dev-rel-notes.md
Last active January 3, 2022 20:31
DevRel Resources
@willingc
willingc / py.md
Created July 16, 2020 16:01
Resources for Data and Python
@willingc
willingc / bash.md
Last active September 5, 2021 17:35
Bash Commands

Use the following syntax to enter Bash commands.

One-Line Command

! is used to execute a one-line command.

For example, use the following to list all files:

! ls -a
@willingc
willingc / life_expectancy_years.csv
Created July 29, 2021 18:23
life_expectancy_years.csv
country 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2
@willingc
willingc / review.md
Last active June 15, 2021 04:07
pyopensci review template

Package Review

Please check off boxes as applicable, and elaborate in comments below. Your review is not limited to these topics, as described in the reviewer guide

  • As the reviewer I confirm that there are no conflicts of interest for me to review this work (If you are unsure whether you are in conflict, please speak to your editor before starting your review).

Documentation

The package includes all the following forms of documentation: