Skip to content
Menu
Open World News Open World News
  • Privacy Policy
Open World News Open World News

Category: News

Moodle LMS_ Create transformative learning experiences (480p)

Posted on January 5, 2024 by Michael G

Author: Source Read more

Making your Wiki beautiful with the WMAU MediaWiki skin

Posted on January 5, 2024 by Michael G
Making a wiki that is beautiful is a challenge, but we might have solved it. The WMAU skin for MediaWiki doesn’t look like your usual…

Nextide Blog: Oxford’s Mathematical Institute: Streamlining Academic Visitor Applications with Maestro

Posted on January 5, 2024 by Michael G

In the dynamic world of academia, managing academic visitor applications efficiently is crucial. The University of Oxford Mathematical Institute has embraced the power of Drupal  and the Maestro module to streamline and enhance their academic visitor application process. Let’s delve into the seamless workflow that facilitates this crucial task.

 

The General Design

Initiation: Academics or their assistants initiate the process by filling in a comprehensive multi-page webform tailored to their needs.

Confirmation and Workflow Trigger: Upon submission, a confirmation email is sent to the initiator by the webform email handler, and the workflow is triggered.

How a simple HTTP header mismatch led to cache poisoning

Posted on January 5, 2024 by Michael G
https://kahoot.com/tech-blog/http-header-mismatch-led-to-cache-poisoning/

Andy Wingo: v8’s precise field-logging remembered set

Posted on January 5, 2024 by Michael G

A remembered set is used by a garbage collector to identify graph
edges between partitioned sub-spaces of a heap. The canonical example
is in generational collection, where you allocate new objects in
newspace, and eventually promote survivor objects to oldspace. If
most objects die young, we can focus GC effort on newspace, to avoid
traversing all of oldspace all the time.

Collecting a subspace instead of the whole heap is sound if and only if
we can identify all live objects in the subspace. We start with some
set of roots that point into the subspace from outside, and then
traverse all links in those objects, but only to other objects within
the subspace.

The roots are, like, global variables, and the stack, and registers; and
in the case of a partial collection in which we identify live objects
only within newspace, also any link into newspace from other spaces
(oldspace, in our case). This set of inbound links is a remembered
set
.

There are a few strategies for maintaining a remembered set. Generally
speaking, you start by implementing a write barrier that intercepts all
stores in a program. Instead of:

obj[slot] := val;

You might abstract this away:

write_slot(obj, sizeof obj, &obj[slot], val);

As you can see, it’s quite an annoying transformation to do by hand;
typically you will want some sort of language-level abstraction that
lets you keep the more natural syntax. C++ can do this pretty well, or
if you are implementing a compiler, you just add this logic to the
code generator.

Then the actual write barrier… well its implementation is twingled up
with implementation of the remembered set. The simplest variant is a
card-marking scheme, whereby the heap is divided into equal-sized
power-of-two-sized cards, and each card has a bit. If the heap is
also divided into blocks (say, 2 MB in size), then you might divide
those blocks into 256-byte cards, yielding 8192 cards per block. A
barrier might look like this:

void write_slot(ObjRef obj, size_t size,
                SlotAddr slot, ObjRef val) {
  obj[slot] := val; // Start with the store.

  uintptr_t block_size = 1<<21;
  uintptr_t card_size = 1<<8;
  uintptr_t cards_per_block = block_size / card_size;

  uintptr_t obj_addr = obj;
  uintptr_t card_idx = (obj_addr / card_size) % cards_per_block;

  // Assume remset allocated at block start.
  void *block_start = obj_addr & ~(block_size-1);
  uint32_t *cards = block_start;

  // Set the bit.
  cards[card_idx / 32] |= 1 << (card_idx % 32);
}

Then when marking the new generation, you visit all cards, and for all
marked cards, trace all outbound links in all live objects that begin on
the card.

Card-marking is simple to implement and simple to statically allocate as
part of the heap. Finding marked cards takes time proportional to the
size of the heap, but you hope that the constant factors and SIMD
minimize this cost. However iterating over objects within a card can be
costly. You hope that there are few old-to-new links but what do you
know?

