Hacker Newsnew | past | comments | ask | show | jobs | submit | caffeineninja's commentslogin

They also treat newlines (\n) in the XML payload as an invalid character for <airquotes> security reasons </airquotes>. Authorize.net is an antiquated company that is slowly disappearing, having lost the race versus Bluesnap and Braintree, just to name a couple of providers in the field.

Good riddance.


As someone living/fighting through the performance degradation that the kernel patches have done to IO loads at AWS, I'm wondering if their Xen patches have had this or may include it in the future.

Would really really rather that there were no more negative changes.


Some of the hypervisor fixes were dependent on the new microcode


We run 1.5 million messages per minute through our NSQ framework and we're starting to run into architectural limitations i.r.t to the number of workers in each producer/consumer pool, and are now testing/benchmarking Kafka in our staging environment.


I think the biggest question is, do you think its feasible to directly start with Kafka instead of NSQ or does Kafka just require a much stronger/larger team to operate than NSQ?


We debated the same question and went with NSQ for now. We might need some of the guarantees that Kafka makes in the longterm or for some specific use cases, but for a no thrills distributed messaging platform that is incredibly simple to operate at scale, NSQ is pretty fantastic.

Building client libraries is also a joy. I blogged about it a bit here: https://product.reverb.com/how-to-write-an-nsq-consumer-in-g...


Nice one! Just as a info, I wrapped producer/consumer in a pkg https://github.com/rafaeljesus/nsq-event-bus also it exposes request-reply/rpc like


Kafka and NSQ have widely variant promises around things like durability, order, etc.

In most use cases you can get NSQ like behavior out of Kafka and the inverse isn't true. Kafka's performance and added gaurantees come at the expense of being harder to operate.


Can someone summarize the promises? Specifically, would NSQ work well as an easier-to-operate, Kafka alternative, or are there low-throughput use cases it's just not suitable for?


People tend to talk about Kafka in the same conversations as messaging systems because it can support messaging use cases, but that leads to a mental model of what Kafka is (and conversely what messaging systems tend to be) that is incorrect.

Its better to think of Kafka as a distributed log service than a messaging broker. When described this way, don't think log as in "the things humans look at to debug applications coming out of stdout" but "the things machines look at as a storage data structure". Think the write ahead log in a database and not printf statements.

What this means is that under the covers Kafka is a bunch of ordered files being written to by producers. Consumers can specify where in the log they want to start consuming from and then "tail" the log once they are caught up. The architecture is also such that consumers are very light weight (a tcp/ip connection and an offset in the log). This also makes trivial things like the "late joiner" problem in messaging systems and durability. Kafka then layers on high availability and consistency configurations that mean that you can be sure that your published log entries are 1) stored on multiple machines and 2) ordered the same for everyone. The combination of those 2 things is very powerful and makes reasoning about distributed systems application data much simpler. There are also certain classes of problems that need to be solved with those promises, namely things that are not idempotent.

NSQ is a much more traditional buffered messaging system. It has file durability but only as a) an optimization to prevent message loss once memory runs out and b) as a consumer archive. But a hard loss of a node means that those messages that have not been delivered can be lost as there is no promise they are published somewhere else. Further, there is no promise that the order of messages published to a topic and channel is the order of messages received by the consumer. Dealing with late joiners is an application level concern as is archive and replication.

