Skip to content
Merged

Dev #53

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,7 @@ You can now submit code examples on which our users will test their typing skill
Assuming your code passes all our tests it will be waiting for human verification as a pull request [here][pulls-url].

## Known Issues
* Sometimes after disconnecting from server not all variables updated
* In multiplayer language changes above editor when admin selects new one and the player is still on the results page
* Navbar glitches on small screens

## License

Expand Down
10 changes: 10 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"cm-show-invisibles": "^3.1.0",
"codemirror": "^5.58.1",
"cors": "^2.8.5",
"countup.js": "^2.0.7",
"debug": "^4.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
Expand All @@ -38,6 +39,7 @@
"vue": "^2.6.12",
"vue-chartjs": "^3.5.1",
"vue-codemirror": "^4.0.6",
"vue-countup-v2": "^4.0.0",
"vue-router": "^3.4.5",
"vue-socket.io": "^3.0.10",
"vue-socket.io-extended": "^4.0.4",
Expand Down
2 changes: 1 addition & 1 deletion public/code/Ruby/pop3.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require 'net/pop'

mail_server = Net::POP3.new('mail.encap.pl')
mail_server = Net::POP3.new('mail.coderush.xyz')

begin
mail_server.start('username','password')
Expand Down
2 changes: 1 addition & 1 deletion public/code/Swift/load_webView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class ViewController: UIViewController, UIWebViewDelegate {

myWebView.delegate = self

let myURL = URL(string: "https://encap.pl")
let myURL = URL(string: "https://coderush.xyz")
let myURLRequest:URLRequest = URLRequest(url: myURL!)
myWebView.loadRequest(myURLRequest)

Expand Down
Loading