Giter Club home page Giter Club logo
  • šŸ‘‹ Hi, Iā€™m @Luiskiing
  • šŸ‘€ Iā€™m interested in ...
  • šŸŒ± Iā€™m currently learning ...
  • šŸ’žļø Iā€™m looking to collaborate on ...
  • šŸ“« How to reach me ...

Luis de la rosa's Projects

.github icon .github

[Optimism] Default GitHub configuration files

congenial-potato icon congenial-potato

name: Content Changes Table Comment # **What it does**: When a PR is opened in docs-internal or docs, it adds the staging preview and live article links in a Content Directory Changes table in a comment # **Why we have it**: To help Docs Content team members and contributors automatically have their staging/live article links added to the table # **Who does it impact**: docs-internal/docs maintainers and contributors on: workflow_dispatch: pull_request_target: types: [opened, synchronize, reopened] jobs: PR-Preview-Links: name: Add staging/live links to PR runs-on: ubuntu-latest outputs: filterContentDir: ${{ steps.filter.outputs.filterContentDir }} steps: - name: Get files changed uses: dorny/paths-filter@eb75a1edc117d3756a18ef89958ee59f9500ba58 id: filter with: # Base branch used to get changed files base: ${{ github.event.pull_request.base.ref }} # Enables setting an output in the format in `${FILTER_NAME}_files # with the names of the matching files formatted as JSON array list-files: json # Returns list of changed files matching each filter filters: | filterContentDir: - 'content/**/*' filterContentDir: needs: PR-Preview-Links if: ${{ needs.PR-Preview-Links.outputs.filterContentDir == 'true' }} runs-on: ubuntu-latest steps: - name: check out repo content uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97 - name: Setup Node uses: actions/setup-node@270253e841af726300e85d718a5f606959b2903c with: node-version: 16.8.x cache: npm - name: Install temporary dependencies run: | npm install --no-save github-slugger npm install --no-save --include=optional esm - name: Get changes table uses: actions/github-script@2b34a689ec86a68d8ab9478298f91d5401337b7d id: changes env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: script: | // Workaround to allow us to load ESM files with `require(...)` const esm = require('esm') require = esm({}) const { default: createStagingAppName } = require('./script/deployment/create-staging-app-name') const stagingPrefix = createStagingAppName({ repo: context.payload.repository.name, pullNumber: context.payload.number, branch: context.payload.pull_request.head.ref, }) const response = await github.repos.compareCommits({ owner: context.repo.owner, repo: context.repo.repo, base: context.payload.pull_request.base.sha, head: context.payload.pull_request.head.sha }) const files = response.data.files let markdownTable = '| **Source** | **Staging** | **Production** | **What Changed** |\n|:----------- |:----------- |:----------- |:----------- |\n' const pathPrefix = 'content/' const articleFiles = files.filter(({ filename }) => filename.startsWith(pathPrefix) && !filename.endsWith('/index.md')) for (const file of articleFiles) { const sourceUrl = file.blob_url const fileName = file.filename.slice(pathPrefix.length) const fileUrl = fileName.slice(0, fileName.lastIndexOf('.')) const stagingLink = `https://${stagingPrefix}.herokuapp.com/${fileUrl}` const productionLink = `https://docs.github.com/${fileUrl}` let markdownLine = '' if (file.status === 'modified') { markdownLine = `| [content/${fileName}](${sourceUrl}) | [Modified](${stagingLink}) | [Original](${productionLink}) | |\n` } else if (file.status === 'added') { markdownLine = `| New file: [content/${fileName}](${sourceUrl}) | [Modified](${stagingLink}) | | |\n` } markdownTable += markdownLine } core.setOutput('changesTable', markdownTable) - name: Find content directory changes comment uses: peter-evans/find-comment@d2dae40ed151c634e4189471272b57e76ec19ba8 id: findComment with: issue-number: ${{ github.event.pull_request.number }} comment-author: 'github-actions[bot]' body-includes: '<!-- MODIFIED_CONTENT_LINKING_COMMENT -->' - name: Update comment uses: peter-evans/create-or-update-comment@5221bf4aa615e5c6e95bb142f9673a9c791be2cd with: comment-id: ${{ steps.findComment.outputs.comment-id }} issue-number: ${{ github.event.pull_request.number }} body: | <!-- MODIFIED_CONTENT_LINKING_COMMENT --> ## Automatically generated comment ā„¹ļø **This comment is automatically generated and will be overwritten every time changes are committed to this branch.** The table contains an overview of files in the `content` directory that have been changed in this pull request. It's provided to make it easy to review your changes on the staging site. Please note that changes to the `data` directory will not show up in this table. --- ### Content directory changes _You may find it useful to copy this table into the pull request summary. There you can edit it to share links to important articles or changes and to give a high-level overview of how the changes in your pull request support the overall goals of the pull request._ ${{ steps.changes.outputs.changesTable }} edit-mode: replace

docs icon docs

The open-source repo for docs.github.com

license icon license

