User contributions for Mr. MacKenty

Search for contributionsExpandCollapse
⧼contribs-top⧽
⧼contribs-date⧽
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)

9 May 2023

8 May 2023

7 May 2023

26 April 2023

30 March 2023

28 March 2023

  • 09:3509:35, 28 March 2023 diff hist +1,335 N Date and times with PythonCreated page with "<syntaxhighlight lang="python"> import datetime # to get the current date and time: print(datetime.datetime.now()) # to get the current date: print(datetime.date.today()) # to get the current time: print(datetime.datetime.now().time()) # to get the current year: print(datetime.datetime.now().year) # to get the day of the week: print(datetime.datetime.now().weekday()) # to print the day of the week: print(datetime.datetime.now().strftime("%A")) # to ask the user to..." current
  • 09:3409:34, 28 March 2023 diff hist +33 Python→‎Basic ideas current

23 March 2023

21 March 2023

14 March 2023

13 March 2023

10 March 2023

9 March 2023

8 March 2023

1 March 2023

  • 12:4612:46, 1 March 2023 diff hist +1,730 N Just-in-time (JIT) compilationCreated page with "Just-in-time (JIT) compilation is a technique used in computer programming to improve the performance of runtime execution. It involves dynamically compiling code at runtime instead of compiling it ahead of time and storing it in binary form. When a program is executed, the JIT compiler analyzes the code and identifies frequently executed parts of the code. It then compiles those parts into machine code and stores the compiled code in memory, making it available for reu..." current
  • 12:4512:45, 1 March 2023 diff hist +37 Computer organization→‎Not part of IB curriculum but you should know this current
  • 12:4512:45, 1 March 2023 diff hist +1,399 N TranspilingCreated page with "Transpiling (short for "transformation" and "compiling") is the process of converting source code from one programming language to another while maintaining the same functionality. It is a common practice in software development when a developer wants to use modern language features or libraries that are not supported in the target environment. The transpiling process typically involves taking the source code written in the original language and running it through a tra..." current
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)