René's URL Explorer Experiment


Title: Some code corrections to avoid violations on SOLID principles · Issue #2 · flyworker/java-workshop · GitHub

Open Graph Title: Some code corrections to avoid violations on SOLID principles · Issue #2 · flyworker/java-workshop

X Title: Some code corrections to avoid violations on SOLID principles · Issue #2 · flyworker/java-workshop

Description: Hola, He visto la mayoría de tus proyectos y los encuentro muy buenos para enseñar. Sin embargo, he notado algunas violaciones de los principios de diseño SOLID. Aquí dejo algunas correcciones de cómo los diferentes proyectos podrían ver...

Open Graph Description: Hola, He visto la mayoría de tus proyectos y los encuentro muy buenos para enseñar. Sin embargo, he notado algunas violaciones de los principios de diseño SOLID. Aquí dejo algunas correcciones de c...

X Description: Hola, He visto la mayoría de tus proyectos y los encuentro muy buenos para enseñar. Sin embargo, he notado algunas violaciones de los principios de diseño SOLID. Aquí dejo algunas correcciones de c...

Opengraph URL: https://github.com/flyworker/java-workshop/issues/2

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Some code corrections to avoid violations on SOLID principles","articleBody":"Hola, \r\n\r\nHe visto la mayoría de tus proyectos y los encuentro muy buenos para enseñar. Sin embargo, he notado algunas violaciones de los principios de diseño SOLID. Aquí dejo algunas correcciones de cómo los diferentes proyectos podrían verse, resolviendo estas violaciones, para que puedan enseñarse o ponerse en práctica de una mejor manera.\r\n\r\n1. ISP y LSP en las clases bird y pengin, tambien en la interface Fly\r\n\r\n`public interface Flyer { \r\n    void fly(); \r\n}  \r\n\r\npublic interface Swimmer { \r\n    void swim(); \r\n} \r\n\r\npublic interface Runner { \r\n    double speed(); \r\n} \r\n\r\n// Calse abstracta Bird \r\n\r\nprivate abstract class Bird { \r\n\r\n    private String name; \r\n    private boolean hasFeather; \r\n\r\n    protected Bird(String name) { \r\n        this.name = name; \r\n        this.hasFeather = true; \r\n    } \r\n\r\n    protected Bird(String name, boolean hasFeather) { \r\n        this.name = name; \r\n        this.hasFeather = hasFeather; \r\n    } \r\n\r\n    public boolean isHasFeather() { \r\n        return hasFeather; \r\n    } \r\n\r\n    public String getName() { \r\n        return name; \r\n    } \r\n    public abstract void spawnEgg(); \r\n\r\n    @Override \r\n    public String toString() { \r\n        return \"Bird{\" + \r\n                \"name='\" + name + '\\'' + \r\n                \", hasFeather=\" + hasFeather + \r\n                '}'; \r\n    } \r\n} \r\n\r\n// Clase Penguin que implementa las interfaces necesarias \r\n\r\nclass Penguin extends Bird implements Swimmer, Runner { \r\n    public Penguin(String name) { \r\n        super(name); \r\n    } \r\n\r\n    public Penguin(String name, boolean hasFeather) { \r\n        super(name, hasFeather); \r\n    } \r\n\r\n    @Override \r\n    public double speed() { \r\n        return 10.0; \r\n    } \r\n\r\n    @Override \r\n    public void swim() { \r\n        System.out.println(\"yo puedo nadar.\"); \r\n    }  \r\n\r\n    // Método específico de Penguin \r\n\r\n    public void spawnEgg() { \r\n        System.out.println(\"Pinguino poniendo un huevo.\"); \r\n    } \r\n} `\r\n\r\n![image](https://github.com/flyworker/java-workshop/assets/150173288/808e6278-dd32-4399-bed2-6bf7f0b8962e)\r\n\r\n2. DIP en las classes ImplementacionNube \r\n\r\n`// Interfaz para servicios de nube \r\n\r\npublic interface ServicioNube { \r\n    boolean iniciarSesion(String usuario, String contrasena); \r\n    void subirArchivo(File archivo); \r\n    String descargarArchivo(String nombreArchivo); \r\n} \r\n\r\n// Implementación de la interfaz ServicioNube \r\n\r\npublic class ImplementacionNube implements ServicioNube { \r\n    // Constructor y métodos \r\n\r\n} \r\n\r\n// Cliente de nube que depende de la abstracción (interfaz) \r\n\r\npublic class ClienteNube { \r\n    private ServicioNube servicioNube; \r\n    \r\n    public ClienteNube(ServicioNube servicioNube) { \r\n        this.servicioNube = servicioNube; \r\n    } \r\n\r\n    public boolean iniciarSesion(String usuario, String contrasena) { \r\n        return servicioNube.iniciarSesion(usuario, contrasena); \r\n    } \r\n\r\n    public void subirArchivo(File archivo) { \r\n        servicioNube.subirArchivo(archivo); \r\n    } \r\n\r\n    public String descargarArchivo(String nombreArchivo) { \r\n        return servicioNube.descargarArchivo(nombreArchivo); \r\n    } \r\n\r\n} `\r\n\r\n![image](https://github.com/flyworker/java-workshop/assets/150173288/ff8a4038-a161-42ed-9cdd-8e0ba83846a6)\r\n\r\n3. SRP en la clase conexión nube\r\n\r\n`// Clase para manejar la conexión a la nube \r\n\r\npublic class ConexionNube { \r\n    private String usuario; \r\n    private String contrasena; \r\n\r\n    public ConexionNube(String usuario, String contrasena) { \r\n        this.usuario = usuario; \r\n        this.contrasena = contrasena; \r\n    } \r\n    // Métodos para la conexión \r\n} \r\n\r\n // Clase para operaciones específicas de la nube \r\n\r\npublic class OperacionesNube { \r\n    private ConexionNube conexionNube; \r\n\r\n    public OperacionesNube(ConexionNube conexionNube) { \r\n        this.conexionNube = conexionNube; \r\n    } \r\n\r\n    public void subirArchivo(String archivo) { \r\n        // Lógica para subir el archivo \r\n    } \r\n\r\n    public String descargarArchivo(String archivo) { \r\n        // Lógica para descargar el archivo \r\n    } \r\n\r\n    public String descargaRapida(String archivo) { \r\n        // Lógica del método \r\n    } \r\n\r\n} `\r\n\r\n![image](https://github.com/flyworker/java-workshop/assets/150173288/ef027408-bf79-4356-8312-ff321cf03653)\r\n\r\n4. OCP en las clases EstrategiaNubeAWS, ServicioNube y EstrategiaNubeAzure\r\n\r\n`// Interfaz para la estrategia de nube \r\n\r\ninterface EstrategiaNube { \r\n    void subir(String archivo); \r\n    String descargar(String archivo); \r\n\r\n} \r\n\r\n// Implementaciones de nube \r\n\r\nclass EstrategiaNubeAWS implements EstrategiaNube { \r\n    public void subir(String archivo) { \r\n        // Implementación específica de AWS  \r\n    } \r\n\r\n    public String descargar(String archivo) { \r\n        // Implementación de AWS para decargar \r\n    }\r\n\r\n} \r\n\r\nclass EstrategiaNubeAzure implements EstrategiaNube { \r\n    public void subir(String archivo) { \r\n        // Implementación para subir \r\n    } \r\n\r\n    public String descargar(String archivo) { \r\n        // Implementación para descargar \r\n    } \r\n\r\n} \r\n\r\n// Clase de servicio de Nube \r\nclass ServicioNube { \r\n    private EstrategiaNube estrategiaNube; \r\n\r\n    public ServicioNube(EstrategiaNube estrategiaNube) { \r\n        this.estrategiaNube = estrategiaNube; \r\n    } \r\n\r\n    public void subirArchivo(String archivo) { \r\n        estrategiaNube.subir(archivo); \r\n    } \r\n\r\n    public String descargarArchivo(String archivo) { \r\n        return estrategiaNube.descargar(archivo); \r\n    } \r\n\r\n} `\r\n\r\n![image](https://github.com/flyworker/java-workshop/assets/150173288/b278bfe6-0dfc-4fe0-89f7-b96649bdfcde)\r\n","author":{"url":"https://github.com/LuisVergaraA","@type":"Person","name":"LuisVergaraA"},"datePublished":"2024-06-21T02:31:30.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/2/java-workshop/issues/2"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:716ffcb7-712c-9497-bda1-e694c3763c2d
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idA720:3B932:74ACC8:9748A6:69921E80
html-safe-noncefaba4ce503fb1f8250d2bb996488ab45f9ab107e50977b4ebe13d3f783fa1fe2
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBNzIwOjNCOTMyOjc0QUNDODo5NzQ4QTY6Njk5MjFFODAiLCJ2aXNpdG9yX2lkIjoiNjY5NTMyODAyODc3MDMxMTgwOCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac5e8076ce17b48893f837f40d22a5acc3681af854542de82e280f78f4c40af0ec
hovercard-subject-tagissue:2365574223
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/flyworker/java-workshop/2/issue_layout
twitter:imagehttps://opengraph.githubassets.com/cd34ae3a95bbba79db5464b1fce6be1f2f148d53fda10b4e6d9f0213efb4f627/flyworker/java-workshop/issues/2
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/cd34ae3a95bbba79db5464b1fce6be1f2f148d53fda10b4e6d9f0213efb4f627/flyworker/java-workshop/issues/2
og:image:altHola, He visto la mayoría de tus proyectos y los encuentro muy buenos para enseñar. Sin embargo, he notado algunas violaciones de los principios de diseño SOLID. Aquí dejo algunas correcciones de c...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameLuisVergaraA
hostnamegithub.com
expected-hostnamegithub.com
None42c603b9d642c4a9065a51770f75e5e27132fef0e858607f5c9cb7e422831a7b
turbo-cache-controlno-preview
go-importgithub.com/flyworker/java-workshop git https://github.com/flyworker/java-workshop.git
octolytics-dimension-user_id8363795
octolytics-dimension-user_loginflyworker
octolytics-dimension-repository_id100090200
octolytics-dimension-repository_nwoflyworker/java-workshop
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id100090200
octolytics-dimension-repository_network_root_nwoflyworker/java-workshop
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release848bc6032dcc93a9a7301dcc3f379a72ba13b96e
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/flyworker/java-workshop/issues/2#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fflyworker%2Fjava-workshop%2Fissues%2F2
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fflyworker%2Fjava-workshop%2Fissues%2F2
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=flyworker%2Fjava-workshop
Reloadhttps://patch-diff.githubusercontent.com/flyworker/java-workshop/issues/2
Reloadhttps://patch-diff.githubusercontent.com/flyworker/java-workshop/issues/2
Reloadhttps://patch-diff.githubusercontent.com/flyworker/java-workshop/issues/2
flyworker https://patch-diff.githubusercontent.com/flyworker
java-workshophttps://patch-diff.githubusercontent.com/flyworker/java-workshop
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fflyworker%2Fjava-workshop
Fork 12 https://patch-diff.githubusercontent.com/login?return_to=%2Fflyworker%2Fjava-workshop
Star 13 https://patch-diff.githubusercontent.com/login?return_to=%2Fflyworker%2Fjava-workshop
Code https://patch-diff.githubusercontent.com/flyworker/java-workshop
Issues 7 https://patch-diff.githubusercontent.com/flyworker/java-workshop/issues
Pull requests 0 https://patch-diff.githubusercontent.com/flyworker/java-workshop/pulls
Actions https://patch-diff.githubusercontent.com/flyworker/java-workshop/actions
Projects 0 https://patch-diff.githubusercontent.com/flyworker/java-workshop/projects
Security 0 https://patch-diff.githubusercontent.com/flyworker/java-workshop/security
Insights https://patch-diff.githubusercontent.com/flyworker/java-workshop/pulse
Code https://patch-diff.githubusercontent.com/flyworker/java-workshop
Issues https://patch-diff.githubusercontent.com/flyworker/java-workshop/issues
Pull requests https://patch-diff.githubusercontent.com/flyworker/java-workshop/pulls
Actions https://patch-diff.githubusercontent.com/flyworker/java-workshop/actions
Projects https://patch-diff.githubusercontent.com/flyworker/java-workshop/projects
Security https://patch-diff.githubusercontent.com/flyworker/java-workshop/security
Insights https://patch-diff.githubusercontent.com/flyworker/java-workshop/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/flyworker/java-workshop/issues/2
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/flyworker/java-workshop/issues/2
Some code corrections to avoid violations on SOLID principleshttps://patch-diff.githubusercontent.com/flyworker/java-workshop/issues/2#top
https://github.com/LuisVergaraA
https://github.com/LuisVergaraA
LuisVergaraAhttps://github.com/LuisVergaraA
on Jun 21, 2024https://github.com/flyworker/java-workshop/issues/2#issue-2365574223
https://private-user-images.githubusercontent.com/150173288/341617505-808e6278-dd32-4399-bed2-6bf7f0b8962e.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzExODQwNDUsIm5iZiI6MTc3MTE4Mzc0NSwicGF0aCI6Ii8xNTAxNzMyODgvMzQxNjE3NTA1LTgwOGU2Mjc4LWRkMzItNDM5OS1iZWQyLTZiZjdmMGI4OTYyZS5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMjE1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDIxNVQxOTI5MDVaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT0wNDk2Y2ZlZDhhMGVjOWNmOWJlNzJiZTQ5NzgwZTVkNGFmMDkwMGZhZTAwY2I2MjViZDA4MTE2ZmVhZjliNGZkJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.a2bv141Y8DiayNLU7be9Z6qqgHvjyQSOpCAGKjLfKAM
https://private-user-images.githubusercontent.com/150173288/341617636-ff8a4038-a161-42ed-9cdd-8e0ba83846a6.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzExODQwNDUsIm5iZiI6MTc3MTE4Mzc0NSwicGF0aCI6Ii8xNTAxNzMyODgvMzQxNjE3NjM2LWZmOGE0MDM4LWExNjEtNDJlZC05Y2RkLThlMGJhODM4NDZhNi5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMjE1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDIxNVQxOTI5MDVaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT0yYWE0Y2MwNjY0ZTcwMTJmNWVhZDZlZDg0M2RmMjk3ZGU3OTJiNjJmOThjZTRjYWQzMmIzMjI2ZjQ1MzE4MWI3JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.163LSp3ovrVlhbgpiAnpKdrnJbddcMO35Ww2XRcqXRo
https://private-user-images.githubusercontent.com/150173288/341617689-ef027408-bf79-4356-8312-ff321cf03653.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzExODQwNDUsIm5iZiI6MTc3MTE4Mzc0NSwicGF0aCI6Ii8xNTAxNzMyODgvMzQxNjE3Njg5LWVmMDI3NDA4LWJmNzktNDM1Ni04MzEyLWZmMzIxY2YwMzY1My5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMjE1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDIxNVQxOTI5MDVaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT0wZmE5MDlhMmU0YjZlNDY5MmMzNWE2NzUzZjk1MmUwNjE1NDkwNjZkNDgyODYwZGUyNjVhZTgxZmU2Y2U3OGU4JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.8jNraT3Y7WFD_lXMEbkKpBh3UOs2SBFSeIyEWQ1e4W0
https://private-user-images.githubusercontent.com/150173288/341617776-b278bfe6-0dfc-4fe0-89f7-b96649bdfcde.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzExODQwNDUsIm5iZiI6MTc3MTE4Mzc0NSwicGF0aCI6Ii8xNTAxNzMyODgvMzQxNjE3Nzc2LWIyNzhiZmU2LTBkZmMtNGZlMC04OWY3LWI5NjY0OWJkZmNkZS5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMjE1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDIxNVQxOTI5MDVaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1jNGMxMDdkNzVlMzlhZmE4N2Q4NzcwMDY0NmFiYzkzNDdkNzIyYjgxYzdjMDM3OGUwOGYzOGQwZWZhMGJmMDM4JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.zJ-LFK_UBKZhkcjHxcBvbRY0suTkMB5Q80xyM-_6XsM
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.