All public logs
Jump to navigation
Jump to search
Combined display of all available logs of NovaOrdis Knowledge Base. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 21:00, 16 July 2024 Ovidiu talk contribs created page Bazel BUILD Files (Created page with "=External= * https://bazel.build/concepts/build-files =Internal= * Bazel Concepts =Overview=")
- 22:32, 15 July 2024 Ovidiu talk contribs created page Go Package net/url (Created page with "=External= * https://pkg.go.dev/net/url * https://gobyexample.com/url-parsing =Internal= * Standard Library * HTTP in Go =Overview=")
- 22:22, 10 July 2024 Ovidiu talk contribs created page GRPC Programming Model (Created page with "=Internal= * gRPC =Instantiate a GRPC Client=")
- 00:23, 6 July 2024 Ovidiu talk contribs created page Go switch (Created page with "=Internal= * Go Language =Overview= ===Tagless Switch===")
- 00:18, 6 July 2024 Ovidiu talk contribs created page Go if (Created page with "The <code>if</code> statement specifies the conditional execution of two branches according to the value of a boolean expression. Optionally, the boolean expression may be preceded by another statement, which is executed before the expression is evaluated. ===Simple If=== {{External|https://go.dev/ref/spec#If_statements}} <syntaxhighlight lang='go'> if <condition> { <statements> } </syntaxhighlight> <syntaxhighlight lang='go'> if x >...")
- 23:39, 5 July 2024 Ovidiu talk contribs created page Go doc (Created page with "=External= =Internal= * Go Tool =Overview= The <code>doc</code> command prints documentation for a package or a package member: <syntaxhighlight lang='go'> go doc time </syntaxhighlight> <syntaxhighlight lang='go'> go doc time.Since </syntaxhighlight> It is a great exercise to use <code>go doc</code> in the early phase of a package's API design to see how the concepts will be rendered in documentation. Sometimes, the visualization has impact on design. <...")
- 01:08, 4 July 2024 Ovidiu talk contribs created page Go Variables (Created page with "=External= =Internal= =Overview= =Naming=")
- 00:59, 4 July 2024 Ovidiu talk contribs created page Go Constants (Created page with "=External= * https://go.dev/ref/spec#Constants =Internal= * Go Language =Overview= A constant is a typed expression whose value is known at compile time, and cannot be changed once declared. The compiler detects modification attempts and throws a compilation error. The type is inferred from the right-hand side of the assignment. Multiple constants can be assigned at the same time using enclosing parentheses. <syntaxhighlight lang='go'> const <co...")
- 23:14, 2 July 2024 Ovidiu talk contribs created page Go fmt (Created page with "=External= * https://pkg.go.dev/cmd/gofmt =Internal= * go Tool * Go Source Code Formatting =Overview= The <code>fmt</code> ("format") command formats source code files, by applying a predetermined layout to Go source code. It delegates to <code>gofmt</code>, and it is equivalent to: <syntaxhighlight lang='bash'> gofmt -l -w <file> </syntaxhighlight> One counterintuitive fact is that it uses the tab charac...")
- 03:33, 13 June 2024 Ovidiu talk contribs created page Tactical Typing in Go (Created page with "=Internal= * Go Code Examples =Overview=")
- 03:10, 13 June 2024 Ovidiu talk contribs created page Go Slice Sorting (Created page with "=Internal= * Go Package <tt>sort</tt> =Overview=")
- 21:08, 30 May 2024 Ovidiu talk contribs created page SQL Conditional Logic (Created page with "=Interna= * <tt>SQL WHERE</tt> =Overview= SQL conditional logic is the ability of SQL statements to take one of several paths during execution, depending on the value of an expression. The SQL has syntax that provides IF/ELSE conditional logic, except that it uses the <code>CASE</code> keyword instead of <code>IF</code>. The <code>CASE</code> expressions can be used in conditional <code>SELECT</code>, <code>SQL_INSERT#Conditional_I...")
- 23:06, 24 May 2024 Ovidiu talk contribs created page Person Company City (Created page with "=Internal= * Querying Multiple Tables =Overview= <syntaxhighlight lang='sql'> </syntaxhighlight>")
- 22:49, 24 May 2024 Ovidiu talk contribs created page SQL ARRAY (Created page with "=Internal= * SQL Data Types =Overview=")
- 22:27, 23 May 2024 Ovidiu talk contribs created page SQL Set Operations (Created page with "=Internal= * SQL =TODO= <font color=darkkhaki>PROCESS: https://learning.oreilly.com/library/view/learning-sql-3rd/9781492057604/ch06.html</font>")
- 17:03, 23 May 2024 Ovidiu talk contribs created page SQL CREATE ALTER DROP VIEW (Created page with "=Internal= * SQL * SQL Data Types =Overview= =<tt>CREATE</tt>= <syntaxhighlight lang='sql'> CREATE TABLE person ( id smallint, name varchar(30) NOT NULL, CONSTRAINT pk_person PRIMARY KEY (id) ); </syntaxhighlight> :{| class="wikitable" style="text-align: left;" |- | PostgreSQL || MySQL |- |} =<tt>ALTER</tt>= <syntaxhighlight lang='sql'> ALT...")
- 00:13, 23 May 2024 Ovidiu talk contribs created page SQL AUTO INCREMENT (Created page with "=Internal= * <tt>CREATE</tt> | <tt>ALTER</tt> | <tt>DROP</tt> | <tt>TABLE</tt> =Overview=")
- 23:52, 22 May 2024 Ovidiu talk contribs created page SQL Constraints (Created page with "=Internal= * SQL =Overview= =Primary Key Constraint= <syntaxhighlight lang='sql'> CREATE TABLE ... ( ... CONSTRAINT pk_someconstraint PRIMARY KEY (somecolumn) ); </syntaxhighlight>")
- 23:14, 22 May 2024 Ovidiu talk contribs created page SQL GROUP BY (Created page with "=Internal= =Overview= <font color=darkkhaki>Make sure I understand thoroughly and link.</font>")
- 23:05, 22 May 2024 Ovidiu talk contribs created page SQL Indexes (Created page with "=Internal= * SQL =Overview=")
- 23:00, 22 May 2024 Ovidiu talk contribs created page SQL Database Metadata (Created page with "=Internal= * SQL =Overview= A database server stores information about all the database objects (tables, views, indexes, etc.) that were created with the SQL schema statements.")
- 22:40, 22 May 2024 Ovidiu talk contribs created page SQL WHERE (Created page with "=Internal= * SQL <tt>UPDATE</tt> * SQL <tt>DELETE</tt> * SQL <tt>SELECT</tt>")
- 22:39, 22 May 2024 Ovidiu talk contribs created page SQL DELETE (Created page with "=Internal= * SQL * SQL <tt>WHERE</tt>")
- 22:39, 22 May 2024 Ovidiu talk contribs created page SQL UPDATE (Created page with "=Internal= * SQL * SQL <tt>WHERE</tt>")
- 22:38, 22 May 2024 Ovidiu talk contribs created page SQL INSERT (Created page with "=Internal= * {{SQL#INSERT|SQL}} * {{SQL_WHERE#Overview|SQL <tt>WHERE</tt>}}")
- 22:23, 22 May 2024 Ovidiu talk contribs created page SQL Data Types (Created page with "=Internal= * SQL =Overview= <font color=darkkhaki> * SQL data types * Database-specific data types * Working with different data types * Conversion functions </font>")
- 22:14, 22 May 2024 Ovidiu talk contribs created page SQL CREATE ALTER DROP TABLE (Created page with "=Internal= * _ALTER_|_DROP_TABLE|SQL")
- 22:10, 22 May 2024 Ovidiu talk contribs created page SQL Transaction Statements (Created page with "=Internal= * SQL =Overview=")
- 21:10, 22 May 2024 Ovidiu talk contribs created page SQL Querying Multiple Tables (Created page with "=Internal= * Querying Multiple Tables =Overview= Querying Multiple Tables, Joining Tables Define join. Join condition Foreign key")
- 21:02, 22 May 2024 Ovidiu talk contribs created page SQL SELECT (Created page with "=Internal= * SQL =Overview= Query execution. SQL optimizer. Subqueries.")
- 21:30, 21 May 2024 Ovidiu talk contribs created page Masterminds/squirrel (Created page with "=External= * https://github.com/Masterminds/squirrel * https://medium.com/nerd-for-tech/postgres-libraries-to-try-with-go-8f80191edbff =Overview= <font color=darkkhaki>Intro how to use it: https://medium.com/nerd-for-tech/postgres-libraries-to-try-with-go-8f80191edbff</font>")
- 21:16, 21 May 2024 Ovidiu talk contribs created page Jackc/pgx (Created page with "=External= * https://www.youtube.com/watch?v=sXMSWhcHCf8 =Internal= * PostgreSQL Support in Go")
- 16:25, 21 May 2024 Ovidiu talk contribs created page NumPy Fancy Array Indexing (Created page with "=Internal= * NumPy <tt>ndarray</tt>")
- 16:25, 21 May 2024 Ovidiu talk contribs created page NumPy Boolean Array Indexing (Created page with "=Internal= * NumPy <tt>ndarray</tt>")
- 19:53, 20 May 2024 Ovidiu talk contribs created page NumPy Universal Functions (Created page with "=Internal= * NumPy Concepts * <tt>ndarray</tt> =Overview=")
- 19:51, 20 May 2024 Ovidiu talk contribs created page NumPy Pseudorandom Number Generation (Created page with "=Internal= * NumPy Concepts =Overview=")
- 19:23, 20 May 2024 Ovidiu talk contribs created page NumPy ndarray (Created page with "=Internal= * Numpy Concepts =Overview= <code>ndarray</code> is an N-dimensional array object, which is a fast, flexible container for large datasets in Python. It is used to implement a Pandas Series.")
- 17:19, 17 May 2024 Ovidiu talk contribs created page Python zip() (Created page with "=Internal= * Python Language Functions =Overview= <code>zip()</code> "pairs" up the elements of a number of lists, tuples or other sequences to create a list of tuples.")
- 21:48, 16 May 2024 Ovidiu talk contribs created page Slicing Lists and Tuples in Python (Created page with "=Internal= * Lists * Tuples")
- 00:09, 15 May 2024 Ovidiu talk contribs created page IPython Operations (Created page with "=Internal= * IPython")
- 00:09, 15 May 2024 Ovidiu talk contribs created page IPython Concepts (Created page with "=Internal= * IPython")
- 23:52, 14 May 2024 Ovidiu talk contribs created page Miniconda (Created page with "=Internal= * conda")
- 23:50, 14 May 2024 Ovidiu talk contribs created page PyTorch (Created page with "=External= * https://www.statsmodels.org/stable/index.html =Internal= * Python for Data Analysis =Overview=")
- 23:47, 14 May 2024 Ovidiu talk contribs created page Statsmodels (Created page with "=External= * https://www.statsmodels.org/stable/index.html =Internal= * Python for Data Analysis =Overview=")
- 23:39, 14 May 2024 Ovidiu talk contribs created page SciPy (Created page with "=External= * https://scipy.org =Internal= * Python for Data Analysis")
- 23:35, 14 May 2024 Ovidiu talk contribs created page IPython (Created page with "=External= * https://ipython.org =Internal= * Python for Data Analysis =Overview= An interactive Python interpreter, that encourages an execute-explore workflow instead of the typical edit-compile-run workflow.")
- 23:04, 14 May 2024 Ovidiu talk contribs created page Scikit-learn (Created page with "=Internal= * Python for Data Analysis")
- 22:40, 14 May 2024 Ovidiu talk contribs created page Python for Data Analysis (Created page with "=External= =Internal= * Python Engineering =Overview=")
- 22:29, 14 May 2024 Ovidiu talk contribs created page Descriptive Statistics (Created page with "=External= * https://www.investopedia.com/terms/d/descriptive_statistics.asp =Internal= * Statistical Concepts =Overview=")
- 20:29, 14 May 2024 Ovidiu talk contribs created page State Machines in Go (Created page with "=Internal= * State Machines")