• Skip to primary navigation
  • Skip to main content
  • Skip to footer

Codee

The code correctness, modernization, security, portability and optimization tool for Fortran C and C++

  • Product
    • Codee Analyzer
    • Codee Formatter
  • Use Cases
    • Correctness
    • Security
    • Modernization
    • Optimization
  • Case Studies
  • Resources
    • Open Catalog
    • Documentation
    • Blog
    • Webinars
    • Releases
  • Company
    • About us
    • News
    • Our Partners
    • Contact us
  • Pricing
  • Request a Demo
Home » News » How Does Codee’s Workflow Simplify the Correctness, Modernization, Security and Optimization of Your Code?

19/09/2024 Por Codee Team Leave a Comment

How Does Codee’s Workflow Simplify the Correctness, Modernization, Security and Optimization of Your Code?

In today’s fast-paced development environment, keeping code optimized and up-to-date can be challenging.  This is where Codee steps in, by performing an automated static analysis of your code to identify improvement opportunities by following the recommendations of the Open Catalog of Code Guidelines for Correctness, Modernization, and Optimization. The static analysis capabilities of Codee allow it to analyze every line of Fortran, C, and C++ code to identify opportunities without requiring code execution. As a result, Codee allows you to quickly and efficiently capture potential improvements such as code compliance with modern standards, and performance enhancements.

Tailored Reports for Managers and Developers

Once Codee analyzes your code, it generates detailed reports customized for different roles within your team. For managers, Codee provides high-level insights, allowing them to assess the project’s alignment with strategic objectives. Developers, on the other hand, receive specific, actionable feedback on code improvements.

Codee doesn’t just identify opportunities; in certain cases, it can automatically rewrite parts of your code. For example, Codee can disable the error-prone implicit data typing of Fortran, by inserting in programs the implicit none statement and missing variable declarations, helping improve code clarity and maintainability.

The reports are available in different output formats, ensuring seamless integration with your existing CI/CD pipeline. This means you can automatically test every code change, continuously improving code quality throughout development. 

A key aspect of Codee is that it runs entirely on your local system, ensuring complete privacy. Your source code never leaves your disk, making Codee a secure solution for analyzing and optimizing proprietary or sensitive codebases.

Image

Codee’s Suggested Workflow: Five Simple Commands

To make the most of Codee’s capabilities, we’ve standardized a workflow consisting of five core commands. These commands capture all improvement opportunities and present them in different formats, following a top-down approach. The workflow starts with management-oriented reports and progressively moves toward detailed technical analysis. This ensures that high-level strategic goals are aligned with the technical actions taken by the developers.

1. Technical Debt Report

To run any Codee command, you first need a working compiler invocation. For instance, let’s consider a simple matrix multiplication code compiled with gfortran. 

$ cat -n matmul.f90
1    subroutine matmul(n, A, B, C)
2      double precision, dimension(n, n), intent(in) :: A, B
3      double precision, dimension(n, n), intent(out) :: C
4   
5      ! Initialization
6      do i = 1, n
7        do j = 1, n
8          C(i, j) = 0.0
9        end do
10     end do
11  
12     ! Accumulation
13     do i = 1, n
14       do j = 1, n
15         do k = 1, n
16           C(i, j) = C(i, j) + A(i, k) * B(k, j)
17         end do
18       end do
19     end do
20   end subroutine matmul

$ gfortran matmul.f90

The first action is generating a technical debt report, which quantifies the refactorings needed to leverage all identified improvements. Over time, your goal should be to reduce this technical debt score to zero.

$ codee technical-debt -- gfortran matmul.f90

TECHNICAL DEBT REPORT

This report quantifies the technical debt associated with the modernization of legacy code by assessing the extent of refactoring required for language constructs. 
The score is determined based on the number of language constructs necessitating  refactoring to bring the source code up to modern standards. 
Additionally, the metric identifies the impacted source code segments, detailing affected files, functions, and loops.

Score Affected files Affected functions Affected loops
----- -------------- ------------------ --------------
12    1              1                  4             ‎ 

TECHNICAL DEBT BREAKDOWN

Lines of code Analysis time Checkers Technical debt score
------------- ------------- -------- --------------------
16            12 ms         12       12

1 file, 1 function, 5 loops successfully analyzed (12 checkers) and 0 non-analyzed files in 12 ms

2.  Screening Report and Ranking

