Jump to content

technetium

+Premium Members
  • Posts

    405
  • Joined

  • Last visited

Everything posted by technetium

  1. Sinds 2005 wordt er door de Nederlandse Geocache gemeenschap een geocoin ontworpen en gemaakt. Ook in 2024 zal dat weer gebeuren. Voor de twintigste keer. Dat maakt het de langstlopende serie geocoins ter wereld. Tot en met maart kunnen de ontwerpen worden ingestuurd. We roepen iedereen op om zijn of haar ontwerp in te sturen. In die periode zal Rogier in zijn vlogs ook aandacht aan de Dutch Geocoin besteden. Daarna zal een jury een voorselectie maken. De jury zal daarbij op de volgende punten letten: 2024 (Heeft het ontwerp betrekking op het jaar) Dutch (Is het een Nederlands onderwerp) Originaliteit (Liever een kaas, die we nog nooit gehad hebben, dan de derde molen of vierde tulp) Artistieke waarde (Liever een mooi ontwerp dan een lelijk) Kan het ontwerp ook echt gemaakt worden. We zullen dit jaar iets strenger zijn in de voorselectie, d.w.z. een kleiner aantal munten zal geselecteerd worden voor de stemrondes. Tijdens de vlog zullen de ingezonden munten besproken worden waarbij ook tips gegeven zullen worden om je ontwerp te verbeteren. In april kan er dan on-line op de geselecteerde ontwerpen gestemd worden. Met aan het einde van die maand een Stem Event waar persoonlijk gestemd kan worden. Het gekozen ontwerp zal dan gemaakt worden en via CreaCoins verkocht worden. Daar is nog steeds de munt van 2022 en 2023 te koop. Behalve het fantastische gevoel om je ontwerp uitgevoerd zien worden, ontvangt de inzend(st)er van het winnende ontwerp ook een set Dutch Geocoin 2024 munten. Alle reden dus om (digitale) potloden en kwasten tevoorschijn te halen en je creativiteit te laten vloeien. Suggesties voor onderwerpen voor 2024 zijn: KNRM 200 jaar Zonnebloem 75 jaar. Staatsbos beheer 125 jaar. 2024: Jaar van de Huismus LVBHB (Landelijke Vereniging tot Behoud van het Historisch Bedrijfsvaartuig ) 50 jaar Amsterdam 750, Hilversum 600, Zaanstad 50 Inzendingen kunnen gestuurd worden naar DutchGeocoin@gmail.com Tc
  2. My profile has been restored in it's original glory. Thank you. Tc
  3. Hello @worrellsquirrel, Did you get feedback of your engineers? I see a lot of tag (like input and label) and attributes (like type and tabindex) are removed from the served html code. (When editing my profile they are still present) Is it possible to make the list of allowed html codes a little less strict? Tc
  4. I'd like to add: The input tags I'm using on my profile for tabs and other expand/collaps functions are also gone from my profile. Some mouse over functions do work: Expanding the banners and changing the world map to Europe, but the state maps don't function any more. My profile: https://www.geocaching.com/p/?guid=e5f367d0-e705-44b0-926b-c5c7a7b9b975 Private statistics page: https://geomap.technetium.be/stats/PR16K0J.html (Same code as on the profile page) Private maps page: https://geomap.technetium.be/stats/map-PR16K0J.html Please revert this update. Tc
  5. I've the same problem. For me I noticed it after I logged private ad labs. Is that related? Tc
  6. You can use the classic search for s territory: https://www.geocaching.com/seek/nearest.aspx?state_id=71 this shows the number of active caches in that territory (or state or whatever division the country has) For most countries you can also get that with the whole country, unfortunately Canada is one of the countries that don't work with an url like this: https://www.geocaching.com/seek/nearest.aspx?country_id=5&as=1 Tc
  7. Om de een of andere reden zet Groundspeak, inc. DBA geocaching alle plaatjes die je upload om naar JPEG. Daarbij gaan zaken als animatie en transparante achtergrond naar de kloten. Het enige wat je kunt doen is een plaatje zetten op een door Groundspeak, inc. DBA geocaching goedgekeurde site en vanaf je pagina daar naar toe linken. Tc
  8. Their issue are inaccurate coordinates. It's in the city center so the GPSr might not be that accurate, but I'm trying to be helpful with a large geofence. Tc
  9. Today I've received a report on my ad lab in Utrecht from a player that today only has found a cache in Zeist (A completely different city). The mail also states: Further reports may result in additional administrative action taken with your Adventure. But no option to clarify the situation. So how can I prevent "additional administrative action" Tc
  10. I just stumbled across this thread. My ReWind cardridge https://www.Wherigo.com/cartridge/details.aspx?CGUID=1352a6a9-203b-4930-8724-bbed264114d4 has a hotter colder mode. The code you can use is: MJMQ-LUQ-MEP-LHAC For other modes try the following codes: VCHD-RNF-CMJ-EFQQ GAWY-HMM-NFM-VZTP QCAV-XLX-WRF-VMDN Enjoy
  11. Vrijwel alle leuke dingen hier van vroeger zijn verdwenen: Geo d'Or, Afstand banner, gezellige mensen. Of het laatste na is dat allemaal halfslachtig overgenomen door Groundspeak, inc. DBA Geocaching Tc
  12. Will only work if they have the app or look on the website. Both are not necessary to do adventure labs. But still, it's probably your best option. Tc
  13. FTF is niet iets wat Groundspeak, inc. DBA geocaching bedacht heeft, ze hebben daar geen dingen voor gemaakt om dat aan te geven. Je moet in het log op de juiste manier aangeven dat je een ftf gehad hebt. Dan kan project gc herkennen dat het een ftf is. Zie ook: https://project-gc.com/Home/FAQ#2331862567 p.s. Dit betekent dat je bij ieder log (FTF) kunt zetten en dan heb je volgens project gc heel veel FTF's Tc
  14. A reviewer told me he will temporally unlock the cache if it's locked if you have prove you physically logged the cache. Tc
  15. To prevent other Wherigo programmers to waste a few months of their life: The following code return string.format( '%s %02d %s%s%s %s %03d %s%s%s', lat.s, lat.d, string.sub(lat.m, 1,2), getText('sep_decimal'), string.sub(lat.m, 3,5), lng.s, lng.d, string.sub(lng.m, 1,2), getText('sep_decimal'), string.sub(lng.m, 3,5)); Runs without problem on Garmin, Android and old versions of the iOS app. For the new (1.5.6) version of the iOS app I had to change that code to: return lat.s..' '..string.format('%02d', lat.d)..' '..lat.m:sub(1,2)..getText('sep_decimal')..lat.m:sub(3,5).. ' '..lng.s..' '..string.format('%03d', lng.d)..' '..lng.m:sub(1,2)..getText('sep_decimal')..lng.m:sub(3,5) I don't know why the previous code does not work anymore maybe the string.format method has been limited in the maximum number of arguments???? Anyway I that [expletive deleted] Wherigo isn't Black Magic, it's certainly very very very dark gray. Tc
  16. Hello, I'm getting getting reports the latest version of the Wherigo iOS app (Wherigo version version 1.5.6, iOS 15.6) causes my ReWind cardridge to crash. When running iOS 15.5 and Wherigo version 3.4.1 the cardridge runs fine. The Wherigo is ReWind: https://www.Wherigo.com/cartridge/details.aspx?CGUID=1352a6a9-203b-4930-8724-bbed264114d4 It's crashing when you ask for directions at the tower. This function involves Timers, Reading out the current GPS position, getting Random values and passing functions as an argument in another function. Did you change anything that may have caused these crashes? Is there anything I can do to prevent them? p.s. It took me about an half year to discover the iOS version of Whergio does not support the use of recursion in the lua language. I hope I can solve this problem faster. Tc
  17. Oude draad, maar misschien nog nuttig: https://forum.openstreetmap.org/viewtopic.php?id=7815
  18. Oeps, vergeten hier te plaatsen, er kan nog een paar dagen gestemd worden voor de Dutch Geocoin 2022. Er is weer een event. Dus je kunt dinsdag langskomen, of stemmen op de event pagina: https://coord.info/GC9RYDX Tc
  19. I always give favourites to the caches of my girlfriend ;-) Tc
  20. Thanks for your response @Bl4ckH4wkGER . So the conclusion is that there was a bug on 15 February that allowed the inclusion of an external image. Having read the release notes, I'd like to add my voice to the requests to not convert gif's and png's to jpeg's. Or at least use the same background colour as the site when converting transparent images. Since the thumbnail is also a black rectangle @barefootjeff , my only solution is to use one of the external servers in the list you link to and hope that server last longer than geocaching.com Tc
  21. Yesterday I created a cache page with an external image: Today I want to edit the page, and get the message: When I use the upload, I'm left with a black rectangle, I'm suspecting the upload is converting the image and something goes wrong when converting it. Can you either: Permit the use of images from other sites in de cache description. The proxy server used until yesterday worked fine. I understand the wish to protect the privacy of users by not loading images from other sites and the security by limiting what kind of data is included on cache pages. Fix the conversion of uploaded images. Again I understand the wish to remove embedded code from images, and even exif-data from uploaded log pictures to prevent spoilers, but please don't change what the images look like (especially converting them in a black rectangle is unacceptable) Thanks.
  22. De Dutch Geocoin 2021 laat helaas nog op zich wachten. Toch ben ik weer aan het nadenken over de 2022 editie. Het start dan met de ontwerpen. Het is, tot nu toe, nog mogelijk om (na 14 jarnuari) geocaching events, en daarmee ook ontwerp events te organiseren. In hoeverre dat verstandig is, is iets waar je over kunt discussiëren, dat laat ik dan ook aan jullie eigen verantwoordelijkheid over. Het blijkt dat corona er voor heeft gezorgd dat ook voor 2022 er weinig risico genomen wordt door de organisatoren van grote manifestaties. Ik heb niet zoveel jaar specifieke onderwerpen kunnen vinden. Het Mauritshuis bestaat 200 jaar. Utrecht heeft 900 jaar stadsrechten en Zevenbergen 750. Verder vieren de Dolly Dots en Blof hun jubileum. Hoe dan ook kunnen ontwerpen ingestuurd worden naar het bekende email adres: DutchGeocoin apestaatje gmail punt com. Tc
  23. Criteria zouden aan beide gelijk moeten zijn. De interpretatie is altijd wel persoonlijk. De Franstalige earthcaches hebben een andere reviewer dan de nederlandstalige. Ook in Nederland worden er zeer weinig. In Nederland zijn er dit jaar maar twee earthcache sgepubliceerd: https://coord.info/GC9GZKR en https://coord.info/GC9DP11
  24. Die 2020 had ik inderdaad niet aangepast. Daar kwam ik pas achter op de laatste dag van de stemming en heb ik daarom niet aangepast. Er is inderdaad een winnaar uitgekomen. Die is tijdens het live vlog van Rogier bekend gemaakt. Het is Geocaching in Holland geworden. Deze munt wordt rond sinterklaas in de webshop van Canobe verwacht. Tc
×
×
  • Create New...