That said, Kafka is complicated. I think its complicated because its solving a complicated problem not because its poorly factored (though I'd love it if they built the consensus stuff in directly and removed the zookeeper dependency).

NSQ isn't complicated and is easy to operate. If your problem set falls into a more traditional messaging domain that fits the NSQ model, you are almost certainly better off with it, but you can likely use Kafka also. If your problem set falls into the write ahead log model, you can't use NSQ (without massive application level logic) but you can use Kafka.


That's a great comparison, thank you. Basically, the "log structure vs in-memory queue" distinction at the start crystallizes the differences, thanks for the reply.


NSQ has been (IMO) far far easier to operate than Kafka has been. With Kafka you need a Zookeeper cluster in addition to your Kafka brokers. Not to mention developing against NSQ is pretty simple whereas Kafka you need to think about partitions and offsets.

If you're worried about data loss, Kakfa can be what you're looking for (but takes a lot to learn how to operate it correctly).


I see, thank you. Honestly, NSQ sounds like a really good solution for 99% of use cases.


I think it's less about throughput and more about durability guarantees. Kafka producers can specify the number of 'acks' (brokers which have written the message to disk) when they produce a message and the request will only return successfully if that can be done.


I see, thank you. Can't NSQ do that, or at least get probabilistically close to it with multiple nodes (i.e. doesn't having more nodes reduce the probability of data loss)?


Absolutely, but you can't rely on it to be persistent like Kafka. We use it extensively and are incredibly happy with it, but we follow best practices around not putting state in messages, making changes idempotent, and ensuring that we can always replay a message if needed.

We've yet to lose any messages in production, but it could happen and we're okay with the tradeoffs between that and the operational complexity of kafka.


Yeah, at-least-once is definitely the way to go, sounds like you've got a good architecture around that.

Another nice thing I've heard with Kafka is that it can store all messages since the beginning of time (if you want) and you can replay them to retrieve all your MQ-related state. Does NSQ do that, do you know?


NSQ does nothing like this out of the box. You could create a channel for each topic that accumulates messages, but those messages would not be distributed across the cluster and after consuming them once they would be effectively gone. If that feature is a hard requirement NSQ wouldn't fit your use case.


I see, thank you. I'm a bit confused by "after consuming them once they would be effectively gone". Surely NSQ supports more than one subscribers, and won't remove messages after they've been delivered to a single client?


It supports more than one subscriber as long as you have a separate channel for each. But if the channel gets created after some messages have been delivered, they will not be delivered to the new channel, only the messages after that.

To do replay with nsq (one way is) you'd attach their file consumer to its own channel as the first operation on a topic. Then in application code you'd need to read from that file whenever you need to do a replay (and you'd need to know when/where to read from/to).


That makes sense, thank you.


With NSQ there is a built in utility nsq_to_file which just becomes one additional consumer you'd use to archive each message topic to disk. It provides dead simple archiving of messages, but doesn't provide any native replay ability.


If you are starting off just use what you/the team is comfortable with. I mean, unless you think you will need capacity for over 25,000 messages per second.


25k messages total, or per second?


Thanks. Fixed.


Kafka is much harder to operate in a production environment, I would only start there if you have a specific reason to.


AWS has recommended for us to move back to i2s. Geez, thanks


Something to think about: chess notation is 1-8 and a-f., with a1 on the bottom left and h8 on the upper right.

https://upload.wikimedia.org/wikipedia/commons/d/d5/Scholars...


This JS instantiates a marker at these coordinates:

this.markers = [{ lat: -28.092472, lng: -52.419667 }];

which points to a field in southern Brazil. Anyone wanna go see what's there? :)

https://www.google.com/maps/place/28%C2%B005'32.9%22S+52%C2%...


Enter the lat/long as your first answer on savethedate.foo, it links to an unlisted youtube video: https://www.youtube.com/watch?v=9N9K898TtWQ&feature=youtu.be...

Turn on closed captions and help me figure out the next step.


Magic I. See _ a beach, -yes. _ I explore daylight

working on it now


I think "you can always count on a good time at the beach" refers to actual counting.

And here's the transcript, with some numbers:

    0:00Magic
    0:03I.
    0:06See
    0:10_
    0:12a
    0:16beach,
    0:19-yes.
    0:21_
    0:25I
    0:28explore
    0:30daylight


I believe:

latitude: MagicI.See_abeach, longitude: -yes._Iexploredaylight

Not sure what the encoding is. I've tried the "letter to number" encryption which gives:

13 1 7 9 3 9.19 5 5 1 2 5 1 3 8, 25 5 19.9 5 24 16 12 15 18 5 4 1 25 12 9 7 8 20

Simply adding the numbers, grouped before + after decimal point leads to:

42.2920, -49.120

but this isn't the correct answer


its lat,lng with the . representing the decimal point


Count the characters in each word, _ means 0


That takes us to this[1] Google doc with this embedded video[2]

[1] https://docs.google.com/presentation/d/11uA9a5wgoY9w9vOyx3C7...

[2] https://www.youtube.com/watch?v=B8uV0dCTKrE


The "Transmission" video is using TunesToTube.com.

It is a bunch of numbers being recited (though I don't know the significance of the static image):

"053 050 046 049 056 050 049 044 032 050 048 046 057 057 054 053" It then pauses and repeats for exactly 5 minutes.

Translated (by others in this thread), it turns into 52.1821, 20.9965, which brings you to the number 18, in Poland. It also links to this Google Drive folder titled "Latest Discoveries":

https://drive.google.com/drive/folders/0B2BGioksxQiRc2hpTDJ1...

This has a few photos of statues of the Buddha and a couple of temples. I find the photo that looks corrupted the most interesting, as I think there is data hidden in there (similar to 4chan.js if you've ever heard of that).

The file names of the photos are shrine.jpg, statue.jpg, spire.jpg, pillar.jpg, and cave.jpg.


The owner is named G Marconi maybe after Guglielmo Marconi

https://en.wikipedia.org/wiki/Guglielmo_Marconi


The doc with video gives us numbers:

053 050 046 049056050049044032050048046057057054053

These represent the ascii codepoints of the next lat/long.


I recognized that right away, and tried entering in the number, but it didn't seem to like it.

Edit: Had an extra number in it. Oops.


"52.1821, 20.9965"

points to poland (18 on the map)

hint url here is https://drive.google.com/drive/folders/0B2BGioksxQiRc2hpTDJ1...


51.3015, -3.0178


Ahh thanks. Any idea on the next one? :P

EDIT: Nevermind 3 should be easy for most HNers. Wrote that before I even saw it.


There is an hexadecimal block hidden in caves.jpg:

4e 75 6d 62 65 72 73 20 61 72 65 20 61 6d 61 7a 69 6e 67 2e 20 46 6f 6c 6c 6f 77 20 74 68 65 20 63 6f 75 6e 74 2e 0d 0a 0d 0a 0d 0a 20 20 56 20 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 0d 0a 3e 20 31 20 20 37 20 20 38 20 20 35 20 20 34 20 20 31 30 20 31 20 20 32 20 20 36 20 20 33 20 20 36 20 20 31 2e 20 39 7c 0d 0a 20 7c 34 2e 20 32 20 20 39 20 20 34 20 20 32 20 20 37 20 20 39 20 20 38 20 20 35 20 20 36 20 20 35 20 20 32 20 20 37 7c 0d 0a 20 7c 34 20 20 31 30 20 39 20 20 37 20 20 34 20 20 32 20 20 35 20 20 39 20 20 36 20 20 38 20 20 31 30 20 37 20 20 39 7c 0d 0a 20 7c 38 20 20 35 20 20 33 20 20 35 20 20 33 20 20 35 20 20 34 20 20 37 20 20 32 20 20 39 20 20 36 20 20 31 20 20 38 7c 0d 0a 20 7c 32 20 20 37 20 20 31 20 20 33 20 20 34 20 20 31 20 20 35 20 20 38 20 20 34 20 20 39 20 20 38 20 20 38 20 20 33 7c 0d 0a 20 7c 36 20 20 31 20 20 39 20 20 34 20 20 35 20 20 35 20 20 37 20 20 33 20 20 31 20 20 32 20 20 36 20 20 31 30 20 34 7c 0d 0a 20 7c 31 30 20 38 20 20 37 20 20 31 20 20 32 20 20 34 20 20 35 20 20 38 20 20 32 20 20 35 20 20 37 20 20 39 20 20 31 7c 0d 0a 20 7c 32 20 20 33 20 20 35 20 20 37 20 20 31 20 20 34 20 20 36 20 20 39 20 20 35 20 20 33 20 20 34 20 20 35 20 20 36 7c 0d 0a 20 7c 39 20 20 31 20 20 34 20 20 34 20 20 38 20 20 33 20 20 37 20 20 36 20 20 32 20 20 35 20 20 31 20 20 36 20 20 37 7c 0d 0a 20 7c 32 20 20 31 20 20 39 20 20 33 20 20 37 20 20 34 20 20 35 20 20 37 20 20 33 20 20 36 20 20 38 20 20 37 20 20 38 7c 0d 0a 20 7c 38 20 20 33 20 20 38 20 20 35 20 20 38 20 20 34 20 20 36 20 20 31 20 20 35 20 20 39 20 20 31 2c 20 31 30 20 36 7c 0d 0a 20 7c 36 20 20 33 20 20 35 20 20 37 20 20 37 20 20 31 20 20 31 30 20 34 20 20 38 20 20 36 20 20 33 20 20 35 20 20 39 20 3e 0d 0a 20 20 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 76 0d 0a

  Numbers are amazing. Follow the count.

    V -----------------------------------
  > 1  7  8  5  4  10 1  2  6  3  6  1. 9|
   |4. 2  9  4  2  7  9  8  5  6  5  2  7|
   |4  10 9  7  4  2  5  9  6  8  10 7  9|
   |8  5  3  5  3  5  4  7  2  9  6  1  8|
   |2  7  1  3  4  1  5  8  4  9  8  8  3|
   |6  1  9  4  5  5  7  3  1  2  6  10 4|
   |10 8  7  1  2  4  5  8  2  5  7  9  1|
   |2  3  5  7  1  4  6  9  5  3  4  5  6|
   |9  1  4  4  8  3  7  6  2  5  1  6  7|
   |2  1  9  3  7  4  5  7  3  6  8  7  8|
   |8  3  8  5  8  4  6  1  5  9  1, 10 6|
   |6  3  5  7  7  1  10 4  8  6  3  5  9 >
    ------------------------------------v


Here is better format:

  Numbers are amazing. Follow the count.

    V -----------------------------------
  > 1  7  8  5  4  10 1  2  6  3  6  1. 9|
   |4. 2  9  4  2  7  9  8  5  6  5  2  7|
   |4  10 9  7  4  2  5  9  6  8  10 7  9|
   |8  5  3  5  3  5  4  7  2  9  6  1  8|
   |2  7  1  3  4  1  5  8  4  9  8  8  3|
   |6  1  9  4  5  5  7  3  1  2  6  10 4|
   |10 8  7  1  2  4  5  8  2  5  7  9  1|
   |2  3  5  7  1  4  6  9  5  3  4  5  6|
   |9  1  4  4  8  3  7  6  2  5  1  6  7|
   |2  1  9  3  7  4  5  7  3  6  8  7  8|
   |8  3  8  5  8  4  6  1  5  9  1, 10 6|
   |6  3  5  7  7  1  10 4  8  6  3  5  9 >
    ------------------------------------v


14.2981, 101.2189

Start from top-left, move the number of spaces given by the number of your current square:

down right left down right right up down down right down

It's a maze; worked backwards from the numbers that have commas and points next to them.

Number: 19; Title: Thailand https://photos.google.com/share/AF1QipMNGiEkdfeZKK5uus5iOmt-...


Image name is base64 encoded: V2hlcmUgaGF2ZSB5b3UgYmVlbj8 = Where have you been?

So, maybe where the chess pieces have been moved from?


This has been bugging me for days...trying to figure out how you knew to go down, right, left, etc. I finally figured it out.

Start at the end. That's a 9. The only way that we could have landed on that 9 is either moving down or right. So, look at each number on that path and see which one would have got us there. There is an 8 that is 8 squares above 9, so that's the second last number. Now, how did we land on the 8? There is a 1 that is one square to the left, so the next number is 1. And so on.


It looks like the king on the white side is sitting dead on the side?


I cannot reply the sibling comments yet, but "where have you been?" could refer to where we were for the past 4 clues: 5 - Brazil, 17 - England, 18 - Poland, 19 - Thailand


V2hlcmUgaGF2ZSB5b3UgYmVlbj8

base64 decode "Where have you been?"


Damn I was going to bed before I found this. Now I need to solve it. Did anyone solve the chess board?

I feel the pawns on the left are somehow significant 4-3-2-1...


Can someone confirm what chess pieces are on the board? It looks like black has knight, rook, king and white has rook and queen?


How did you figure out the directions? (i.e. down, right, left...)


we should concentrate on the numbers in the board


Here's the caves.jpg fixed:

http://imgur.com/a/WBqiL



Number maze. Move East and South. Possibly along the lines of 1, 2, 3... haven't quite solved the meaning of moving through the maze yet.


looks like a maze which shows you where to enter and leave. must not cross your own path, and the .s and , would work well in creating a geolocation


number paths wrap down and right...first move down and right 1 step, then down and right 2 steps...?


should we play the chess and use the moves as an entering point ?


All you need to do is sum up the numbers on each row/column. Horizontal will produce the latitude (except after the 1,), and vertical will produce the longitude.


I think for the chess game we have the play the game backwards.. I am trying to play the game forward, but not clear what is the delineation for the comma or period in the lat lon.. maybe black can put white into check?


Hint: it can't be a valid game since one of the kings has been removed. :-)


So you have 12 groups of numbers, two with decimals, one with a comma. Just need to figure out where to put them. :)



FBMD01 000a 9c0d0000 ec4f0000 55df0000 b5e80000 fcfa0000 5cb20100 13ef0200 69fc0200 3d110300 942b0300 b0ce0500

Is the converted meta data for facebook


Special instructions: FBMD01000a9c0d0000ec4f000055df0000b5e80000fcfa00005cb2010013ef020069fc02003d110300942b0300b0ce0500


it looks like a grid where you enter from the top left (>) and exit to the bottom right (>).


There are two numbers with dots after them as well as one with a comma. Any ideas?


Numbers up to the first decimal add up to 54, which feels navigationey...


Numbers after the comma add up to 90.


so the images have been uploaded to facebook ? I wonder why google do this


The page says 18?


the numbers when sum up should represent a location at the map


Here's 4: https://drive.google.com/drive/folders/0B2BGioksxQiRc2hpTDJ1...

Looks like caves.jpg has something wrong with it, but I'm not sure what to do with it.



Interesting: the author of the image is "Pei Xiu"

Pei Xiu (224–271)... was a minister, geographer, and cartographer of the state of Cao Wei during the Three Kingdoms period of Chinese history

https://en.wikipedia.org/wiki/Pei_Xiu


Okay, for four open caves.jpg in Notepad. Inside is some hex:

4e 75 6d 62 65 72 73 20 61 72 65 20 61 6d 61 7a 69 6e 67 2e 20 46 6f 6c 6c 6f 77 20 74 68 65 20 63 6f 75 6e 74 2e 0d 0a 0d 0a 0d 0a 20 20 56 20 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 0d 0a 3e 20 31 20 20 37 20 20 38 20 20 35 20 20 34 20 20 31 30 20 31 20 20 32 20 20 36 20 20 33 20 20 36 20 20 31 2e 20 39 7c 0d 0a 20 7c 34 2e 20 32 20 20 39 20 20 34 20 20 32 20 20 37 20 20 39 20 20 38 20 20 35 20 20 36 20 20 35 20 20 32 20 20 37 7c 0d 0a 20 7c 34 20 20 31 30 20 39 20 20 37 20 20 34 20 20 32 20 20 35 20 20 39 20 20 36 20 20 38 20 20 31 30 20 37 20 20 39 7c 0d 0a 20 7c 38 20 20 35 20 20 33 20 20 35 20 20 33 20 20 35 20 20 34 20 20 37 20 20 32 20 20 39 20 20 36 20 20 31 20 20 38 7c 0d 0a 20 7c 32 20 20 37 20 20 31 20 20 33 20 20 34 20 20 31 20 20 35 20 20 38 20 20 34 20 20 39 20 20 38 20 20 38 20 20 33 7c 0d 0a 20 7c 36 20 20 31 20 20 39 20 20 34 20 20 35 20 20 35 20 20 37 20 20 33 20 20 31 20 20 32 20 20 36 20 20 31 30 20 34 7c 0d 0a 20 7c 31 30 20 38 20 20 37 20 20 31 20 20 32 20 20 34 20 20 35 20 20 38 20 20 32 20 20 35 20 20 37 20 20 39 20 20 31 7c 0d 0a 20 7c 32 20 20 33 20 20 35 20 20 37 20 20 31 20 20 34 20 20 36 20 20 39 20 20 35 20 20 33 20 20 34 20 20 35 20 20 36 7c 0d 0a 20 7c 39 20 20 31 20 20 34 20 20 34 20 20 38 20 20 33 20 20 37 20 20 36 20 20 32 20 20 35 20 20 31 20 20 36 20 20 37 7c 0d 0a 20 7c 32 20 20 31 20 20 39 20 20 33 20 20 37 20 20 34 20 20 35 20 20 37 20 20 33 20 20 36 20 20 38 20 20 37 20 20 38 7c 0d 0a 20 7c 38 20 20 33 20 20 38 20 20 35 20 20 38 20 20 34 20 20 36 20 20 31 20 20 35 20 20 39 20 20 31 2c 20 31 30 20 36 7c 0d 0a 20 7c 36 20 20 33 20 20 35 20 20 37 20 20 37 20 20 31 20 20 31 30 20 34 20 20 38 20 20 36 20 20 33 20 20 35 20 20 39 20 3e 0d 0a 20 20 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 76 0d 0a

Convert it to a string and you get:

??Numbers are amazing. Follow the count.

  V -----------------------------------
> 1 7 8 5 4 10 1 2 6 3 6 1. 9|

|4. 2 9 4 2 7 9 8 5 6 5 2 7|

|4 10 9 7 4 2 5 9 6 8 10 7 9|

|8 5 3 5 3 5 4 7 2 9 6 1 8|

|2 7 1 3 4 1 5 8 4 9 8 8 3|

|6 1 9 4 5 5 7 3 1 2 6 10 4|

|10 8 7 1 2 4 5 8 2 5 7 9 1|

|2 3 5 7 1 4 6 9 5 3 4 5 6|

|9 1 4 4 8 3 7 6 2 5 1 6 7|

|2 1 9 3 7 4 5 7 3 6 8 7 8|

|8 3 8 5 8 4 6 1 5 9 1, 10 6|

|6 3 5 7 7 1 10 4 8 6 3 5 9 >

  ------------------------------------v


14.2981, 101.2189 Start from top: down right left down right right up down down right down It's a maze; worked backwards from the numbers that have commas and points next to them. Number: 19; Title: Thailand https://drive.google.com/drive/folders/0B2BGioksxQiRc2hpTDJ1...


its not showing the best here but > and < are pointing into #1 in top left and away from 9 bottom right maybe a clue?

Pei Xiu outlined six principles that should be observed when creating a map. He then defended his position and each of the six principles with a short explanation as to how they provide better accuracy in map-making and cartography. The first three principles outlined the use of scale (fan lu), direction (zhunwang), and road distance (daoli), while the last three principles are used to properly calculate distances on uneven terrain as represented on a flat, two dimensional map


ah interesting...like a maze! if we get a count from somewhere, we hop that many steps, and you end up at the exit at the bottom right.


Ascii 7 bit encoding - 52.1821, 20.9965


Using this thread to say that the page names may mean something, but I didn't notice initially.

5 -

17 -

18 - Poland


5 - Brazil 17 - England 18 - Poland


should we count the numbers or something ?


Is the caves.jpg broken for everyone?


the caves has instructions in the metadata FBMD01000a9c0d0000ec4f000055df0000b5e80000fcfa00005cb2010013ef020069fc02003d110300942b0300b0ce0500



It shows a 17 on the page. Just a note.


So far: 5 - Brazil, 17 - England, 18 - Poland


caves.jpg is broken for me too. I'm on mobile - has anyone checked the JPG metadata?


Yep


checked out caves.jpg with a hex editor, i'm thinking the next clue is embedded in the jpeg, which is causing the corruption


yes the image is broken


51.3015,-3.0178


What's the red thing in the upper-left?


I was thinking maybe it was part of a chip bag. Then you could run that fancy subpixel-motion sound extraction algorithm on it pretty easily (fitting with "See What Cannot Be Heard").

But the timecodes are probably a more likely thing...


Looks like a Maoam wrapper (type of sweet)


Same boat. My head hurts. Red Herring: there are 5 punctuations in the sentence


Possibly related to the big '5' that appears on the savethedate.foo site after entering the latlong?

If you take out the other text, we're left with "._,-.-". Removing the comma leaves us with 5 characters "._-.-" Morse code?


From the description:

>You can always count on a good time at the beach...


Video appears to be at least 50% speed :)


The image is did not produce anything on google image search.

magic I. See_abeach,-yes.-I explore daylight


There is muffled audio at the end of the video. What is it from? That's a clue.


It sounds like the surf to me.


The crop circle after the first clue also shows us a number: '5'


That might not be a clue. It's 5 puzzles, so maybe it's just counting down 5,4,3,2,1.

EDIT: Haha, oops, nevermind.


There's a road on the right hand side - you can see cars driving by.


Google Developers watermark pops up at 0:20 in the video.


That's not part of the video itself though, it's just the usual branding watermark shown by YouTube. https://support.google.com/youtube/answer/6147757?hl=en

It probably appears in all videos on the Google Developer channel.


What format do you input?


Is there a specific way you inputed the latitude and longitude?


MagicI.See_abeach,-yes._Iexploredaylight

we need to convert these to numbers to get the lat/lon of this location.


13 1 7 9 3 9.19 5 5 1 2 5 1 3 8, 25 5 19.9 5 24 16 12 15 18 5 4 1 25 12 9 7 8 20


any idea why "-28.092472,-52.419667" would not work? does it need special formatting, or is my firefox incompatible?

EDIT: thanks, the adblocker was the issue.


same issue on chrome, so not a firefox thing. I think we're missing something


it could be your adblock whatever plugin you use to disable trackers


that was it! thanks!


Great write up. There needs to be more mobile development writeups like this, they aren't popular compared to, say, developing something functional in a backend language such as Go, Node or Python that HN seems to love.


Life360 | On-site/Full Time | San Francisco, CA

Life360 is the largest family network in the world. Our 150 million users make up approximately 50 million families, with a million new families added just last month. Our APIs process over 800 million location points a day, so we have plenty of traffic to play with.

We're looking for sharp senior-level Platform engineers.

You:

* Code polyglot: we primarily use Python, Go and PHP

* Healthy experience with scale; thousands of requests a second don't make you sweat

* Excellent understanding of data stores, distributed systems, data modeling and their associated pitfalls.

* Play a key role in the product development cycle

* Lead technical architecture discussions and review technical plans

Perks:

* Competitive pay, equity and health insurance

* Free snacks, drinks, and food in the office

* Flexible in-office hours and vacation time

* $200 a month for transit and health

https://www.jsco.re/8rf-


It's probably the hardware bruteforce unlock that's been floating around for about a year:

Example: http://blog.mdsec.co.uk/2015/03/bruteforcing-ios-screenlock....


The article mentions the device might be exploiting CVE-2014-4451, which was fixed in iOS 8.1.1.


Nope, that's not working anymore since iOS 8.2


Written exactly like someone who visited SF from NYC for a few days. The pen is dripping with poison and vitriol.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: