• Breaking News

    Friday, January 18, 2019

    CompSci Weekend SuperThread (January 18, 2019) Computer Science

    CompSci Weekend SuperThread (January 18, 2019) Computer Science


    CompSci Weekend SuperThread (January 18, 2019)

    Posted: 17 Jan 2019 05:05 PM PST

    /r/compsci strives to be the best online community for computer scientists. We moderate posts to keep things on topic.

    This Weekend SuperThread provides a discussion area for posts that might be off-topic normally. Anything Goes: post your questions, ideas, requests for help, musings, or whatever comes to mind as comments in this thread.

    Pointers

    • If you're looking to answer questions, sort by new comments.
    • If you're looking for answers, sort by top comment.
    • Upvote a question you've answered for visibility.
    • Downvoting is discouraged. Save it for discourteous content only.

    Caveats

    • It's not truly "Anything Goes". Please follow Reddiquette and use common sense.
    • Homework help questions are discouraged.
    submitted by /u/AutoModerator
    [link] [comments]

    What is the difference between an emulator, an interpreter and a virtual machine?

    Posted: 17 Jan 2019 08:53 AM PST

    Does putting Haskell and Common Lisp in my resume a good idea?

    Posted: 18 Jan 2019 04:37 AM PST

    I'm an 3rd year CS undergraduate, and I have some projects in Haskell and Lisp (also in Java)

    PS: I've worked through HTDP, SICP and PAIP

    submitted by /u/Keil-Eden
    [link] [comments]

    SEEKING ADVICE!

    Posted: 18 Jan 2019 02:12 AM PST

    Hello everyone,I am about to start my semester and planning to to specialisation in cloud computing.Any particular language that i should learn which could give me an edge or any particular certification that i i should give for my own advantage(career wise)?

    submitted by /u/helpnhelper
    [link] [comments]

    Sentence Classification with Neural Networks (Guide)

    Posted: 17 Jan 2019 09:35 PM PST

    Topics of research in Computer Science

    Posted: 17 Jan 2019 10:10 PM PST

    Hello everyone! I wonder, what are the latest topics of research in Computer Science!

    submitted by /u/durgesh2018
    [link] [comments]

    Big O coeficients

    Posted: 17 Jan 2019 04:52 PM PST

    I have these questions and solutions, but I have no idea how they get the coefficients. May some one please expalin:

    Here is my efforts:

    def factorial(n): x = 1 for i in range(2, n): x = x * i return x 

    Solution is T(n) = n + 1, T(n) = O(n) this one I got as x = 1 line runs once, so that is the 1 and then x = x * 1 runs max n times.

    def loopy0(n): x = n for i in range(3, n+2): for j in range(5, n * 2): temp = i + j x = x + temp return x 

    Solution is T(n) = 8n^2 - 28n + 22, T(n) = O(n^2) but I was getting 1 + [(n + 2)(n * 2)] as first line x = n runs once, and then the lines temp = i + j runs max of n + 2 times n * 2.

    def loopy1(n): x = factorial(n) for i in range(3, n+2): for j in range(5, n * 2): temp = i + j x = x + temp return x 

    Solution is T(n) = 8n^2 - 27n + 22, T(n) = O(n^2) but

    def loopy2(n): x = n for i in range(3, n+2): for j in range(5, 10): temp = i + j x = x + temp return x 

    Solution is T(n) = 20n - 18, T(n) = O(n)

    submitted by /u/Noitidart2
    [link] [comments]

    Degree question

    Posted: 17 Jan 2019 06:05 PM PST

    I am planning on switching from a computer science honors degree to a mathematics and computer science degree. But since its technically in the math department, does this take away any employability?

    submitted by /u/particlect
    [link] [comments]

    Unknown human ancestor has been identified with the aid of artificial intelligence.

    Posted: 17 Jan 2019 10:44 AM PST

    Searching in ACM Digital Library?

    Posted: 17 Jan 2019 09:36 AM PST

    I am looking to do a database demonstration from our library for students in a cloud computing course. The students need to seek out articles once a week to do a short presentation on. Are there any good keywords or search strings I could use to demonstrate that there's good content in here? I reviewed the syllabus and list of topics covered each week, but they're very generic like "cloud security", "advanced cloud architecture", etc. These don't yield good results and what little I know about comp sci don't sound like good keywords or search strings to look up! What are some questions a student might ask and want to look up by?

    Also, most of the time when I put things in like "cloud security" etc I'm pulling conference proceedings but the instructor wants the students to use peer-reviewed journal articles (I'll also be demonstrating IEEE Xplore and ScienceDirect and am not having any issues with those platforms), I am really stymied when it comes to ACM Digital Library.

    I'd love to hear input from people who DO use this resource regularly...

    submitted by /u/Nandinia_binotata
    [link] [comments]

    OS that runs windows programs?

    Posted: 17 Jan 2019 12:31 PM PST

    If I were to develop my own OS, like Apple's Macbook OS, could I make it so it could run all windows programs? So I could open Photoshop's windows version as if I were using a windows operating system. Would this be illegal or protected by Microsofts patents or trademarks? Thank you.

    submitted by /u/anotheroneflew
    [link] [comments]

    No comments:

    Post a Comment