In Whippet I have been struggling a
bit with sticky-mark-bit generational
marking
,
in which new and old objects are not spatially partitioned. Sometimes
generational collection is a win, but in benchmarking I find that often
it isn’t, and I think Whippet’s card-marking
barrier

is at fault: it is simply too imprecise. Consider firstly that our
write barrier applies to stores to slots in all objects, not just those
in oldspace; a store to a new object will mark a card, but that card may
contain old objects which would then be re-scanned. Or consider a store
to an old object in a more dense part of oldspace; scanning the card may
incur more work than needed. It could also be that Whippet is being too
aggressive at re-using blocks for new allocations, where it should be
limiting itself to blocks that are very sparsely populated with old
objects.

what v8 does

There is a tradeoff in write barriers between the overhead imposed on
stores, the size of the remembered set, and the precision of the
remembered set. Card-marking is relatively low-overhead and usually
small as a fraction of the heap, but not very precise. It would be
better if a remembered set recorded objects, not cards. And it would be
even better if it recorded slots in objects, not just objects.

V8 takes this latter strategy: it has per-block remembered sets which
record slots containing “interesting” links. All of the above words
were to get here, to take a brief look at its remembered set.

The main operation is
RememberedSet::Insert.
It takes the MemoryChunk (a block, in our language from above) and the
address of a slot in the block. Each block has a remembered set; in
fact, six remembered
sets

for some reason. The remembered set itself is a
SlotSet,
whose interesting operations come from
BasicSlotSet.

The structure of a slot set is a bitvector partitioned into
equal-sized, possibly-empty
buckets
.
There is one bit per slot in the block, so in the limit the size
overhead for the remembered set may be 3% (1/32, assuming compressed
pointers). Currently each bucket is 1024 bits (128
bytes)
,
plus the 4 bytes for the bucket pointer itself.

Inserting into the slot
set

will first allocate a bucket (using C++ new) if needed, then load the
“cell” (32-bit
integer)

containing the slot. There is a template parameter declaring whether
this is an atomic or normal load. Finally, if the slot bit in the cell
is not yet set, V8 will set the bit, possibly using atomic
compare-and-swap.

In the language of Blackburn’s Design and analysis of field-logging
write
barriers
,
I believe this is a field-logging barrier, rather than the bit-stealing
slot barrier described by Yang et al in the 2012 Barriers
Reconsidered, Friendlier
Still!
.
Unlike Blackburn’s field-logging barrier, however, this remembered set
is implemented completely on the side: there is no in-object remembered
bit, nor remembered bits for the fields.

On the one hand, V8’s remembered sets are precise. There are some
tradeoffs, though: they require off-managed-heap dynamic allocation for
the buckets, and traversing the remembered
sets

takes time proportional to the whole heap size. And, should V8 ever
switch its minor mark-sweep generational
collector

to use sticky mark bits, the lack of a spatial partition could lead to
similar problems as I am seeing in Whippet. I will be interested to see
what they come up with in this regard.

Well, that’s all for today. Happy hacking in the new year!

New year, new gallery app and NewPipe news

Posted on January 5, 2024 by Michael G

TWIF generated on Thursday, 04 Jan 2024, Week 1

Community News

@Licaon_Kter brings news from suite lands:

As last years TWIF49 covered, the beloved Simple Mobile Tools suite of apps have an unclear future, FOSS wise at least. This week we have 2 pieces of news about that.

The bad one, it was discovered (thanks to our long time contributor @Izzy) that Simple Gallery Pro was containing a library that while itself being FOSS depends on some Google proprietary ones, so all affected versions, basically all, were removed.

When a piece of FOSS software has issues in development, or certain people think as much, the one solution universally praised is “forking”, meaning it will find a new home, name and people that care to carry it further. There’s a whole discussion about where exactly those people willing to help were for Simple Mobile Tools before the actual sale, but we won’t have it here now. What we can say is that at least @naveensingh and others have rallied under the Fossify organization and try to continue the Simple apps legacy.

Hence the good news, Fossify Gallery is their first app to be included in F-Droid. Yes, it’s build reproducible, yes it’s not orange but more green, and yes it will miss the Panoramic view that depends on Google proprietary libs, but it’s fully FOSS. More too come next…

