Is anyone else still in awe of coding/programming and what all it can accomplish? Computer Science |
- Is anyone else still in awe of coding/programming and what all it can accomplish?
- My 10 Favorite Computer Science Books
- What are the problems with working on tech projects with other people fully remote? Are there any to begin with?
- Brilliant interview with Sara Hooker of Google Brain discussing Survivorship Bias & Imposter Syndrome in AI, The Accra Lab, Brain Damage research and more.
- Which of these concurrency models are useful and which are not so much?
- Common techniques for rigorously proving runtime bounds?
- How are distributed systems fast??
- If somebody asked you to create an email client from scratch, what would you do?
- What is the programming language paradigm of the pi calculus?
- Is this a typo in representing a function as a fixed point of another via the Y combinator?
- Top 5 Emerging AI Trends in 2021
- Hey, help me!
Is anyone else still in awe of coding/programming and what all it can accomplish? Posted: 15 Feb 2021 08:48 AM PST I've had about 4 years of experience in computer science now, and I'm still in awe at all that I've learned. I still remember what it was like to not know anything. When I explain what I do to people who aren't familiar, they say "It's all Greek to me!" And I totally get that because even though I know how to program now and I know the computer science concepts behind it, I'm still not entirely convinced that the whole CompSci field isn't magic. Edit: just a typo [link] [comments] |
My 10 Favorite Computer Science Books Posted: 15 Feb 2021 08:23 AM PST |
Posted: 16 Feb 2021 04:30 AM PST |
Posted: 16 Feb 2021 02:54 AM PST |
Which of these concurrency models are useful and which are not so much? Posted: 15 Feb 2021 02:43 PM PST Harper's Practical Foundations of Programming Languages presents
Varela's Programming Distributed Computing Systems presents four concurrency models:
There are also CCS, CSP, and ACP in the family of process calculi/algebras. I was wondering which of them have been seen very useful in applications, and which not so much. How are they ranked in that regard? Thanks. [link] [comments] |
Common techniques for rigorously proving runtime bounds? Posted: 15 Feb 2021 01:57 PM PST Hi, I'm entering a phd program in reinforcement learning next year and am studying some gaps in my foundational cs knowledge to prepare a little. Something I have never had to do is rigorously prove runtime bounds, and unfortunately so many problems / exercises I've encountered thus far on this either rely on slightly clever algebra, something that feels very similar to an epsilon-N proof in sequences from very elementary real analysis or just using the limit definition of little o and the fact that little o eclipses big O (and likewise for omega and theta). It's very hard for me to google for this due to the abundance of material of runtime complexity for big O, and I've solved a good chunk of the exercises in CLRS chapter 3; where can I read more about this subject (especially on theorems or problems that introduce new techniques)? Or, is this all there is to it for the most part for general proof techniques (ie, any more techniques now depend on analysis of a certain class of algorithm, or certain attributes, etc)? [link] [comments] |
How are distributed systems fast?? Posted: 15 Feb 2021 05:38 PM PST Hello all! I have just started learning about distributed systems in my course and have been following kleppman's book as well (Designing Data Intensive applications). The book in itself is excellent, but I have had a few questions that have been stuck in the back of my head for some time now. I was going through the chapter about distributed replications. So basically, I know that we have distributed replications of the data stores that is also called as horizontal scaling (increasing the number of data-handling processes instead of creating a single, more powerful one). I get that replication will increase fault tolerance on the overall system, but what about speed? This is the one point I am confused about. Looking at leader-based replication mechanisms, it seems like ultimately, all traffic has to flow through a single node, which, again is baffling, considering it has to process an equal amount of traffic as in a single-sever installation, with the added latency of ensuring that all replicas have stored the data as well. The only advantage I can see here is fault tolerance, and nothing else (since being a single master means that all clients will have to connect to the same master, regardless of the geographical proximity and hence the concept of "CDNs" have been nullified) Also, looking at leaderless replication mechanisms (used by Amazon's Dynamo), it seems that a single client will have to go through the hassle of storing/retrieving data from multiple instances, which definitely seems to be slower compared to the time required for storing data on a single, powerful instance. So TL;DR, my question is, Is implementing Distributed Replication *meant* to be slower but have the added advantage of fault tolerance, or am I missing some fundamental part that I have not understood well? Also, please feel free to include additional learning resources in the threads below! Thanks a ton! [link] [comments] |
If somebody asked you to create an email client from scratch, what would you do? Posted: 15 Feb 2021 06:33 PM PST This question is purely hypothetical. I was just thinking about this as I've been trying out Basecamp's Hey email client. What would be some features that you would add to your custom email client if you were given the time to create one? [link] [comments] |
What is the programming language paradigm of the pi calculus? Posted: 15 Feb 2021 07:30 PM PST What is the programming language paradigm of the pi calculus? Concurrency is an application field and isn't really a paradigm, is it? The actor model is inherently OO or functional? Thanks. [link] [comments] |
Is this a typo in representing a function as a fixed point of another via the Y combinator? Posted: 15 Feb 2021 06:22 AM PST In Varela's Programming Distributed Computing Systems, Ch4 is about the Actor language which combines the actor model into the lambda calculus. On p63, it has an example that computes the product of the weighted leaves of a binary tree, using a divide and conquer recursive algorithm in the Actor language. See the quote below. Questions: (1) When representing
Are they typos? (2) Why does the function need "ready(b)" at the end, i.e. getting back to the original state?
[link] [comments] |
Top 5 Emerging AI Trends in 2021 Posted: 15 Feb 2021 05:52 AM PST |
Posted: 15 Feb 2021 03:04 PM PST How transmit a data by electronic waves between two cell phones? [link] [comments] |
You are subscribed to email updates from Computer Science: Theory and Application. To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google, 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States |
No comments:
Post a Comment