7-Zip ~~~~~ License for use and distribution ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 7-Zip Copyright (C) 1999-2021 Igor Pavlov. The licenses for files are: 1) 7z.dll: - The "GNU LGPL" as main license for most of the code - The "GNU LGPL" with "unRAR license restriction" for some code - The "BSD 3-clause License" for some code 2) All other files: the "GNU LGPL". Redistributions in binary form must reproduce related license information from this file. Note: You can use 7-Zip on any computer, including a computer in a commercial organization. You don't need to register or pay for 7-Zip. GNU LGPL information -------------------- This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You can receive a copy of the GNU Lesser General Public License from http://www.gnu.org/ BSD 3-clause License -------------------- The "BSD 3-clause License" is used for the code in 7z.dll that implements LZFSE data decompression. That code was derived from the code in the "LZFSE compression library" developed by Apple Inc, that also uses the "BSD 3-clause License": ---- Copyright (c) 2015-2016, Apple Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder(s) nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ---- unRAR license restriction ------------------------- The decompression engine for RAR archives was developed using source code of unRAR program. All copyrights to original unRAR code are owned by Alexander Roshal. The license for original unRAR code has the following restriction: The unRAR sources cannot be used to re-create the RAR compression algorithm, which is proprietary. Distribution of modified unRAR sources in separate form or as a part of other software is permitted, provided that it is clearly stated in the documentation and source comments that the code may not be used to develop a RAR (WinRAR) compatible archiver. -- Igor Pavlov

rtu icon rtu