SimpleX Chat was updated to 5.4.2 but only the armv7 flavour. arm64 should come in the next cycle.

@linsui tells us that:

Both Arcticons and Arcticons Black were updated to 8.3.1 and are now build reproducible, meaning that if you had them installed please uninstall and reinstall the new versions so you get future updates too.

Screenshot sharer was removed only to be replaced with the newly included and reproducible QuickShot: Share Screenshot, hence do lookup the new app and uninstall the old one.

Tux Paint was updated to 0.9.31, while being an app for children it might “scare” their parents as in this update “stamps are now integrated into the app, raising the app size to almost 250Mb”. So be sure to update on Wi-Fi instead.

NewPipe’s very own Tobias Groza dropped by to inform us that:

NewPipe published two new versions 0.26.0 and 0.26.1 adding support for more content from channels (playlists, shorts, about, …) and higher image quality in the last two weeks.

We have also written a blog post summarizing the important things from 2023 (e.g. implemented features, the newly founded NewPipe e.V., temporary removal of our homepage from Google search) and taking a look at the plans for 2024 (adding support for better search filters and starting the modernization of the app).

We also announce some maintainer changes: I will leave the project due to not having much spare time, Stypox and AudricV are taking more responsibilities, and the project is looking for new additional maintainers to fill the gap and be able to implement the plans for 2024.

NOTE: These NewPipe updates are delayed in F-Droid currently and the team is investigating why.

Newly Added Apps

2 more apps were newly added
  • Cuscon – An icon pack with varied shapes.
  • Onyx – Your new app to guide you around La Doua Campus.

Updated Apps

