This file contains hidden or 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
| //Run on url https://web.cyanide-studio.com/ws/bb2/contests?league=For%C3%A5r+2025+I%3E%25&platform=pc | |
| let teams={}; | |
| let playedGames=document.querySelectorAll('tbody tr'); | |
| function blankRecord(teamname){ | |
| return { | |
| points:0, | |
| TD:0, | |
| win:0, | |
| draw:0, |
This file contains hidden or 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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| config.vm.box = "boxcutter/ubuntu1604" | |
| config.vm.network "private_network", ip: "192.168.33.11" | |
| # config.vm.synced_folder "../data", "/vagrant_data" | |
| #config.vm.synced_folder ".", "/vagrant", fsnotify: true |