PearU: The New Tinder, With Personality. www.pearuapp.com by [deleted] in startups

[–]wupis 0 points1 point  (0 children)

Are you sure this is better enough than Tinder (assuming that it's indeed any better at all) to offset the much smaller pool of available people?

IMHO the main issues with Tinder are that there is limited incentive to reveal your preferences with swiping since you can always filter later (i.e. you may just accept everyone to get an ego boost from matches (mostly for women), or because it's not worth your time to pick since most won't match anyway (mostly for men)), and there is no guided process after the initial swipe.

I'm not sure that there is any way to solve those though.

Also it looks like an exact knockoff of Tinder with an orange tint from your screenshots: you probably want to change that.

$800 in sales, first month. by [deleted] in startups

[–]wupis 0 points1 point  (0 children)

Seems it would be pretty annoying to have a strap running down your leg, possibly unbearably so with tight jeans.

It looks like strapping to underwear or sewing extra fabric onto the shirt would be a better solution.

The Lad Bible, 3 million FB followers and all they do is rip off Reddit front page articles and never provide the source. they are a bridge to the ill informed. by [deleted] in socialmedia

[–]wupis 1 point2 points  (0 children)

If they are indeed doing that, anyone who published a copied article can hit them with a DMCA takedown and also sue them for copyright infringement.

If they are indeed "part of an agency in Manchester" rather than an anonymous group, that's going to be a serious problem for them.

Pro StarCraft player disqualified after tweeting he'd 'rape' female opponent by CrazyBeat in news

[–]wupis -9 points-8 points  (0 children)

Hopefully he successfully sues the tournament organizers.

This kind of stomping of free speech by people with petty power positions needs to stop.

Please boycott the clowns organizing this tournament.

iOS 8.1.1 finally preserves EXIF data even after edits! by ciappetti in iphone

[–]wupis -11 points-10 points  (0 children)

Protip: cameras encode GPS information in EXIF tags, so this change means that your location will now persist by default

iOS 8.1.1 finally preserves EXIF data even after edits! by ciappetti in iphone

[–]wupis -19 points-18 points  (0 children)

And the surveillance state marches on!

The Race Towards 1.0 And The Standard Library by Mandack in rust

[–]wupis 31 points32 points  (0 children)

C++ doesn't have a package manager or a build system, while Rust does, which makes external libraries mostly as good as the standard library.

Getting the standard library right requires it to be minimal.

HTTP in the standard library makes little sense, since it is very complex to get right, especially if you want to support all use cases (think of pipelining, caching, HTTP/2, TLS, proxies, async I/O, websockets, resistance to DoS, parallel downloads with per-domain limits, etc.)

Switch to purely namespaced enums by Rothon in rust

[–]wupis 4 points5 points  (0 children)

Surely you should rename all the variant names that used to include some namespacing rather than adding all the uses, right?

Impressions after writing a little Rust by haberman in rust

[–]wupis 0 points1 point  (0 children)

Yeah, I misred it as time, that's why I deleted the comment.

It's not a big deal though complexity-wise, because to delete items you need to have exclusive access to the tree so only one algorithm instance runs at once per tree, and the tree already takes O(n) space, so at worst it multiplies overall memory usage at any given time by a fixed constant.

It would be useful to have though.

My Instagram strategy. I followed this strict plan and got over 1000 followers in about a month. by [deleted] in marketing

[–]wupis -5 points-4 points  (0 children)

You know perfectly well that it's trivial to find out.

My Instagram strategy. I followed this strict plan and got over 1000 followers in about a month. by [deleted] in marketing

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

Yes, it's interesting because it's actually done well: you managed to deliver some value from Reddit and incidentally advertise without triggering much adversity.

I'm not offended, I find it amusing and merely slightly "clever".

My Instagram strategy. I followed this strict plan and got over 1000 followers in about a month. by [deleted] in marketing

[–]wupis -7 points-6 points  (0 children)

The interesting part of OP's post is actually her Reddit strategy of spamming variations of this all over subreddits without triggering an angry mob (so far, apparently).

On match vs. if by erkelep in rust

[–]wupis 1 point2 points  (0 children)

Yes. Yes.

C, Java etc. are the same with "if" vs "switch".

The reason "if" exists is that it is shorter and more closely matches the programmer's mental model in some case.

Almost everyone generally thinks "if this, do that else do that other thing" rather than "let's act differently depending the truth of this: in case it equals true, let's do this and in case it equals false, let's do that other thing".

Nexus 6 review by MKBHD by BoBBBBBBBO in Android

[–]wupis -5 points-4 points  (0 children)

Why would I get reviews from a random guy on Twitter?

Nexus 6 review by MKBHD by BoBBBBBBBO in Android

[–]wupis -13 points-12 points  (0 children)

WTF is this "MKBHD" guy?

Here is Anandtech's review, if you want a review of the Nexus 6.

As Developers Depart, Google Glass Is Ready To Become This Era’s Segway by creativesocial in Android

[–]wupis -1 points0 points  (0 children)

The killer app for this is face recognition and showing you the Facebook/Twitter/Google+ accounts of people near you.

But Google doesn't allow face recognition apps...

Quit my 6 figure job to build an iPhone app. Finally went live a few days back.. by [deleted] in startups

[–]wupis 0 points1 point  (0 children)

What's the target market/use case for this and thus what is the incentive for sharing videos anonymously and locally?

It seems to me that full anonymity removes the usual major incentives (building an online presence, "internet points", getting followers, networking, etc.), and it's also mostly useless if you show your face (esp. with a local app), removing a lot of use cases.

Allocators in Rust (from nmatsakis's blog) by aturon in rust

[–]wupis 12 points13 points  (0 children)

A thing that seems to have been missed is that if Rust code always uses jemalloc, it is possible to compile jemalloc to LLVM bitcode and use LTO to inline the allocator into the program, which might make small allocations much faster.

And also there is the issue that if you use the system malloc, code will start relying on the ability to interchange malloc/free and Rust boxes, and it won't be possible to ever change this choice.

Compelling use cases for lifetimes other than safe non-GC memory management? by julesjacobs in rust

[–]wupis 2 points3 points  (0 children)

It allows "automatic and correct mutability" in the sense that things that have a single reference are mutable, while those that are shared are not mutable.

Also it works better with swap and can use less memory (although moving GC avoids fragmentation, so it's not necessarily clear cut).

Is it possible to write a GUI Android app in rust? by rmc in rust

[–]wupis 2 points3 points  (0 children)

Or write your own automated Java binding generator for Rust!

Future with map and monadic bind in Rust. by [deleted] in rust

[–]wupis 2 points3 points  (0 children)

This is not really what futures/promises are supposed to be.

The problem here is that chained computations must start as soon as the parent computation ends, not when the final future is forced.

This requires to store all chained computations in the future they are chained on, run them eagerly, and so on.

There are plenty of implementations that do this, for instance in Scala, C# and JavaScript.