138 more apps were updated
  • 8-Bit Wonders was updated from 0.8.1 to 0.8.2
  • Aard 2 was updated from 0.55 to 0.56
  • Alovoa was updated from 1.7.0 to 1.7.2
  • Amaze File Utilities was updated from 1.91 to 1.92
  • Amethyst was updated from 0.83.3 to 0.83.4
  • AndBible: Bible Study was updated from 5.0.792 to 5.0.793
  • Andor’s Trail was updated from 0.8.8 to 0.8.9
  • Another notes app was updated from 1.5.3 to 1.5.4
  • Arcticons Day & Night was updated from 8.3.0 to 8.3.1
  • Arcticons Material You was updated from 8.3.0 to 8.3.1
  • Audio Share was updated from 0.0.13 to 0.0.14
  • Baby Dots was updated from 1.9.6 to 1.9.7
  • Baby Phone was updated from 1.2.0 to 1.2.1
  • Ball2Box was updated from 4.0.1 to 4.0.3
  • Beat Feet was updated from 0.16.0 to 0.16.1
  • BetterCounter was updated from 3.2.0 to 4.0.0
  • BitBanana was updated from 0.7.1 to 0.7.2
  • Bluemoon was updated from 1.0.1 to 1.0.2-alpha
  • Cache Cleaner was updated from 1.9.5 to 1.9.6
  • Candle was updated from 1.1.1 to 1.3.0
  • Casio G-Shock Smart Sync was updated from 11.5 to 11.6
  • Chaldea was updated from 2.5.4 to 2.5.5
  • CoinTrend: Private Crypto Tracker was updated from 1.2.1 to 1.3.1
  • Cooky was updated from 1.0.0 to 1.1.0
  • Copy SMS Code – OTP Helper was updated from 1.9.0 to 1.10.0
  • Dagger: Dota 2 Stats was updated from 1.3.3 to 1.3.4
  • Data Monitor was updated from v2.3.2 to v2.4.0
  • Deku SMS was updated from 0.35.0 to 0.36.0
  • Drinkable was updated from 1.45.1 to 1.46.0
  • Easy Diary was updated from 1.4.303.202310160 to 1.4.304.202312270
  • Everyday Tasks was updated from 1.4.0 to 1.5.1
  • FREE Browser was updated from 2.1 to 2.2
  • FairEmail was updated from 1.2143 to 1.2145
  • FlashDim – Dim your flashlight was updated from 2.1.1 to 2.2.0
  • Flip a coin was updated from BTBAM to MnowR
  • Flux News was updated from 1.3.3 to 1.3.4
  • Forkyz Scanner was updated from 3 to 4
  • Fruity Game was updated from 2.2 to 2.3
  • GMaps WV was updated from 1.8 to 1.8
  • Gas Prices was updated from 2.4 to 2.5
  • Geto was updated from 1.6 to 1.7
  • Graded – Grade tracker was updated from 2.6.2 to 2.6.3
  • Grocy: Self-hosted Grocery Management was updated from 3.4.2 to 3.5.0
  • Home Assistant was updated from 2023.10.2-minimal to 2023.12.4-minimal
  • Hypatia was updated from 3.01 to 3.06
  • IR Remote was updated from 1.6.2 to 1.7.0
  • Image Toolbox (Resizer) was updated from 2.5.0 to 2.5.1
  • Infomaniak Mail was updated from 1.1.2 to 1.1.3
  • Infomaniak kDrive was updated from 4.3.1 to 4.3.2
  • Infomaniak kMeet was updated from 2.6 to 2.6.1
  • Inner Breeze was updated from 1.1.4 to 1.2.2
  • Inure App Manager (Trial) was updated from Build95 to Build96
  • Jami was updated from 20231221-01 to 20231228-01
  • Kotatsu was updated from 6.5.2 to 6.5.4
  • Lexica was updated from 3.10.0 to 3.11.0
  • Li-Ri was updated from 3.0.1 to 3.1.0
  • Libre Memory Game was updated from 1.0.0 to 1.0.1
  • LibrePass was updated from 1.1.2 to 1.1.3
  • LibreTube was updated from 0.20.1 to 0.21.0
  • Librera Reader was updated from 8.9.133-fdroid to 8.9.147-fdroid
  • MOROway App was updated from 9.0.0 to 9.0.2
  • Mastercom workbook was updated from 7.0 to 7.1
  • Mealient was updated from 0.4.4 to 0.4.5
  • Mercurygram was updated from 10.3.2.12 to 10.5.0.1
  • Mill was updated from 3.8.0 to 4.0.3
  • MoasdaWiki App was updated from 3.6.3.1 to 3.7.1.0
  • Mullvad VPN: privacy is a universal right was updated from 2023.10-beta1 to 2023.10
  • My Expenses was updated from 3.7.1 to 3.7.1.1
  • NFC Reader was updated from 1.0 to 1.1
  • NOVA Video Player was updated from 6.2.35 to 6.2.40
  • NanoLedger was updated from 0.1.4 to 0.1.5
  • Next Player was updated from 0.10.0 to 0.10.2
  • Nextcloud Dev was updated from 20231223 to 20231230
  • Nextcloud Passwords was updated from 1.0.6 to 1.0.7
  • Noice: Natural calming noise was updated from 2.5.4 to 2.5.5
  • Oinkoin was updated from 1.0.32 to 1.0.34
  • OpenTracks was updated from v4.9.8 to v4.10.0
  • Opus 1 Music Player was updated from 2.61.3 to 2.62
  • Orgro was updated from 1.35.2 to 1.36.1
  • Outline Keeper was updated from 0.1.19 to 0.1.23
  • Pagan Music Sequencer was updated from 1.3.10 to 1.3.11
  • ParkenUlm was updated from 2.3 to 2.3.1
  • Petals was updated from 3.20.0 to 3.20.3
  • PhotoChiotte was updated from 1.46 to 1.47
  • Pie Launcher was updated from 1.16.0 to 1.16.1
  • PixelDroid was updated from 1.0.beta24 to 1.0.beta25
  • PlainApp: File & Web Access was updated from 1.2.22 to 1.2.26
  • Pocket Broomball was updated from 5.0.6 to 5.1.0
  • ProtonVPN – Secure and Free VPN was updated from 4.8.99.0 to 4.9.22.0
  • RedReader was updated from 1.23 to 1.23.1
  • Revengate was updated from 0.11.1 to 0.11.3
  • RiMusic was updated from 0.6.14 to 0.6.15.1
  • Ricochlime was updated from 1.1.1 to 1.1.2
  • Rocket.Chat was updated from 4.44.0 to 4.44.2
  • SCEE was updated from 55.11 to 56.0
  • Safe Space was updated from 1.2.2 to 1.3.0
  • Simlar – secure calls was updated from 2.10.1 (alwaysOnline) to 2.11.0 (alwaysOnline)
  • Simon Tatham’s Puzzles was updated from 2023-02-10-1537-bd5c0a37-fdroid to 2023-11-15-2237-96d65e85-fdroid
  • SimpleReminder was updated from 0.9.11 to 0.9.12
  • Siteswap Generator was updated from 1.3.1 to 1.5.0
  • Spotube was updated from 3.3.0 to 3.4.0
  • Standard Notes was updated from 3.183.30 to 3.183.33
  • Street­Complete was updated from 55.1 to 56.0
  • Suntimes Calendars was updated from 0.5.7 to 0.6.0
  • Symphony was updated from 2023.11.106 to 2023.12.108
  • The Light was updated from 3.75 to 3.76
  • Tiny Weather Forecast Germany was updated from 0.61.3 to 0.61.4
  • Todo Agenda was updated from 4.5.6 to 4.7.3
  • TorrServe was updated from MatriX.128.2.F-Droid to MatriX.129.F-Droid
  • Trail Sense was updated from 5.5.1 to 5.6.1
  • Trekarta was updated from 2023.11 to 2023.12
  • Trime was updated from 3.2.15 to 3.2.16
  • Trireme for Deluge was updated from 1.4.0 to 1.4.1
  • Tusky was updated from 24.1 beta 1 to 24.1
  • URL to PDF Converter was updated from 1.0.0 to 1.0.1
  • Unciv was updated from 4.9.11 to 4.9.15
  • Unstoppable Wallet was updated from 0.37.0 to 0.37.0
  • Untracker was updated from 1.0.0 to 1.0.1
  • VES – Image and Photo Compare was updated from 2.2.5 to 2.2.6
  • WG Tunnel was updated from 3.2.5 to 3.3.2
  • WallFlow was updated from 2.3.0 to 2.3.1
  • WallFlow Plus was updated from 2.3.0 to 2.3.1
  • WiFiAnalyzer was updated from 3.0.12 to 3.1.1
  • Wulkanowy was updated from 2.2.6 to 2.2.7
  • Xtra was updated from 2.26.6 to 2.27.0
  • Yatoo was updated from 0.5.1 to 0.6.0
  • ZipXtract was updated from 4.0.2 to 4.1
  • baresip was updated from 59.2.0 to 59.3.0
  • baresip+ was updated from 46.3.0 to 46.4.0
  • c3nav was updated from 4.2.3 to 4.2.5
  • dreamDroid was updated from 1.12.456 to 1.15.460
  • eXch. was updated from 1.1.1 to 1.1.2
  • floccus bookmark sync was updated from 5.0.5 to 5.0.6
  • freeDictionaryApp was updated from 1.5.6 to 1.5.8
  • jQuarks viewer was updated from 1.0-19 to 1.0-21
  • omWeather was updated from 2.4 to 2.5
  • openHAB Beta was updated from 3.8.2-beta to 3.8.3-beta
  • wX was updated from 55857 to 55862

