you pay almost three times as much for a cloud server.
if you do have need for dedicated computing resources over a period of years, then building your own small personal cloud, with machines you actually own, is not only one third the cost but also … kinda cool?"
"Stadia", plural of "stadium", is meant to reflect that it will be a collection of entertainment, which the viewer can choose to sit back and watch, or take an active part in
About - Code Jam "Google’s longest running global coding competition, Code Jam, calls on programmers around the world to solve challenging, algorithmic puzzles against the clock. " Past Contests | Google Code Jam "results and code from past rounds of Code Jam (from 2008 to 2017) and related spin-offs... you can try the problems yourself"
other related sites:
"Project Euler is a series of challenging mathematical/computer programming problems that will require more than just mathematical insights to solve. Although mathematics will help you arrive at elegant and efficient methods, the use of a computer and programming skills will be required to solve most problems."
Swift is a modern programming language developed by Apple for mobile iOS and Mac.
And not it is being used by Google for AI development with TensorFlow!
How this happened? And what about Python?
Swift is developed by Chris Lattner who also created LLVM compiler platform. He worked in Apple on compilers and tools, and he and his team created Swift as a modern open source replacement for Objective-C. Then he briefly worked in Tesla on self-driving, just to end up in Google Brain team.
TensorFlow is a hardware and software platform optimized for Machine Learning.
Usually it is used from Python, and that is a challenge, since Python is an interpreted language,
hard to closely integrate with low-level tool like TensorFlow. Swift on the other side has performance of C++ (since it is using same compiler toolset)
and syntax and semantics of a very modern language!
In this case Swift can even be dynamically integrated with Python, to call existing Python libraries! It can be used in interactive mode, compiled, or even from Jupyter Notebooks.
Very interesting!
In addition to mobile and desktop, Swift is also being used for "server side" development
and this is supported by IBM.
"inverted index ... stores an ordered list of each of the words that occur in the different documents and associated with the specific documents in which they occur"
"Superset allows users to create visualizations, slice and dice their data, and query it. Superset integrates with Druid, a database that supports exploratory, OLAP-style workloads."
"As our application grows, the number of REST endpoints we must build and maintain starts to explode. A growing number of endpoints demands more and more time and effort to test and support - on both the client and server. And if you eventually need to version your API, you've got a lot more to consider.
In GraphQL, we can define Query types in our Schema to retrieve (or mutate) any combination of types in our system through one endpoint i.e /api/graphql. With types and a query defined in the schema, we can now issue requests via GraphQL similar to the RESTful ones listed above. However, we only need to send them to one endpoint. "
"C# programmer can write desktop, server-side Web, cloud, phone, tablet, watch, TV and IoT applications. Blazor completes the puzzle, allowing a C# developer to share code and business logic right into the user’s browser."
F# => JavaScript, CSS; without WebAssembly all strongly typed, including no need for custom JSON.
+ interactive web app updates while keeping current state(!) Even JavaScript web frameworks are not doing this yet!
Most JavaScript interpreters (including Node.js and modern browsers) use UTF-16 internally. Which means that the dog emoji is stored using two UTF-16 code units (of 16 bits each). So, this should not surprise you: console.log('🐶'.length) // => 2
...some characters appearing identical, but having different representations.
...The problem is that some of these characters could be represented in multiple ways.
For example, the letter é could be represented using either: A single code point U+00E9 The combination of the letter e and the acute accent, for a total of two code points: U+0065 and U+0301
The two characters look the same, but do not compare as equal, and the strings have different lenghts. In JavaScript: console.log('\u00e9') // => é
console.log('\u0065\u0301') // => é
console.log('\u00e9' == '\u0065\u0301') // => false
console.log('\u00e9'.length) // => 1
console.log('\u0065\u0301'.length) // => 2
...
This can cause unexpected bugs, such as records not found in a database, passwords mismatching letting users unable to authenticate, etc."
"On this day 30 years ago (1989-03-12), Tim Berners-Lee submitted a proposal with the dreary title “Information Management” to his superior at the European physics laboratory CERN."
"SQL Server 2016 introduced support for temporal tables (also known as system-versioned temporal tables) as a database feature that brings built-in support for providing information about data stored in the table at any point in time rather than only the data that is correct at the current moment in time. Temporal is a database feature that was introduced in ANSI SQL 2011." "How does temporal work?
System-versioning for a table is implemented as a pair of tables, a current table and a history table. Within each of these tables, the following two additional datetime2 columns are used to define the period of validity for each row: SysStartTime, SysEndTime "
"npm is extremely popular... npm has more than 10 million users ... they download more than 8.1 billion packages every seven days... more than 90% of developers who use JavaScript's are currently using npm to put it together. And that's heading towards 100%...
JavaScript is the most popular programming language in the world right now. It has been the biggest language on GitHub for the last five years running. 70% of Stack Overflow developers report that they use JavaScript, at least some of the time,
all 50 of the Fortune 50 are using npm in production, all 50 of the 50 biggest financial companies, all 50 of the 50 biggest tech companies." slides: npm and the future of JavaScript, QConf SF