id,action,user_auth_token_id,client_ip,auth_token_hash,created_at,path,user_agent 909922,rotate,83246,190.166.7.174,GIRDA...,2021-10-03 20:35:00 UTC,/t/colorblind-variants-for-themes/148087/14,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 909923,seen token,83246,190.166.7.174,GIRDA...,2021-10-03 20:35:01 UTC,/extra-locales/overrides,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 909945,seen token,83246,190.166.7.174,6FIcM...,2021-10-03 20:59:38 UTC,/message-bus/93820cd6ba994e18800670707751f433/poll,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 909951,seen token,83246,190.166.7.174,7es/T...,2021-10-03 21:11:28 UTC,/message-bus/74a75a3f040e4032934572f47569ddbc/poll,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 909944,rotate,83246,190.166.7.174,6FIcM...,2021-10-03 20:58:55 UTC,/t/colorblind-variants-for-themes/148087/14,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 909950,rotate,83246,190.166.7.174,7es/T...,2021-10-03 21:11:08 UTC,/t/colorblind-variants-for-themes/148087/14,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 909971,rotate,83246,190.166.7.174,8j/RD...,2021-10-03 21:34:24 UTC,/t/colorblind-variants-for-themes/148087/14,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 909972,seen token,83246,190.166.7.174,8j/RD...,2021-10-03 21:34:29 UTC,/message-bus/c586c21013de4711ac294961690fd793/poll,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 909985,seen token,83246,190.166.7.174,jwrr2...,2021-10-03 21:57:48 UTC,/message-bus/c586c21013de4711ac294961690fd793/poll,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 909984,rotate,83246,190.166.7.174,jwrr2...,2021-10-03 21:57:27 UTC,/drafts/topic_204549.json,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 910024,rotate,83246,190.166.7.174,kw7Bo...,2021-10-03 22:41:29 UTC,/t/colorblind-variants-for-themes/148087/60,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 910025,seen token,83246,190.166.7.174,kw7Bo...,2021-10-03 22:41:35 UTC,/manifest.webmanifest,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 910063,rotate,83246,190.166.7.174,IMRgm...,2021-10-03 23:36:14 UTC,/t/colorblind-variants-for-themes/148087/38,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 910064,seen token,83246,190.166.7.174,IMRgm...,2021-10-03 23:36:31 UTC,/message-bus/ed4d88e6663e4ae2beb71e3a7d10a7c0/poll,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 910099,rotate,83246,190.166.7.174,xI64Z...,2021-10-04 00:30:13 UTC,/t/colorblind-variants-for-themes/148087/38,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 910100,seen token,83246,190.166.7.174,xI64Z...,2021-10-04 00:30:32 UTC,/message-bus/7731b7bc6d8548d6b65156ee421dbce5/poll,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 910083,seen token,83246,190.166.7.174,02ibA...,2021-10-04 00:03:14 UTC,/message-bus/feb0dc3dabf84047ac6b0fbc471868d8/poll,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 910084,seen token,83246,190.166.7.174,02ibA...,2021-10-04 00:03:14 UTC,/manifest.webmanifest,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 910082,rotate,83246,190.166.7.174,02ibA...,2021-10-04 00:02:59 UTC,/t/colorblind-variants-for-themes/148087/38,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 911053,rotate,83246,190.166.7.150,TsfSC...,2021-10-04 14:28:53 UTC,/t/colorblind-variants-for-themes/148087/34,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 911054,seen token,83246,190.166.7.150,TsfSC...,2021-10-04 14:28:59 UTC,/message-bus/6accbed517704caabec8640b325aab52/poll,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 911202,rotate,83246,190.166.7.150,N9kzt...,2021-10-04 15:33:56 UTC,/t/colorblind-variants-for-themes/148087/34,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 911203,seen token,83246,190.166.7.150,N9kzt...,2021-10-04 15:34:00 UTC,/message-bus/e89d1b978e324bfbafa8860686ebc64a/poll,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 911239,rotate,83246,190.166.7.150,v5He+...,2021-10-04 15:46:52 UTC,/t/colorblind-variants-for-themes/148087/34,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 911240,seen token,83246,190.166.7.150,v5He+...,2021-10-04 15:46:59 UTC,/composer_messages,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 911278,rotate,83246,190.166.7.150,U8Lwx...,2021-10-04 15:58:20 UTC,/topics/timings,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 911268,rotate,83246,190.166.7.150,gJ0pE...,2021-10-04 15:57:20 UTC,/topics/timings,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 911343,seen token,83246,190.166.7.150,rgA3N...,2021-10-04 16:30:14 UTC,/composer_messages,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 911342,rotate,83246,190.166.7.150,rgA3N...,2021-10-04 16:30:09 UTC,/t/colorblind-variants-for-themes/148087/34,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 911421,rotate,83246,190.166.7.75,Zs+EF...,2021-10-04 17:11:58 UTC,/t/colorblind-variants-for-themes/148087/34,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 911422,seen token,83246,190.166.7.75,Zs+EF...,2021-10-04 17:12:10 UTC,/composer_messages,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 911466,rotate,83246,190.166.7.75,OGJIs...,2021-10-04 17:35:03 UTC,/t/colorblind-variants-for-themes/148087/34,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 911467,seen token,83246,190.80.246.147,OGJIs...,2021-10-04 17:35:10 UTC,/composer_messages,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 912243,seen token,83246,190.166.7.75,8oEgp...,2021-10-05 05:10:58 UTC,/composer_messages,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 912240,rotate,83246,190.166.7.75,8oEgp...,2021-10-05 05:10:53 UTC,/t/colorblind-variants-for-themes/148087/60,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 912830,rotate,83246,190.166.7.123,GptbB...,2021-10-05 13:10:59 UTC,/notifications,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 912831,seen token,83246,190.166.7.123,GptbB...,2021-10-05 13:10:59 UTC,/notifications,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 913024,rotate,83246,190.166.7.123,vjT1Q...,2021-10-05 14:36:04 UTC,/t/explain-me-curl-use-cookie-jar-file-in-script/204849,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 913025,seen token,83246,190.166.7.123,vjT1Q...,2021-10-05 14:36:10 UTC,/message-bus/6e136ba247ef47fb81804e63d4c0464b/poll,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 913461,rotate,83246,190.166.7.123,lebDq...,2021-10-05 18:06:18 UTC,/t/ecosystem-community-update-october-2021/204912/1,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 913462,seen token,83246,190.166.7.123,lebDq...,2021-10-05 18:06:35 UTC,/message-bus/dec1b63c47bb4dfa9bbf58eb4d51f186/poll,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 913605,seen token,83246,190.166.7.123,D/dJO...,2021-10-05 19:04:47 UTC,/message-bus/9ca4e32a9fe148ee8ba90f5f332f6fb2/poll,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 913604,rotate,83246,190.166.7.123,D/dJO...,2021-10-05 19:04:41 UTC,/t/ecosystem-community-update-october-2021/204912,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 913687,rotate,83246,190.166.7.123,ZTlZr...,2021-10-05 19:33:38 UTC,/topics/timings,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 913696,rotate,83246,190.166.7.123,s2ELm...,2021-10-05 19:34:41 UTC,/t/200536/1.json,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 913697,seen token,83246,190.166.7.123,s2ELm...,2021-10-05 19:34:42 UTC,/message-bus/9ca4e32a9fe148ee8ba90f5f332f6fb2/poll,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 913756,rotate,83246,190.166.7.123,6A0QZ...,2021-10-05 19:56:11 UTC,/t/want-to-merge-in-upstream-master-into-my-master/204139,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 913757,seen token,83246,190.166.7.123,6A0QZ...,2021-10-05 19:56:18 UTC,/message-bus/948e11dbb739497e9b04a195f847090b/poll,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 913849,rotate,83246,190.166.7.123,g23/5...,2021-10-05 20:41:46 UTC,/t/colorblind-variants-for-themes/148087/60,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 913850,seen token,83246,190.166.7.123,g23/5...,2021-10-05 20:41:51 UTC,/composer_messages,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" 885568,generate,83246,201.229.162.51,hBhIc...,2021-09-19 18:18:59 UTC,/auth/github/callback,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" 885569,seen token,83246,201.229.162.51,hBhIc...,2021-09-19 18:19:00 UTC,/,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36"

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    šŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. šŸ“ŠšŸ“ˆšŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ā¤ļø Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.