User contributions
From ICO wiki
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 13:53, 11 January 2018 (diff | hist) . . (0) . . Advanced Python (Fall 2017) (current)
- 13:29, 20 December 2017 (diff | hist) . . (+131) . . Advanced Python (Fall 2017) (→Don't have a project idea?)
- 13:18, 11 December 2017 (diff | hist) . . (+853) . . Advanced Python (Fall 2017) (→Grading)
- 10:51, 14 November 2017 (diff | hist) . . (+3) . . Advanced Python (Fall 2017)
- 10:48, 14 November 2017 (diff | hist) . . (+276) . . Advanced Python (Fall 2017)
- 10:28, 14 November 2017 (diff | hist) . . (+137) . . Advanced Python (Fall 2017)
- 10:26, 14 November 2017 (diff | hist) . . (+2,281) . . N Advanced Python (Fall 2017)/lecture10 (Created page with "= Lecture 10 = Cryptopals https://cryptopals.com/ Many solution here: https://www.google.ee/search?dcr=0&source=hp&ei=k-oCWtGxJaHg6ASl0a4g&q=cryptopals+solution...") (current)
- 00:14, 24 October 2017 (diff | hist) . . (+243) . . Advanced Python (Fall 2017)
- 00:14, 24 October 2017 (diff | hist) . . (+1,942) . . N Advanced Python (Fall 2017)/lecture7 (Created page with "= Lecture 7 = Data types == Data type things to know == clases in python describe datatype, and when called, create a new object of that type. <code>type</code> returns the...") (current)
- 00:08, 24 October 2017 (diff | hist) . . (+4,011) . . N Advanced Python (Fall 2017)/lecture6 (Created page with "= Lecture 6: Concurrency = Concurrency is doing to things at once, not necessarily simultaneously. == Task 1. == Make a socket echo server === Solution === use google! th...") (current)
- 11:13, 10 October 2017 (diff | hist) . . (+4) . . Advanced Python (Fall 2017)
- 11:13, 10 October 2017 (diff | hist) . . (+152) . . Advanced Python (Fall 2017)
- 11:12, 10 October 2017 (diff | hist) . . (+2,915) . . N Advanced Python (Fall 2017)/lecture5 (Created page with "= lecture 5 = == piping stdout to stdin == you can send the outputs (stdout) of commands in shell to other commands, or write the to files http://www.tldp.org/LDP/abs/html/...") (current)
- 11:40, 3 October 2017 (diff | hist) . . (+291) . . Advanced Python (Fall 2017) (Add lecture videos)
- 11:38, 3 October 2017 (diff | hist) . . (+118) . . Advanced Python (Fall 2017) (add lecture 4)
- 11:35, 3 October 2017 (diff | hist) . . (+2,064) . . N Advanced Python (Fall 2017)/lecture4 (Created page with "= Lecture 4: Functional Programming = See this for a more detailed document on functional programming in python https://docs.python.org/3/howto/functional.html == Functions...") (current)
- 22:20, 24 September 2017 (diff | hist) . . (+142) . . Advanced Python (Fall 2017)
- 22:19, 24 September 2017 (diff | hist) . . (+5,527) . . N Advanced Python (Fall 2017)/lecture3 (Created page with "= Lecture 3 = == More scope (classes) == NB! Even though classes in python work as a namespace with their own scope, you should use modules (i.e .py files) instead of classe...") (current)
- 19:04, 16 September 2017 (diff | hist) . . (+130) . . Advanced Python (Fall 2017)
- 19:04, 16 September 2017 (diff | hist) . . (+3,977) . . N Advanced Python (Fall 2017)/lecture2 (Created page with "= Lecture 2 = == Scope and style == Python scope is similar to other programming language and does not have many suprises. Basic scoping rules can be found here: https://en....") (current)
- 22:24, 8 September 2017 (diff | hist) . . (+2,109) . . Advanced Python (Fall 2017)
- 22:23, 8 September 2017 (diff | hist) . . (+3,323) . . N Advanced Python (Fall 2017)/lecture1 (Created page with "= Lecture 1 = == When to use what python version == Use python 3 if you: are starting a new project, that you know will only be used internally, or used once, or used by pe...") (current)
- 10:57, 6 September 2017 (diff | hist) . . (+28) . . English
- 10:56, 6 September 2017 (diff | hist) . . (+67) . . English
- 10:46, 6 September 2017 (diff | hist) . . (+59) . . N Advanced Python (Fall 2017) (Created page with "= Advanced Python = https://goo.gl/forms/Krqx2veYYqYEupXk2")
- 11:01, 7 June 2017 (diff | hist) . . (+97) . . I719 Fundamentals of Python (→Test) (current)
- 11:28, 6 June 2017 (diff | hist) . . (+105) . . I719 Fundamentals of Python
- 11:26, 6 June 2017 (diff | hist) . . (+3,176) . . N I719 Fundamentals of Python/test results (Created page with "= Test Result Output = == Example Code == <code>app.py</code> <source lang="python">def get_hello_world_1(): return "Hello World!" def get_hello_world_2(): """Ret...") (current)
- 11:10, 2 June 2017 (diff | hist) . . (+12) . . I719 Fundamentals of Python (→Test dates)
- 08:59, 1 June 2017 (diff | hist) . . (+96) . . I719 Fundamentals of Python (→Test)
- 22:32, 30 May 2017 (diff | hist) . . (+43) . . I719 Fundamentals of Python (→Test topics)
- 22:31, 30 May 2017 (diff | hist) . . (+84) . . I719 Fundamentals of Python (→Real Test for 23/03/17)
- 22:29, 30 May 2017 (diff | hist) . . (+84) . . I719 Fundamentals of Python (→Real Test for 25/05/17)
- 07:14, 25 May 2017 (diff | hist) . . (+96) . . I719 Fundamentals of Python (→Test)
- 10:22, 4 May 2017 (diff | hist) . . (-6) . . I719 Fundamentals of Python (→Lecture 5)
- 10:21, 4 May 2017 (diff | hist) . . (+3,072) . . N I719 Fundamentals of Python/lecture5v2 (Created page with "= Lecture 5 = Working with real data.<br /> Datetime, CSV files == Datetime == <source lang="python">import datetime as dt my_datetime = dt.datetime.utcnow() # get the cu...") (current)
- 07:18, 4 May 2017 (diff | hist) . . (+18) . . I719 Fundamentals of Python
- 20:35, 27 April 2017 (diff | hist) . . (+120) . . I719 Fundamentals of Python (→Lecture 4)
- 20:26, 27 April 2017 (diff | hist) . . (+3,419) . . N I719 Fundamentals of Python/lecture4v2 (Created page with "= Lecture 4 = introduction to website development with flask. NOTE: you do not need to know this material for the test or to know python in general. It is only for showing h...") (current)
- 00:44, 21 April 2017 (diff | hist) . . (+170) . . I719 Fundamentals of Python (→Lecture 3)
- 00:42, 21 April 2017 (diff | hist) . . (+3,075) . . N I719 Fundamentals of Python/lecture3v3 (Created page with " = Lecture 3 = Input, Handling Errors, Unit Testing == Input from console == You can prompt the user for input using a function called <code>input</code>. on python2, this...") (current)
- 12:04, 17 April 2017 (diff | hist) . . (+139) . . I719 Fundamentals of Python
- 12:03, 17 April 2017 (diff | hist) . . (+3,418) . . N I719 Fundamentals of Python/lecture2v2 (Created page with "= Lecture 2 = Dictionaries, Importing, HTTP Requests, and Classes == Dictionaries == Map keys to values <source lang="python"># Make a list >>> a = [1, 2, 3] # get element...") (current)
- 15:46, 7 April 2017 (diff | hist) . . (-56) . . I719 Fundamentals of Python
- 15:38, 7 April 2017 (diff | hist) . . (+5,198) . . N I719 Fundamentals of Python/lecture1v2 (Created page with "= Lesson 1 = == Running Python == There are executables <code>python</code>, <code>python2</code>, and <code>python3</code> By default on ubuntu and most systems, <code>pyth...") (current)
- 22:14, 5 April 2017 (diff | hist) . . (+52) . . I719 Fundamentals of Python
- 08:21, 23 March 2017 (diff | hist) . . (+96) . . I719 Fundamentals of Python
- 14:34, 19 March 2017 (diff | hist) . . (+278) . . I719 Fundamentals of Python
- 14:24, 19 March 2017 (diff | hist) . . (+2,780) . . N I719 Fundamentals of Python/lecture7 (Created page with "= Advanced control flow = == Task 1 == Make a function that returns the sum of all elements in an iterable <source lang="python">>>> my_sum_function([2,3,5]) # 2 + 3 + 5 10...") (current)
- 11:01, 16 March 2017 (diff | hist) . . (+416) . . I719 Fundamentals of Python/testing (current)
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)