Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jserranohidalgo committed Oct 7, 2022
0 parents commit e5d9b46
Show file tree
Hide file tree
Showing 5 changed files with 1,209 additions and 0 deletions.
141 changes: 141 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,141 @@
##
## Scala-specific
##
*.class
*.log

# sbt specific
.cache
.history
.lib/
dist/*
target/
**/target/
lib_managed/
src_managed/
project/boot/
project/plugins/project/


# Scala-IDE specific
.scala_dependencies
.worksheet

##
## ECLIPSE-Specific.
##
*.pydevproject
.metadata
.gradle
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.settings/
.loadpath
# External tool builders
.externalToolBuilders/
# Locally stored "Eclipse launch configurations"
*.launch
# sbteclipse plugin
.target

# Ensime specific
.ensime
.ensime_lucene/

##
## emacs-specific.
##
*~
\#*\#
/.emacs.desktop
/.emacs.desktop.lock
*.elc
auto-save-list
tramp
.\#*
# Org-mode
.org-id-locations
*_archive
# flymake-mode
*_flymake.*
# eshell files
/eshell/history
/eshell/lastdir
# elpa packages
/elpa/
# reftex files
*.rel
# AUCTeX auto folder
/auto/
# cask packages
.cask/



##
## SUBLIME-Specific.
##
# cache files for sublime text
*.tmlanguage.cache
*.tmPreferences.cache
*.stTheme.cache
# workspace files are user-specific
*.sublime-workspace
# project files should be checked into the repository, unless a significant
# proportion of contributors will probably not be using SublimeText
# *.sublime-project
# sftp configuration file
sftp-config.json

##
## Idea
##

.idea/
**/.idea/
MANIFEST
build
dist
_build
docs/man/*.gz
docs/source/api/generated
docs/source/config.rst
docs/gh-pages
notebook/i18n/*/LC_MESSAGES/*.mo
notebook/i18n/*/LC_MESSAGES/nbjs.json
notebook/static/components
notebook/static/style/*.min.css*
notebook/static/*/js/built/
notebook/static/*/built/
notebook/static/built/
notebook/static/*/js/main.min.js*
notebook/static/lab/*bundle.js
node_modules
*.py[co]
__pycache__
*.egg-info
*~
*.bak
.ipynb_checkpoints
.tox
.DS_Store
\#*#
.#*
.coverage
.pytest_cache

*.swp
*.map
.idea/
Read the Docs
config.rst

/.project
/.pydevproject

package-lock.json
geckodriver.log
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
This repository contains the slides and notebooks used in the talk:

[What logic can teach us, Scala programmers](https://docs.google.com/presentation/d/1ObF_g2-YPN1Hls71JdsquQREMaI59k_ILuWfw3C21j8/edit?usp=sharing)

This talk was part of the conference [ScalaCon Fall 2022](http://www.scalacon.org/)

<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.
498 changes: 498 additions & 0 deletions WhatLogicCanTeachUs.ipynb

Large diffs are not rendered by default.

Binary file added images/bocardo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
563 changes: 563 additions & 0 deletions templates/WhatLogicCanTeachUs.ipynb

Large diffs are not rendered by default.

0 comments on commit e5d9b46

Please sign in to comment.