While the technical debt report provides guidance on how many issues there are, the screening report details which recommendations of the Open Catalog are applicable to the code, and ranks them based on their estimated positive impact to help prioritize the refactoring efforts.

$ codee screening -- gfortran matmul.f90

SCREENING REPORT

Lines of code Analysis time # checks Profiling
------------- ------------- -------- ---------
16            13 ms         12       n/a

RANKING OF CHECKERS

Checker Priority AutoFix # Title
------- -------- ------- - ----------------------------------------------------------------------------------------------------------------------
PWR039  P27 (L1)  x      1 Consider loop interchange to improve the locality of reference and enable vectorization
PWR068  P27 (L1)         1 Encapsulate external procedures within modules to avoid the risks of calling implicit interfaces
RMK015  P27 (L1)         1 Tune compiler optimization flags to increase the speed of the code
PWR003  P18 (L1)         1 Explicitly declare pure functions
PWR008  P18 (L1)  x      1 Declare the intent for each procedure parameter
PWR070  P18 (L1)         1 Declare array dummy arguments as assumed-shape arrays
PWR071  P6 (L2)          2 Prefer real(kind=kind_value) for declaring consistent floating types
PWR007  P6 (L2)   x      1 Disable implicit declaration of variables
PWR035  P2 (L3)          1 Avoid non-consecutive array access to improve performance
RMK010  P0 (L3)          2 The vectorization cost model states the loop is not a SIMD opportunity due to strided memory accesses in the loop body

3. ROI Report

Next, the ROI report estimates the time and effort saved through Codee’s automated analysis, and tailor the ROI estimation to your organization. This report contrasts, against the automated process of Codee, the manual time that would have been spent evaluating the applicability of each rule of the Open Catalog to the code.

$ codee roi -- gfortran matmul.f90

ROI ANALYSIS SUMMARY

This analysis underscores the tangible benefits Codee brings to the development process, 
not only in terms of savings in development effort, but also in realizing significant cost efficiencies for the organization.

Impact on Development Effort:
This report identifies critical areas within the source code that necessitate attention from the development team, 
and forecasts a significant reduction in workload by an estimated 223 hours.

Without Codee | With Codee | Hours saved
------------- | ---------- | -----------
235 hours     | 12 hours   | 223 hours  ‎ 

Impact on Cost Savings:
Considering a standard developer's workload of approximately 1800 hours/year,
Codee's intervention translates to saving an equivalent to 0.12 (223h / 1800h) developers working full-time. 
Assuming an average cost of a developer for the company (salary + associated costs) of €100,000, 
this amounts to cost savings of €12,388 (€100,000 x 0.12).

Developer hours/year | Number of devs. saved/year | Developer salary/year | Total costs saved/year
-------------------- | -------------------------- | --------------------- | ----------------------
1800 hours           | 0.12                       | €100,000              | €12,388               ‎ 

ROI CALCULATION BREAKDOWN

<...>

4. Checks Report and Autofix

The checks report pinpoints the exact locations in your source code where opportunities for improvement exist. Codee’s verbose mode provides even more detailed information, along with recommendations on how to proceed.

$ codee checks -- gfortran matmul.f90

CHECKS REPORT

matmul.f90:6:3 [PWR039] (level: L1): Consider loop interchange to improve the locality of reference and enable vectorization
matmul.f90:1:1 [PWR068] (level: L1): Encapsulate external procedures within modules to avoid the risks of calling implicit interfaces
matmul.f90 [RMK015] (level: L1): Tune compiler optimization flags to increase the speed of the code
matmul.f90:1:1 [PWR003] (level: L1): Explicitly declare pure functions
matmul.f90:1:1 [PWR008] (level: L1): Declare the intent for each procedure parameter
matmul.f90:1:1 [PWR070] (level: L1): Declare array dummy arguments as assumed-shape arrays
matmul.f90:1:1 [PWR007] (level: L2): Disable implicit declaration of variables
matmul.f90:2:3 [PWR071] (level: L2): Prefer real(kind=kind_value) for declaring consistent floating types
matmul.f90:3:3 [PWR071] (level: L2): Prefer real(kind=kind_value) for declaring consistent floating types
matmul.f90:13:3 [PWR035] (level: L3): Avoid non-consecutive array access to improve performance
matmul.f90:7:5 [RMK010] (level: L3): The vectorization model states the loop is not a SIMD opportunity due to strided memory accesses
matmul.f90:15:7 [RMK010] (level: L3): The vectorization model states the loop is not a SIMD opportunity due to strided memory accesses

$ codee checks --verbose -- gfortran matmul.f90

CHECKS REPORT

<...>

matmul.f90:1:1 [PWR007] (level: L2): Disable implicit declaration of variables
  Suggestion: Add IMPLICIT NONE in the specification part of the procedure 'matmul'
  Documentation: https://github.com/codee-com/open-catalog/tree/main/Checks/PWR007
  AutoFix:
    codee rewrite --modernization implicit-none --in-place matmul.f90:matmul -- gfortran matmul.f90

<...>

For example, Codee might suggest adding implicit none in Fortran to disable implicit variable declarations. With Codee’s autofix feature, you can automatically apply such recommendations, improving your code with a simple command-line invocation.

$ codee rewrite --modernization implicit-none --in-place matmul.f90:matmul -- gfortran matmul.f90

Results for file '/home/user/matmul.f90':
  Successfully applied AutoFix to the procedure at 'matmul.f90:1:1' [using insert implicit none]:
      [INFO] Inserted implicit none:
        - matmul.f90:1:1

Successfully updated matmul.f90

$ git diff matmul.f90

 subroutine matmul(n, A, B, C)
+  ! Codee: Made all variable declarations explicit (2024-08-02 13:04:38)
+  implicit none
+  integer :: i
+  integer :: j
+  integer :: k
+  integer :: n
   double precision, dimension(n, n), intent(in) :: A, B
   double precision, dimension(n, n), intent(out) :: C

Conclusion

Codee simplifies the complex process of modernizing and optimizing your codebase through automated static analysis. By offering a comprehensive, top-down approach that integrates seamlessly into your workflow, Codee ensures that both strategic objectives and technical improvements are in sync.

What part of your codebase do you think could benefit most from automated analysis? Let us know in the comments!

Build correct, secure, modern and fast Fortran, C and C++ scientific software

See our plans
Book a demo

Filed Under: Blog Tagged With: CICD, Fortran, optimization, performance

Previous Post
Next Post

Reader Interactions

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Footer

PRODUCT

Request a demo

Purchase inquiry

Open Catalog of Code Guidelines

Documentation

COMPANY

About us

Become a partner

Contact us

Newsletter

FOLLOW US

  • X
  • LinkedIn
  • GitHub
  • YouTube

SEARCH

NEWSLETTER

Subscribe

APPENTRA SOLUTIONS S.L
P.º Marítimo, 22b, 15679 Cambre, A Coruña, Spain

 

ImageThis company is capitalized by INNVIERTE, AN INVESTMENT PROGRAM OF CDTI, E.P.E

Cookie Policy | Privacy policy | Legal Disclaimer

Copyright © 2026 Appentra Solutions, S.L.

We use cookies!
This website uses cookies to improve your experience. You can accept all cookies by clicking "Accept Cookies" button or configure them by clicking the "Manage cookies" button.
Read moreManage cookies
RejectAccept Cookies
Cookies Policy

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these cookies, 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 have an effect on your experience.