Thank you for reading this week’s TWIF 🙂
Please subscribe to the RSS feed in your favourite RSS application to be updated of new TWIFs when they come up.

You are welcome to join the TWIF forum thread if you have any news from around the community, maybe it will be featured next week 😉

The world’s smallest PNG

Posted on January 5, 2024 by Michael G
The smallest PNG file is 67 bytes. It’s a single black pixel. Here’s what it looks like, zoomed in 200×: The rest of this post describes this file in more detail and tries to explain how PNGs work along the way. There’s a big twist at the end, if that excites you. But I hope you’re just excited to learn about PNGs. ↫ Evan Hahn I know way too much about PNGs now, information I won’t ever need but am glad to have.

Love Me Bite Me

Posted on January 4, 2024 by Michael G
After that, Foo and Jared run tests on vampire rats to see if they can reverse the process of vampirism. While this is happening the Animals are attacked by hordes of vampire cats. Later Jody and Tommy are freed from their bronze casing, and Tommy, having lost his sanity due to the bronzing, flees to live with the vampire cats. Jody goes after him, while the Animals, along with Inspector Rivera and Cavuto, hunt the vampire cats with a remedy made by one of the Animal’s grandmother.

#reelshort #fyp #billionaire #rich #wealthy #app #drama #film #movie #tv #tvseries #romance #love #marriage #relationship #couple #couples #SATURDAY #saturday#saturdaymood #weekend #weekendvibes

Lon3r Johny x Pedrem – Porsche Turbo (Pedrem Remix)

Posted on January 4, 2024 by Michael G
Instrumental: Pedrem
Mix/Master: Pedrem
Vocals: Pedrem & Lon3r Johny
Back Vocals: Lon3r Johny
Letra: Lon3r Johny
Ano Do Remix: 2023

LETRA
Sempre que eu entro, eles sabem que eu venho forte
Eu não tenho tempo pa’ brincar, a minha vida é rock
Ponho a guita toda dentro dum saco e trago comigo ao colo
Juntei tanta nota, finalmente, agora eu tenho um Porsche
Porsche Turbo, Porsche Turbo (Uh, ah)
Porsche Turbo, Porsche Turbo (Way)
Porsche Turbo, Porsche Turbo (Uh, ah)
Porsche Turbo, Porsche Turbo (Way)
Nós não ‘tamos na mema’ liga (Não, não)
Essas bitches caem aqui, juro, que elas fazem fila (Uh)
Pego no meu money e meto o money na mochila (Yeah)
Balenci’ e Céline, LON3R fashion killer
Sempre que chego na festa eles viram cangurus
É que começa tudo a saltar
Eu salto junto com eles
Casaco pa’ neve, pareço um urso polar
Eu tenho a escola da vida
Já que a minha vida tem a escola toda da Buraca
Eu pus a guita na mesa
Comprei um Porsche Turbo e ainda fundei a SNOWYARD
Porsche Turbo, Porsche Turbo (Uh, ah)
Porsche Turbo, Porsche Turbo (Way)
Porsche Turbo, Porsche Turbo (Uh, ah)
Porsche Turbo, Porsche Turbo (Way)
Ah
(Uh-uh, uh)

porsche turbo, lon3r johny, pedrem, remix, uh lalala, diamante, damn, sky, pina colada, ao teu lado, stay fly, anti$$ocial, hallywud, letra, lyrics, tuga, portugal, drip, rockstar shit, gt3, não os vejo, death note, sucesso, clássico, skrt, rock, o meu money, dubai, trapstar, own lane, zaza, crystal castle, walk, cinicos, fake love, devias, mvp, nave, maximo speed, tou no céu, karaoke, mashup, playlist, plutonio, 2023, nova musica, novo som, musica nova, uh la la la

Dimitrov continues Australian Open prep with dominant win

Posted on January 4, 2024 by Michael G
Grigor Dimitrov needed just over an hour to beat Daniel Altmaier as his Australian Open preparations ramp up
  • Previous
  • 1
  • …
  • 351
  • 352
  • 353
  • 354
  • 355
  • 356
  • 357
  • …
  • 821
  • Next

Recent Posts

  • [TUT] LoRa & LoRaWAN – MikroTik wAP LR8 kit mit The Things Network verbinden [4K | DE]
  • Mercado aguarda Powell e olha Trump, dados e Haddad | MINUTO TOURO DE OURO – 11/02/25
  • Dan Levy Gets Candid About Learning How To Act Differently After Schitt’s Creek: ‘It’s Physically…
  • Building a Rock Shelter & Overnight Stay in Heavy Snow 🏕️⛰️
  • Les milliardaires Elon Musk et Xavier Niel s’insultent copieusement

Categories

  • Android
  • Linux
  • News
  • Open Source
©2025 Open World News | Powered by Superb Themes
We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept All”, you consent to the use of ALL the cookies. However, you may visit "Cookie Settings" to provide a controlled consent.
Cookie SettingsAccept All
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT