Search the Community
Showing results for '길음역텍사스위치오라 카이 인사동 스위츠[Talk:Za31]모든 요구 사항 충족'.
Found 27286 results
-
How do you know the other cacher's "better coordinates" are "spot on"? How could your coordinates be typically 80 feet off and you not know there's a problem until you hide a cache? Many GPSs have magnetic compass sensors which you can calibrate to see better compass directions. You don't calibrate coordinates. Can you get together with the other cacher and get some pointers? There seems to be a disconnect where you're having trouble with coordinates. Maybe entering them, or maybe with some setting that could be changed. I try to talk people out of the "Waypoint Averaging" thing. It's best used for specific purposes, and way beyond what is required for "geocaching". It requires a definite plan, a lot of time, and visits to the same spot in various weather conditions, times of day, and seasons. After all that work, all you get is an average of waypoints (go figure). Instead, walk to your chosen waypoint (the cache hiding spot), stand there for a while, take some snapshots (save some waypoints), walk a few yards away, return and see which snapshot is closest. Use those coordinates for the cache. Takes 10 minutes. When you return to place the container, check that selected snapshot again, and see if it's still fine. If so, submit the cache page.
-
I think it's OT, but I kinda agree, though I feel even having the find count on your profile doesn't mean much to many folks. By talk at events, all those graphs, badges, and animations added-on are wasted on most of us here. We remember there was a lengthy period where we'd time-out before all that carp finally loaded. They can look at your stats page if they're that interested (if not already "compared" to on a third-party site)... At a mega event once, before they even asked who I was (the cord was buggin' my neck...), a Lackey asked what my find count was. - So it's possible I guess that "points", no matter how they came by them (and we've seen some examples...) do matter to some.
-
The first rule of platinum membership is you can't talk about platinum membership.
-
The key point is "user-defined" (I know you latched on to 'geocraphic' as the context for that clause though). Anything other than what's HQ-defined. On the DT grid, an explicit shape is a "user defined region". There's also a bookkeeping aspect which I've been cited. Having to keep track of numerous components of a challenge - the fewer the better; a challenge with 3 simplistically defined parameters (x Traditions, y Mysteries, z Multis, for example, or 400 of each D rating, or 30 finds in each corner) is easier than a list of specific matches (all the 15 DT combos required to form this specific shape). A user-defined shape means a list of very specific qualifiers, or a detailed description of qualification 'region', and having to seek out specific qualifiers and keep track of what you've got. That's why I suggested how you describe the challenge could make a HUGE difference. Instead of saying "form an X of a certain number of finds", have a quick math checker that can determine qualification. This is not me saying I'm a fan of decisions based on "user-defined" and "bookkeeping" clauses, but these are what I have been told as reasons ideas like yours are declined. I'm just passing on what I know from experience, whether in agreement or not. Honestly I could potentially see the challenge idea you cited as allowed if worded acceptably in my province. We already have SO many very similar. As long as it doesn't look like a 'pattern' or 'shape' and isn't too difficult to keep track of (bookkeeping), I think my reviewers may allow it. Again though, I'd suggest you talk to your reviewer to find out what they think of the challenge. That's the best way to find out what would be allowed and not, before putting in too much work only to be declined.
-
I think the problem is that you haven't explained a specific problem, only an expression you're unclear on. Has a specific challenge cache idea been denied? It's hard to tell from your original post if you're looking for an opinion, or an explanation. Now that you've explained in more detail what an example challenge is, can you say that that is precisely what you've submitted for review, and it was declined? And that the reason you were given was that "grid art" is not allowed? If so, then the reason is 'user defined regions' (or patterns or shapes) are not allowed. If you want clarity on that point, you should talk to your reviewer. Beyond that, you could only try making adjustments as described in this thread.
-
Has there ever been any talk of creating a app for Waymarking ?? I bet alot more poeple would get into it if there was something quick and easy to use When I am out geocaching I usually forget about waymarks and log them after the fact
-
The best place to discuss the GSAK program is on their own dedicated forums. But, it's also fine to talk about GSAK here, because it's an authorized partner application. As such, the best place on the Geocaching Forums would be the API Forum.
- 1 reply
-
- 3
-
-
Wherigo's zones have static positions. This is usually fine because most zones are tied to specific geographic areas. However, there are times when zones and characters need to be on the move. Almost all the examples I can think about involve catching something: Cops and Robbers - A robber is in his getaway vehicle. You have to catch the vehicle before the robbers get away. Indiana Jones - Remember that scene with the boulder? You're on the trail (you must keep on the trail or you lose) and a boulder comes after you. FTF competition - Someone is already on his/her way to a cache. You have to get to the cache before that other person. While you can use a timer on this, it's fun to see where the other person is, talk with him/her at any time, and affect that person's progress. Metal Gear - A game famous for its protagonist sneaking around guards and infiltration missions. You need to have your enemies moving around for the player to know when to time his/her action--and you don't know when the player will move or how many repetitions it will take. Finding Someone - You might need to find someone walking around a busy park. I have been thinking about this for a while: how can I make some zones imitate real life? I wanted to create a class and structure that would enable anyone to copy my code without knowing how it works and use it in their cartridge. You'd still have to know a little code in order to kick it off, but you most assuredly wouldn't have to know how it works. I have created a first version of what I call the ZoneMover class. Yes, it's as close to OOP lua as I can get, though you have to use a factory method to create an instance. Once copied into a cartridge, all you have to do to get your zone moving is to add something like the following code to your cartridge: --Array of ZoneMovers, if you want more than one going: zoneMovers = { nil } --A list of coordinates to move the zone: pointsToMove = { CreateZMPoint(ZonePoint(36.07674,-79.80593), 1, 1), CreateZMPoint(ZonePoint(36.07670,-79.80473), 10, 1), CreateZMPoint(ZonePoint(36.07764,-79.80464), 10, 1), CreateZMPoint(ZonePoint(36.07751,-79.80224), 20, 1), CreateZMPoint(ZonePoint(36.07408,-79.80254), 10, 1) } --Create the ZoneMover: zoneMovers[0] = CreateZoneMover(zoneMyZone, pointsToMove) --Run it: zoneMovers[0]:Run() The first section creates an array. I added that to this example just to mention you can have an array of ZoneMovers at your beck and call. As many as you want, running for your entertainment. The second section creates an array of ZMPoint objects (Zone Mover Points). This tells the ZoneMover how and where to move the zone. The arguments are as follows: a ZonePoint for the zone's final location, the number of seconds it will take to move the zone to that location, and the number of seconds the ZoneMover should pause before starting to move the zone to the next location. I'm using a shortcut in lua to make an array of ZMPoint objects. You'll also notice I'm using a method call to create the actual ZMPoint object. This is due to how objects have to be created; I'm saving you some steps by having a factory method like this. The third section of the above code shows you how to instantiate a ZoneMover class. Just as with the ZMPoint object, I'm using a method to create the ZoneMover object. The first argument is the zone I want moved and the other is the array of ZMPoints. The final section tells the ZoneMover to start moving the zone. It's possible to pause and resume the ZoneMover at any time. You can also attach events to each ZMPoint so something could happen when the ZoneMover finishes moving the zone to that point. There's even an event you can have executed when the ZoneMover finishes its work. For instance: zoneMovers[0].ZMPoints[4].OnComplete = function() Wherigo.MessageBox{Text=[[I am halfway there!]],} end zoneMovers[0].OnComplete = function() Wherigo.MessageBox{Text=[[Done!]],} end The ZoneMover and Oregons You'll see a problem if you have a ZoneMover active on an Oregon and your player wants to talk to an NPC. The cartridge will slow to a crawl. Because of this, I don't advise using the ZoneMover if your player will be interacting with characters. You can pause the ZoneMover before the player interacts with a character and it should be fine, though. Giving the ZoneMover New Coordinates Once the ZoneMover has been in operation, I've had odd problems with reissuing it a new array of ZMPoints. I have not had time to look into this. The same goes for a problem when telling the ZoneMover to reverse course after it completes all its moves. Implemented Version I implemented the ZoneMover in the cartridge Sadie's BiG Adventure. I open-sourced it so anyone can see the final version. The attachment There are lots of goodies inside the zip file: you'll find lua code, documentation, versions, a demo, and a Windows application I made. All this was created towards the beginning of February, so I don't know what all else is in there (in fact, I wrote the above post on Feb. 3rd and have been waiting to post it). The GeoJones lua script is a demo. You can run and play around with it. The MS Word document and the versions directory show you how I came up with all this. The document was made as I was creating the ZoneMover and explains what I was trying to do in each version and what I was thinking. I did not clean it up. There's good news for those of you thinking, "Geez, that's a lot of typing if I'm going to get a zone to move to a hundred places!" I'm just as lazy as you. That's why I created a ZoneMover Tracklog program. Load your tracklog into MapSource and copy that table of points into MS Excel and save the file. Run this application and click the button (it's your only choice). It will ask for the MS Excel sheet and it will output some lua code to a file. After that, just copy and paste it into your cartridge. I didn't localize the program, so I don't know how it will work for other date formats. Contributions Anyone is welcome to contribute. Currently, I have other projects that need my attention (and geocache logs to write), so I won't be able to come out with updates to requested features or reported bugs for a little while. ZoneMover.zip
-
Who Are The Lurkers? Introduce Yourself.
DARKSIDEDAN replied to Bloencustoms's topic in General geocaching topics
G'Day My Fellow Geocachers, How are you doing on this fine day? I’m DARKSIDEDAN aka Daniel from Canberra, Australia. I love discovering Geocaches, Trackable items and collecting Pathtags. I hope that you all enjoy Geocaching as much as I do. For me geocaching is a way of life. When I am not Geocaching, I am thinking of Geocaching. Here is a little information about me. I have been geocaching since 2015. At the time of this post I have over 6850 finds plus 340 hides. I am the creator of the “Duck Dip” Lab Cache that won 2nd Place for the Australian Capital Territory in the State Vs State - Battle of the Lab Caches at the OzGeoMuster - The Gong Mega 2019 in Wollongong, Australia (GC7N7ZC). Now let’s talk Pathtags. Currently I have over 8000 Pathtags in my collection plus about 500 Etagz. I currently have three of my own Pathtags (45762 / 46950 / 47696) with another one in the works. -
I feel blessed and lucky enough to say, I've been chosen to create one of the 20th anniversary events. I came to the forum to see if anyone has starting to talk about them only to not find much info. So I'll start by saying, I am seeking a little help and guidance on how to pull off a special event like this. I have previously hosted and held events in 4 different states, including my home state of Ohio. The event I will schedule to celebrate this 20th anniv. will take place and be held here in Ohio. Outside of that, tips, ideas and the like on how to make this special for my area would be appreciated. I go by the name Corn-fed and live in the center of that state approx 30 minutes from Columbus.
-
An old hidden container turned into an old geocache
thebruce0 replied to CheekyBrit's topic in General geocaching topics
Not publishing on geocaching.com is determining what is reasonable. If it's not reasonable, it won't be published. They might indicate what should change. If it is published, the reviewer has deemed it is reasonable to publish. What it is not is your strictly literal definition. We will continue to disagree until we agree on the definition of "Date Hidden" in the context of a Geocaching.com listing property. Until then, continue to bang on. No opinions changing, per all the discussion up until now. Already answered that, and as others have said, because most likely a reviewer will recommend making the date the date the container was hidden as a geocache. Oh they make many decisions I may not like. But I make every effort to determine the reason for such a decision. And at worst it comes down to people trying to push the limit so far that they simply have to say "No". Sometimes parents and teachers have to do that with unruly kids. In the case of this website, they make the rules, they define what is allowed. For a "Date Hidden", they have every right to determine what is "reasonable" for their website. Even if I don't like it. But for the record, I don't think 1995 should be allowed either. Because I believe the definition of (and I believe they define) the field is explicitly in the context of a geocache. (psst and if it's not already clear, I also believe that to be reasonable =P) Hey, we agree. No one said you can't talk about how restricting 1995 for whatever reason is a silly reason. But you can't say we can't repeatedly disagree with you = P If you created or owned the sky, or you fundamentally defined "blue" and "green", you'd have every right to say what is or isn't blue and green. Well for the cave, no, because the cache is in the cave. The example was using the actual container as the cache. If that box is the cache, and it's been there since who knows when, then the box itself was hidden way back then, so why not use that year? Why would you say that's not reasonable but 1995 is? Why is it okay to use someone else's box with their placed date because it was a geocache and owned by a geocacher but not the ex-summit log box because it wasn't? These seem to be entirely subjective parameters you're adding to the situation to define "reasonable" in your own opinion. Now if you owned your own geocaching website, you'd have every right to allow that date, define it however you wish, what you believe to be "reasonable" across your website. But HQ owns geocaching.com, and they get to decide what is a reasonable set of parameters for the value of the field. And as described by IceColdUK, pretty much every aspect of the listing is in the context of the geocache. At worst, we can infer by context what is reasonable for the hidden date, before a ruling is made by a reviewer. If you infer something different, well then there's a test - find a way to publish a listing using a container with a relatively extreme Hidden Date by your definition of 'reasonable' that may be in conflict with the argument we're making. Then find out what a reviewer decides. Heck if they say no, you could even take it to appeals and get an official ruling from HQ directly. And even if they still say no to the date that you think is 'reasonable', you would still have every right to believe that HQ is being "unreasonable". Probably won't change much though I think this is what I would do! Such a cool idea Absolutely! I think it would be awesome to find a cache that's actually been there decades, with a very interesting and inspiring story Depending on how much is still tied to that time, it could even get loads of FP recognition. -
An old hidden container turned into an old geocache
funkymunkyzone replied to CheekyBrit's topic in General geocaching topics
And what reason do you think - just your opinion, as a non reviewer like me - a reviewer might come up with for telling said CO they cant use 1995 as the hidden date? Can you think of any solid reason other than upsetting stats hunters? Serious question. Yes a reviewer and HQ can deny publishing, but that doesn't mean it's for a good reason, it's simply that they are in a position to make an arbitrary decision (absolute power over the geocaching.com database) and it doesn't mean we cant talk about it being a silly reason. No one is going to die because of it, either way... The sky is blue. You can say the sky is green - it doesn't matter if you do, but that statement is still untrue. A reviewer can tell me I cant state the sky is blue and I have to say the sky is green. It also doesn't matter, but it's still just as untrue. Whether it is an important data point, doesn't affect whether something is truthful or not. -
GA experiment on inactive owners analysis
coachstahly replied to rragan's topic in General geocaching topics
Do you honestly believe that ALL abandoned caches are caches that qualify people for challenges? You seem to think that everyone caches based on challenges they're working on. Sometimes, contrary to your belief, people wish to pay a cache a visit because it intrigues them, not because it manages to fulfill a challenge. I will sometimes pick a cache to visit because it fulfills a challenge, but only if I am actively thinking about it. Finding caches is only about the numbers if you choose to make it about the numbers. If I have the time, I'll go out of my way to find a multi over any other type of cache. It's not because I want to get to some pre-determined number of multi finds to qualify for a challenge; it's because I generally prefer multis over other types of caches. I'll select non-traditional caches over traditional caches because those are the ones I prefer, not because they fulfill some challenge. I did too but I don't see an issue with this because that's how some players choose to play. Why should we eliminate caches based on the sole factor that they're caches that allow some people to qualify for challenges? What happened to the notion of "To each their own."? There are some who would say eliminate PTs because they're bad for the game, promote throwdowns, take up way too much space, and only provide a +1 to those who go find them. There are some who would say eliminate puzzle caches because they're too hard to solve and they take up space that could be better used for a cache that will actually get visited. There are some who would say eliminate multis because they take up an inordinate amount of space that also prevent many cachers from placing their own caches. There are some who would say eliminate LPCs or GRCs because they're not really "good" caches. That's part of the beauty of geocaching; there's something for everyone and you are the one that gets to determine the manner in which you choose to cache. I'm not a fan of cut and paste logs that tend to talk more about the challenge than they do about the cache they found that helped them meet the challenge. However, I don't get upset that some cachers have chosen to find one of my caches because it happens to fill a hole in a challenge they are working on. There are LOTS of reasons that cachers choose to visit a cache and, contrary to L0ne.R's opinion, it's only about the numbers if a cacher chooses to make it about the numbers. Some do and some don't. I fail to see the harm involved in someone caching that way because it's not how I usually cache, it's how they usually cache. This urge to dissuade finders from caching to fulfill challenges (and instead find nice geocaches in nice locations) seems to be more about a personal pet peeve and the desire to castigate all who choose to cache that way vs. realizing that both types of caching have merit, even if one doesn't like the reasoning behind it. I get it. I really do. I'm not a fan of PTs but I'm not going to tell those COs and those who choose to find them that I think it's in their best interest to stop finding them because it's not really about what geocaching is or that they're finding them because they only care about the +1. So what if they only care about the +1? So what if someone only cares about a certain cache because it fulfills a challenge? That doesn't mean that every cacher who visits that cache has chosen it because it fulfills a challenge or some other number based reason. As it pertains to this particular thread, I understand what they're trying to do but I wonder if it's truly the best way to approach cache quality, if that's truly the motivating factor behind this test policy. If we're looking at just 1.5% (that would mean there are roughly 31,200 caches in GA?) of the caches in GA, then I have to wonder what percentage of caches in GA currently have outstanding NM logs that haven't been addressed by the CO within 30 days (the typical amount of time a reviewer will allow for a disabled cache to be fixed). I would think that percentage would be higher, hence the potential impact to cache quality would be even greater as it would remove caches with unattended NM logs or get those caches fixed by their COs. I understand the reasoning behind this but like someone else has stated, I question that this will noticeably improve the quality of caches that are being found in either of the two states where this is being tested. Sure, it will remove some caches that might be poorly maintained but it will also remove some caches that are just fine as they are, other than the fact that they have absent COs. Eventually, if cachers were to go through the right process, they would get NM logs, then NA logs and then disappear from the listing site as they're archived. I think they'd get more potential benefit from a renewed focus on NM logs, why they're not a bad thing for seekers to file, how they should be approached by the CO (they're not personal attacks but factual comments about their cache status that should be addressed), as well as the follow up procedure of filing a NA log if the CO is unable or unwilling to address the initial NM log that was filed in order to get a reviewer to help get needed maintenance done or remove them from the listings because they're not up to the standards listed within the guidelines. -
Urban Caching: Tips for city Caches?
VRTrooper84 replied to VRTrooper84's topic in General geocaching topics
If you read the above posts... You will see that I'm inquiring about designs specifically for urban landscapes. I personally work as a design and artist, so this aspect of geocaching is what excites me. I've been geocaching for a while now but was working with a friend. Didn't get my own account until recently... So I'd appreciate you all not making assumptions about me based on my stats. Good for you... If you've found more caches than me... But I'm sorry that does not give u the right to talk down to me over a fun GPS game. Like wow... What is wrong with you people? 8f this is what you need to feel superior to other people that's just sad . This is supposed to be a fun game. If other people's responses to my original question were off topic that is not my fault ... it's called conversation... and sometimes its organic. Talking and conversations aren't meant to be policed... and all this policing has effectively KILLED this conversation. How come the people now complaining about bullies and "newbies".. Who are in fact acting like bullies.... Not being policed to stay on topic? This subject is more "off topic" now than people talking to me about their urban caching strategies... Which I THINK has a lot to do with DESIGN. It's called UX. Look it up. Why has my thread turned into a bunch of complaining gate keepers... Literally putting down people new to the game. It's TOXIC. This is really disappointing... And this is why there seems to only be a handful of people who chat on here. It's Cliquey and unhelpful. I will look elsewhere online for a positive and helpful geocache community... I've found some on facebook groups who are WAY NICER to me than anyone on here.. Because whatever this is is LAME, judgemental, Cliquey, toxic culture and gate keeper ish... And geocaching.com should maybe reevaluate some of their mods "dedication" to their "job". My topic of conversation has been officially killed. Thanks a lot guys. -
An old hidden container turned into an old geocache
CheekyBrit replied to CheekyBrit's topic in General geocaching topics
Thank you for your brilliantly insightful thoughts everyone. I need to contact BLM about this one since that's who's land it's on. I'm on first name basis with the guy I need to talk to but I feel like I should remove the ammo can while waiting for permission, in which case it wouldn't have been hidden for years and years - just mere days. I'm glad I read my journal and remembered this. This was a great thought exercise though. It'd be nice to somehow patch the thinning parts of the Jasmer chart worldwide, but at the same time, perhaps the rarity is what makes it so fun. Also, the chance of containers being genuinely hidden on those specific summer months in 2000 is so unlikely, I'd even call it suspicious if we see it crop up. -
That "obvious intended way" is not even hinted in guidelines or FAQ. The HQ has gone out of their way to create a UI for turning off geofencing (it's literally a checkbox). Geofencing can't even be applied to videos so if there's a video hint (like the LABrador lab) the CO couldn't stop people from watching it wherever they want even if they wanted to (the idea being that logging and watching videos could be done on hotel wifi). The "inspiring tips" section does talk about physical locations, but creators are also asked to "innovate and test new ideas". Every creator involved here seems to have a track record of contributing positively to the geocaching community, so I don't really get your attitude just because you don't like their newest cache.
-
I don't have the option of adding a filename.type when posting photos hosted in Google Drive. My links look like this (I copied it just as it is in the page, without removing formatting stuff): <img width="650" height title="Michigan State Parks Centennial GeoTour:" src="https://drive.google.com/uc?export=&confirm=no_antivirus&id=1Raa4DiQz9wpAcKoliBBz3lT4irLOlsx-" style="border:7px ridge #AAAAAA;" /> There is a lot of talk about content-type and content-disposition. For us lay-people, how do we use that. Searches I've done this morning lead to something far too detailed to know what to do with it. Is there anything I can do to repair this short of rehosting every image (probably a couple thousand)? In many cases, rehosting is not possible. Would someone at HQ please offer some technical help other than "rehost your photos to the geocaching page"?
-
Urban Caching: Tips for city Caches?
VRTrooper84 replied to VRTrooper84's topic in General geocaching topics
Hmmmm... I was wondering why the geocaching discussion forums on here were barely used... And why not a lot of people talk. Now I know why. -
But... again... IF Groundspeak publishes events where socializing is not a requirement let alone even suggested, then events aren't fundamentally intended to be "social". Events are just events. How do you define social, even? To what degree? Do you have to talk to everyone to be social? What if you only talk to one person? What if you go with a friend, stay the whole time, but talk to no one else? "Social" is so arbitrary it makes sense that Groundspeak hasn't required that events be "social". It would be ludicrous to verify and police. I'm amazed this discussion of the social aspect has gone on for so long without the relevant guideline being quoted: As for defining which events are "social", that's up to the judgement of the reviewers, possibly with some guidance from HQ. I haven't looked at the event listing in question, but if it was published, the reviewer has deemed that there's enough of a social aspect to qualify as a Geocaching.com event. It seems to me that as long as the event organizer or his representative is present, then there will always be a social element because an attendee will always be able to stop by and visit.
-
Groundspeak doesn't want us to hide new caches?
funkymunkyzone replied to JohnCNA's topic in General geocaching topics
Wow, the discussion just took a sudden turn there... I don't see a lot of angst in the quote in the original post, just an announcement that the person had learned something they did not previously know. You know people are allowed to disagree about something, and/or talk about it, and it doesn't make them angsty or bad people that should be de-friended. -
But... again... IF Groundspeak publishes events where socializing is not a requirement let alone even suggested, then events aren't fundamentally intended to be "social". Events are just events. How do you define social, even? To what degree? Do you have to talk to everyone to be social? What if you only talk to one person? What if you go with a friend, stay the whole time, but talk to no one else? "Social" is so arbitrary it makes sense that Groundspeak hasn't required that events be "social". It would be ludicrous to verify and police. I'm amazed this discussion of the social aspect has gone on for so long without the relevant guideline being quoted: As for defining which events are "social", that's up to the judgement of the reviewers, possibly with some guidance from HQ. I haven't looked at the event listing in question, but if it was published, the reviewer has deemed that there's enough of a social aspect to qualify as a Geocaching.com event.
-
In our company we make employee interviews once a year, where team leaders and employees talk about the (not) accomplished goals of the last year, the goals, trainings etc. of the upcoming year, and so on. My team leader fortunately doesn't like to do these interviews at the office. Instead he tries to find a place that the specific employee likes. He and I share the hobby of taking photos, so we always try to find a city or place with good motifs for taking photos and after taking photos we eat lunch in some restaurant and make the interview there. Last year we drove to Hollabrunn and afterwards I was able to create several waymarks. The year before it was Retz and I also created several waymarks back in 2018. And this year I found another great spot. Another "city with a population with more than 10,000 and no single Waymark" for the Waymarking Challenge. So, fingers crossed that I find enough waymarks to once again fulfill this challenge. But, most of all I'm looking forward to this trip, because we will also visit the only Bismarck tower in Austria. So far there are only 46 waymarks in the Bismarck Towers category and mine will be and remain the first and only waymark in Austria. WooooooHoooooo!!!!! Depending on the weather and the mood of my team leader we might also visit some other spots that will help me fill my category grid, but for now I keep dancing when I think of the Bismarck Tower. And even if you tell me, that the approval of a waymark in that category can take a loooong time, I will still not stop dancing.
-
But... again... IF Groundspeak publishes events where socializing is not a requirement let alone even suggested, then events aren't fundamentally intended to be "social". Events are just events. How do you define social, even? To what degree? Do you have to talk to everyone to be social? What if you only talk to one person? What if you go with a friend, stay the whole time, but talk to no one else? "Social" is so arbitrary it makes sense that Groundspeak hasn't required that events be "social". It would be ludicrous to verify and police. We want them to be social, and most if not all are in some manner social. But if "being social" is not a requirement for an event, then Groundspeak's made that decision. It would only be a matter of time before sometime tries some form of overtly non-social event (effectively a drive-by). Which... again... has not even been demonstrated with an actual example
-
Geocaching and personal protection
Goldenwattle replied to Lost_not_found's topic in General geocaching topics
And it's scary talk like that that helps explain why foreign visitor numbers to the the USA have dropped. And why I hear people here in Australia (and I can imagine in Europe too) warning friends not to visit the USA and if they want to go to that part of the world visit Canada instead. (That and your unfriendly immigration officials who make the most outrageous claims that are rarely encountered when visiting other countries. Such that your biggest desire is to stay and work in the USA. Really...um, NO WAY! There are whole threads on the internet about this one.) Thank goodness I live in a country that knows that civilisation is not toting around guns. For whatever his other faults were, the Conservative Prime Minister John Howard will be long remembered and thanked by Australians for bringing in gun control (guns are not banned in Australia despite the lies spread). Sensible laws such as a background check and banning military style guns...except for the military. He had a big job doing this and his coalition party leader Tim Fischer was even in a tougher position, standing up to many in his party to get legislation through. Many people are alive today because of this. It is possible to own a gun in Australia. Just give a reason, such as being a farmer, hunting, belonging to a gun club, and then being able to pass the background check. No big deals, but makes gun ownership a lot safer. I had two friends (and had met a third person) killed at the Port Arthur massacre which triggered this. Within days the men had built a case for gun control and proved they were leaders. -
Geocaching App and Garmin GLO 2
robertlipe replied to South Lyon Trekkers's topic in GPS technology and devices
SLT, I wouldn't expect that combination to be well supported. Phones with GPS have been common for 8+ years at this point and development mindshare for add-on devices just isn't wide. Additionally, Groundspeak recently wrecked their developer interface and required extensive changes from apps that talk to the site, so most of the old versions of any apps you'll find appropriate for that phone - even before GLO - are not at all likely to work these days. You don't say if you already have the GLO, but if you're really wanting to stay geocaching with a phone, Moto makes some really good entry-level devices with GPS that'll run modern apps for about the same price as the GLO. (They're very popular in the weather balloon projects in schools...) Not to threadjack, but lots of Androids DO have that option. xda-developers.com Android builds like LineageOS focus on exactly the problem you're describing: capable hardware that's abandoned by the maker not keeping it up to date.