CookieTypeDurationDescription
0
__asc030 minutes
__auc01 year
__bs_id01 year
__cfduid11 monthThe cookie is set by CloudFare. The cookie is used to identify individual clients behind a shared IP address d apply security settings on a per-client basis. It doesnot correspond to any user ID in the web application and doesn't store any personally identifiable information.
__gads01 yearThis cookie is set by Google and stored under the name dounleclick.com. This cookie is used to track how many times users see a particular advert which helps in measuring the success of the campaign and calculate the revenue generated by the campaign. These cookies can only be read from the domain that it is set on so it will not track any data while browsing through another sites.
__lxGr__ses015 minutes
__lxGr__var_654116015 minutes
__lxGr__var_654122015 minutes
__lxGr__var_654124015 minutes
__lxGr__var_654130015 minutes
__lxGr__var_654134015 minutes
__lxGr__var_654146015 minutes
__lxGr__var_654157015 minutes
__lxGr__var_654161015 minutes
__lxGr__var_654163015 minutes
__lxGr__var_654165015 minutes
__lxGr__var_654333015 minutes
__stid01 yearThe cookie is set by ShareThis. The cookie is used for site analytics to determine the pages visited, the amount of time spent, etc.
__stidv01 year
__utma02 yearsThis cookie is set by Google Analytics and is used to distinguish users and sessions. The cookie is created when the JavaScript library executes and there are no existing __utma cookies. The cookie is updated every time data is sent to Google Analytics.
__utmb030 minutesThe cookie is set by Google Analytics. The cookie is used to determine new sessions/visits. The cookie is created when the JavaScript library executes and there are no existing __utma cookies. The cookie is updated every time data is sent to Google Analytics.
__utmc0The cookie is set by Google Analytics and is deleted when the user closes the browser. The cookie is not used by ga.js. The cookie is used to enable interoperability with urchin.js which is an older version of Google analytics and used in conjunction with the __utmb cookie to determine new sessions/visits.
__utmt010 minutesThe cookie is set by Google Analytics and is used to throttle the request rate.
__utmt_onm010 minutes
__utmz06 monthsThis cookie is set by Google analytics and is used to store the traffic source or campaign through which the visitor reached your site.
_abck01 year
_cb01 year
_cb_ls01 year
_cb_svref030 minutes
_chartbeat201 year
_fbp02 monthsThis cookie is set by Facebook to deliver advertisement when they are on Facebook or a digital platform powered by Facebook advertising after visiting this website.
_ga02 yearsThis cookie is installed by Google Analytics. The cookie is used to calculate visitor, session, campaign data and keep track of site usage for the site's analytics report. The cookies store information anonymously and assigns a randoly generated number to identify unique visitors.
_ga_Y5Q8GRTQY902 years
_gat01 minuteThis cookies is installed by Google Universal Analytics to throttle the request rate to limit the collection of data on high traffic sites.
_gat_bgs01 minute
_gat_gtag_UA_25587466_801 minuteGoogle uses this cookie to distinguish users.
_gat_gtag_UA_84471197_1601 minuteGoogle uses this cookie to distinguish users.
_gat_hearst01 minute
_gat_tDelegDominio01 minute
_gat_tDominio01 minute
_gat_tRollupComscore01 minute
_gat_tRollupDelegacion01 minute
_gat_tRollupGlobal01 minute
_gat_tRollupLvgTotal01 minute
_gat_tRollupNivel101 minute
_gat_UA-5144860-201 minuteThis is a pattern type cookie set by Google Analytics, where the pattern element on the name contains the unique identity number of the account or website it relates to. It appears to be a variation of the _gat cookie which is used to limit the amount of data recorded by Google on high traffic volume websites.
_gid01 dayThis cookie is installed by Google Analytics. The cookie is used to store information of how visitors use a website and helps in creating an analytics report of how the website is doing. The data collected including the number visitors, the source where they have come from, and the pages visited in an anonymous form.
_kuid_05 monthsThe cookie is set by Krux Digital under the domain krxd.net. The cookie stores a unique ID to identify a returning user for the purpose of targeted advertising.
_li_ss01 month
Necessary
Always Enabled

Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.

CookieTypeDurationDescription
__cfduid11 monthThe cookie is set by CloudFare. The cookie is used to identify individual clients behind a shared IP address d apply security settings on a per-client basis. It doesnot correspond to any user ID in the web application and doesn't store any personally identifiable information.
cookielawinfo-checkbox-necessary011 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-necessary01 hourThis cookie is set by GDPR Cookie Consent plugin. The purpose of this cookie is to check whether or not the user has given the consent to the usage of cookies under the category 'Necessary'.
cookielawinfo-checkbox-non-necessary011 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Non Necessary".
cookielawinfo-checkbox-non-necessary01 hourThis cookie is set by GDPR Cookie Consent plugin. The purpose of this cookie is to check whether or not the user has given their consent to the usage of cookies under the category 'Non-Necessary'.
DSID11 hourTo note specific user identity. Contains hashed/encrypted unique ID.
JSESSIONID1Used by sites written in JSP. General purpose platform session cookies that are used to maintain users' state across page requests.
PHPSESSID0This cookie is native to PHP applications. The cookie is used to store and identify a users' unique session ID for the purpose of managing user session on the website. The cookie is a session cookies and is deleted when all the browser windows are closed.
pmpro_visit0The cookie is set by the Paid Membership Pro plugin. The cookie is used to manage user memberships.
viewed_cookie_policy011 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.
viewed_cookie_policy01 hourThe 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.
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.

CookieTypeDurationDescription
__gads01 yearThis cookie is set by Google and stored under the name dounleclick.com. This cookie is used to track how many times users see a particular advert which helps in measuring the success of the campaign and calculate the revenue generated by the campaign. These cookies can only be read from the domain that it is set on so it will not track any data while browsing through another sites.
__stid01 yearThe cookie is set by ShareThis. The cookie is used for site analytics to determine the pages visited, the amount of time spent, etc.
_ga02 yearsThis cookie is installed by Google Analytics. The cookie is used to calculate visitor, session, campaign data and keep track of site usage for the site's analytics report. The cookies store information anonymously and assigns a randoly generated number to identify unique visitors.
_gat_gtag_UA_25587466_801 minuteGoogle uses this cookie to distinguish users.
_gat_gtag_UA_84471197_1601 minuteGoogle uses this cookie to distinguish users.
_gid01 dayThis cookie is installed by Google Analytics. The cookie is used to store information of how visitors use a website and helps in creating an analytics report of how the website is doing. The data collected including the number visitors, the source where they have come from, and the pages visited in an anonymous form.
ad-id17 monthsProvided by amazon-adsystem.com for tracking user actions on other websites to provide targeted content
demdex05 monthsThis cookie is set under the domain demdex.net and is used by Adobe Audience Manager to help identify a unique visitor across domains.
GPS030 minutesThis cookie is set by Youtube and registers a unique ID for tracking users based on their geographical location
pardot0The cookie is set when the visitor is logged in as a Pardot user.
tk_lr01 yearThis cookie is set by JetPack plugin on sites using WooCommerce. This is a referral cookie used for analyzing referrer behavior for Jetpack
tk_or05 yearsThis cookie is set by JetPack plugin on sites using WooCommerce. This is a referral cookie used for analyzing referrer behavior for Jetpack
tk_r3d03 daysThe cookie is installed by JetPack. Used for the internal metrics fo user activities to improve user experience
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.

CookieTypeDurationDescription
_fbp02 monthsThis cookie is set by Facebook to deliver advertisement when they are on Facebook or a digital platform powered by Facebook advertising after visiting this website.
_kuid_05 monthsThe cookie is set by Krux Digital under the domain krxd.net. The cookie stores a unique ID to identify a returning user for the purpose of targeted advertising.
ad-privacy15 yearsProvided by amazon-adsystem.com for tracking user actions on other websites to provide targeted content to the users.
ATN12 yearsThe cookie is set by atdmt.com. The cookies stores data about the user behavior on multiple websites. The data is then used to serve relevant advertisements to the users on the website.
dpm05 monthsThe cookie is set by demdex.net. This cookie assigns a unique ID to each visiting user that allows third-party advertisers target that users with relevant ads.
everest_g_v201 yearThe cookie is set under eversttech.net domain. The purpose of the cookie is to map clicks to other events on the client's website.
fr12 monthsThe cookie is set by Facebook to show relevant advertisements to the users and measure and improve the advertisements. The cookie also tracks the behavior of the user across the web on sites that have Facebook pixel or Facebook social plugin.
IDE12 yearsUsed by Google DoubleClick and stores information about how the user uses the website and any other advertisement before visiting the website. This is used to present users with ads that are relevant to them according to the user profile.
khaos01 yearThis cookie is set by rubiconproject.com. The cookie is used to store user data in an anonymous form such as the IP address, geographical location, websites visited, and the ads clicked. The purpose of the cookie is to tailor the ads displayed to the users based on the users movement on other site in the same ad network.
ljt_reader01 yearThis is a Lijit Advertising Platform cookie. The cookie is used for recognizing the browser or device when users return to their site or one of their partner's site.
mako_uid01 yearThis cookie is set under the domain ps.eyeota.net. The cookies is used to collect data about the users' visit to the website such as the pages visited. The data is used to create a users' profile in terms of their interest and demographic. This data is used for targeted advertising and marketing.
mc01 yearThis cookie is associated with Quantserve to track anonymously how a user interact with the website.
NID16 monthsThis cookie is used to a profile based on user's interest and display personalized ads to the users.
p201 weekThe cookies is set by ownerIQ for the purpose of providing relevant advertisement.
personalization_id02 yearsThis cookie is set by twitter.com. It is used integrate the sharing features of this social media. It also stores information about how the user uses the website for tracking and targeting.
PUBMDCID02 monthsThis cookie is set by pubmatic.com. The cookie stores an ID that is used to display ads on the users' browser.
si05 yearsThe cookies is set by ownerIQ for the purpose of providing relevant advertisement.
TDCPM01 yearThe cookie is set by CloudFare service to store a unique ID to identify a returning users device which then is used for targeted advertising.
TDID01 yearThe cookie is set by CloudFare service to store a unique ID to identify a returning users device which then is used for targeted advertising.
test_cookie015 minutesThis cookie is set by doubleclick.net. The purpose of the cookie is to determine if the users' browser supports cookies.
tuuid01 yearThis cookie is set by .bidswitch.net. The cookies stores a unique ID for the purpose of the determining what adverts the users have seen if you have visited any of the advertisers website. The information is used for determining when and how often users will see a certain banner.
tuuid_lu01 yearThis cookie is set by .bidswitch.net. The cookies stores a unique ID for the purpose of the determining what adverts the users have seen if you have visited any of the advertisers website. The information is used for determining when and how often users will see a certain banner.
uid01 monthThis cookie is used to measure the number and behavior of the visitors to the website anonymously. The data includes the number of visits, average duration of the visit on the website, pages visited, etc. for the purpose of better understanding user preferences for targeted advertisements.
uuid01 monthTo optimize ad relevance by collecting visitor data from multiple websites such as what pages have been loaded.
VISITOR_INFO1_LIVE15 monthsThis cookie is set by Youtube. Used to track the information of the embedded YouTube videos on a website.
Technical

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.

CookieTypeDurationDescription
__utma02 yearsThis cookie is set by Google Analytics and is used to distinguish users and sessions. The cookie is created when the JavaScript library executes and there are no existing __utma cookies. The cookie is updated every time data is sent to Google Analytics.
__utmb030 minutesThe cookie is set by Google Analytics. The cookie is used to determine new sessions/visits. The cookie is created when the JavaScript library executes and there are no existing __utma cookies. The cookie is updated every time data is sent to Google Analytics.
__utmc0The cookie is set by Google Analytics and is deleted when the user closes the browser. The cookie is not used by ga.js. The cookie is used to enable interoperability with urchin.js which is an older version of Google analytics and used in conjunction with the __utmb cookie to determine new sessions/visits.
__utmt010 minutesThe cookie is set by Google Analytics and is used to throttle the request rate.
__utmz06 monthsThis cookie is set by Google analytics and is used to store the traffic source or campaign through which the visitor reached your site.
_gat01 minuteThis cookies is installed by Google Universal Analytics to throttle the request rate to limit the collection of data on high traffic sites.
_gat_UA-5144860-201 minuteThis is a pattern type cookie set by Google Analytics, where the pattern element on the name contains the unique identity number of the account or website it relates to. It appears to be a variation of the _gat cookie which is used to limit the amount of data recorded by Google on high traffic volume websites.
AMP_TOKEN01 hourThis cookie is set by Google Analytics - This cookie contains a token that can be used to retrieve a Client ID from AMP Client ID service. Other possible values indicate opt-out, inflight request or an error retrieving a Client ID from AMP Client ID service.
audit01 yearThis cookie is set by Rubicon Project and is used for recording cookie consent data.
bcookie02 yearsThis cookie is set by linkedIn. The purpose of the cookie is to enable LinkedIn functionalities on the page.
lang0This cookie is used to store the language preferences of a user to serve up content in that stored language the next time user visit the website.
lidc01 dayThis cookie is set by LinkedIn and used for routing.
mailchimp_landing_site04 weeksThe cookie is set by the email marketing service MailChimp.
na_id01 yearThis cookie is set by Addthis.com to enable sharing of links on social media platforms like Facebook and Twitter
ouid01 yearThe cookie is set by Addthis which enables the content of the website to be shared across different networking and social sharing websites.
pid01 yearHelps users identify the users and lets the users use twitter related features from the webpage they are visiting.
PugT01 monthThis cookie is set by pubmatic.com. The purpose of the cookie is to check when the cookies were last updated on the browser in order to limit the number of calls to the server-side cookie store.
sid0This cookie is very common and is used for session state management.
test_cookie011 monthsThis cookie is set by doubleclick.net. The purpose of the cookie is to determine if the users' browser supports cookies.
YSC1This cookies is set by Youtube and is used to track the views of embedded videos.
Save & Accept
Advertisement