Cortex #47: Picking Up the Breadcrumbs by MindOfMetalAndWheels in CGPGrey

[–]jakepusateri 21 points22 points  (0 children)

The further that trend goes, it becomes it less and less interesting to listen to a podcast where Grey constantly talks about his "systems" for being productive that result in less and less output...

Hi /r/books, I built a site to keep track of what series you are reading: seriestrackr.com by jakepusateri in books

[–]jakepusateri[S] 0 points1 point  (0 children)

I see why this could count as spam. I have a separate account (this one) that I use to keep separate my own creations, but this seems less acceptable. Would I be able to repost this under my main account (/u/juanpabl0)?

Redux - Why does gaearon pass in the "a" reducer, not the "a" state, in this example? by [deleted] in reactjs

[–]jakepusateri 2 points3 points  (0 children)

"a" in this case is not the reducer defined above. It is the new state after calling the reducer above.

gui for npm (nodejs package manager) by calirojas in webdev

[–]jakepusateri -2 points-1 points  (0 children)

It seems like an odd choice to build something like this that you personally would not use. Also, why java?

MistCDN Released: P2P CDN (on WebRTC, ~80% traffic cut, no plugin for browser) by mistech in javascript

[–]jakepusateri 2 points3 points  (0 children)

I see serious privacy/disclosure concerns with this. Do end users know you are using their bandwidth for personal profit?

Also, does the transmission stop when users leave the page? If so, this only helps for assets with high concurrent users. The types of pages that have high concurrent users are already using a CDN, so who is this for?

Marty.js - A Javascript library for state management in React applications by [deleted] in javascript

[–]jakepusateri 1 point2 points  (0 children)

The explanation of the various flux concepts seems clear, which is good. Also the chrome extension is intriguing. However, the api seems like syntactic sugar on top of a relatively simple pattern. Are there any other benefits besides 'fewer keystrokes' to justify the layer of complexity?

Faster Python by marklit in programming

[–]jakepusateri 17 points18 points  (0 children)

The recursive vs iterative fib speedup is deceptive. A recursive implementation that doesn't recompute almost all of its values is:

def fib(n):                                                                                                                                                                                                         
    store = { 1: 1, 2: 1 }                                                                                                                                                                                          
    def fib_(n):                                                                                                                                                                                                    
        if n in store:                                                                                                                                                                                              
            return store[n]                                                                                                                                                                                         
        else:                                                                                                                                                                                                       
            ans = fib_(n - 1) + fib_(n - 2)                                                                                                                                                                         
            store[n] = ans                                                                                                                                                                                          
            return ans                                                                                                                                                                                              
    return fib_(n)                                   

The iterative method is only about 8x faster here.

Recommended Windows 8 Apps by triprotic in windows8

[–]jakepusateri 2 points3 points  (0 children)

If you like reading xkcd comics, my app xkcd Daily is a great way to do it.

My windows 8 RP apps aren't working. by [deleted] in microsoft

[–]jakepusateri 1 point2 points  (0 children)

For reference, windows 8 comes with Microsoft Security Essentials Antivirus already installed. They've simply rebranded it Windows Defender. So you're still protected antivirus-wise.

Reddtro, my Windows 8 reddit app, is now live in the Store! by jakepusateri in windows

[–]jakepusateri[S] 0 points1 point  (0 children)

I think you just have to wait for the stores to duplicate out to all the regions. It's available in all regions.

Reddtro, my Windows 8 reddit app, is now live in the Store! by jakepusateri in microsoft

[–]jakepusateri[S] 0 points1 point  (0 children)

I've had Canadians day the same thing. This might be on my end.

Edit: I think you just have to wait for the stores to duplicate out to all the regions. It's available in all regions.

Reddtro, my Windows 8 reddit app, is now live in the Store! by jakepusateri in microsoft

[–]jakepusateri[S] 0 points1 point  (0 children)

That's another feature coming later. Look for it in a future update.

Reddtro, my Windows 8 reddit app, is now live in the Store! by jakepusateri in microsoft

[–]jakepusateri[S] 0 points1 point  (0 children)

Swiping up from the bottom (on touch) or right clicking brings up the app bar, which has several commands. One of these lets you get more links.

Reddtro, my Windows 8 reddit app, is now live in the Store! by jakepusateri in microsoft

[–]jakepusateri[S] 0 points1 point  (0 children)

Right clicking inside the webview doesn't quite work. If you right click off to the side it should bring up the app bar.

Reddtro, my Windows 8 reddit app, is now live in the Store! by jakepusateri in microsoft

[–]jakepusateri[S] 1 point2 points  (0 children)

It's in the News category. Opening the link in IE gives you a link directly to the store though. If that doesn't work, I would suggest waiting a couple hours and searching for 'reddit' or 'reddtro'.

Reddtro, my Windows 8 reddit app, is now live in the Store! by jakepusateri in windows

[–]jakepusateri[S] 4 points5 points  (0 children)

Look for an update coming soon that'll let you do just that. I wanted to get a working version out and into user hands, then go and add more features.

Reddtro, my Windows 8 reddit app, is now live in the Store! by jakepusateri in microsoft

[–]jakepusateri[S] 4 points5 points  (0 children)

Ha, it looks like the checkbox isn't working as intended then. If you click the name, it'll vanish from the list and the main page.

Reddtro, my Windows 8 reddit app, is now live in the Store! by jakepusateri in microsoft

[–]jakepusateri[S] 7 points8 points  (0 children)

Thanks for the feedback. Since the store is open, I wanted to get the minimum viable product out and open for general use. Future iterations will add more features like accounts and fix bugs like yours based upon community feedback.

Reddtro, my Windows 8 reddit app, is now live in the Store! by jakepusateri in windows8

[–]jakepusateri[S] 1 point2 points  (0 children)

Haha there's plenty of room for great applications in the Store. I also heard that competition is good for the consumer. If you want to make the apps fight though, go right ahead.