René's URL Explorer Experiment


Title: Renders wrong colors · Issue #52 · JavaBWAPI/JBWAPI · GitHub

Open Graph Title: Renders wrong colors · Issue #52 · JavaBWAPI/JBWAPI

X Title: Renders wrong colors · Issue #52 · JavaBWAPI/JBWAPI

Description: I know BW is paletted with limited colors available, but the ones that are currently rendering are nevertheless incorrect (eg previously rendered as expected in BWMirror) Drawing gradients along RGB and HSV spectra: Top-left: Color(x, y,...

Open Graph Description: I know BW is paletted with limited colors available, but the ones that are currently rendering are nevertheless incorrect (eg previously rendered as expected in BWMirror) Drawing gradients along RG...

X Description: I know BW is paletted with limited colors available, but the ones that are currently rendering are nevertheless incorrect (eg previously rendered as expected in BWMirror) Drawing gradients along RG...

Opengraph URL: https://github.com/JavaBWAPI/JBWAPI/issues/52

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Renders wrong colors","articleBody":"I know BW is paletted with limited colors available, but the ones that are currently rendering are nevertheless incorrect (eg previously rendered as expected in BWMirror)\r\n\r\nDrawing gradients along RGB and HSV spectra:\r\n* Top-left: Color(x, y, 0)\r\n* Middle-left: Color(x, 0, y)\r\n* Bottom-left: Color(0, x, y)\r\n* Top-left: Color(x, y, 255)\r\n* Middle-left: Color(x, 255, y)\r\n* Bottom-left: Color(255, x, y)\r\n\r\n![image](https://user-images.githubusercontent.com/116363/73897350-d7e7ce80-4853-11ea-8690-645b2b0676bb.png)\r\n![image](https://user-images.githubusercontent.com/116363/73897361-dfa77300-4853-11ea-836a-d295cb0551fc.png)\r\n\r\nFull source: \r\n\r\n```\r\n  def drawGradient(row: Int, column: Int, color: (Int, Int) =\u003e Color): Unit = {\r\n    val origin = Pixel(264 * row, 264 * column)\r\n    var i = 0\r\n    val scale = 16\r\n    while (i \u003c 256 / scale) {\r\n      var j = 0\r\n      while (j \u003c 256 / scale) {\r\n        val start = origin.add(scale * i, scale * j)\r\n        DrawMap.box(start, start.add(scale, scale), color(scale * i, scale * j), solid = true)\r\n        j += 1\r\n      }\r\n      i += 1\r\n    }\r\n  }\r\n\r\n  override def renderMap(): Unit = {\r\n    drawGradient(0, 0, (x, y) =\u003e new Color(x, y, 0))\r\n    drawGradient(0, 1, (x, y) =\u003e new Color(x, 0, y))\r\n    drawGradient(0, 2, (x, y) =\u003e new Color(0, x, y))\r\n    drawGradient(1, 0, (x, y) =\u003e new Color(x, y, 255))\r\n    drawGradient(1, 1, (x, y) =\u003e new Color(x, 255, y))\r\n    drawGradient(1, 2, (x, y) =\u003e new Color(255, x, y))\r\n    drawGradient(2, 0, (x, y) =\u003e Colors.hsv(x, y, 255))\r\n    drawGradient(2, 1, (x, y) =\u003e Colors.hsv(x, 255, y))\r\n    drawGradient(2, 2, (x, y) =\u003e Colors.hsv(128, x, y))\r\n  }\r\n}```\r\n","author":{"url":"https://github.com/dgant","@type":"Person","name":"dgant"},"datePublished":"2020-02-06T01:15:58.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":2},"url":"https://github.com/52/JBWAPI/issues/52"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:b9287f5a-5372-a5b2-c99e-ac068a17e9f7
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idBB84:FF7AB:186191C:21A595D:69738B86
html-safe-nonce808c5a93bd159b6bba404541c7836f16207efce6bb6944dbe62e56a3576e85c6
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCQjg0OkZGN0FCOjE4NjE5MUM6MjFBNTk1RDo2OTczOEI4NiIsInZpc2l0b3JfaWQiOiIzMTAwODM0ODA0NTY4MTMyNDg2IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac5566ec6e34b9e8a541ace07e2b0ab47f23928ce965bec641f277a518554bce3a
hovercard-subject-tagissue:560721464
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/JavaBWAPI/JBWAPI/52/issue_layout
twitter:imagehttps://opengraph.githubassets.com/765d35e3348b024c770cc8d4b3b3bc21faa09771b9cdd61676383815d8c990f0/JavaBWAPI/JBWAPI/issues/52
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/765d35e3348b024c770cc8d4b3b3bc21faa09771b9cdd61676383815d8c990f0/JavaBWAPI/JBWAPI/issues/52
og:image:altI know BW is paletted with limited colors available, but the ones that are currently rendering are nevertheless incorrect (eg previously rendered as expected in BWMirror) Drawing gradients along RG...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamedgant
hostnamegithub.com
expected-hostnamegithub.com
Nonef0b5e2d1da32de5a0b7bcfbc5ba007c93e8e63098fba29e1200efb674aa72e66
turbo-cache-controlno-preview
go-importgithub.com/JavaBWAPI/JBWAPI git https://github.com/JavaBWAPI/JBWAPI.git
octolytics-dimension-user_id46279254
octolytics-dimension-user_loginJavaBWAPI
octolytics-dimension-repository_id149718845
octolytics-dimension-repository_nwoJavaBWAPI/JBWAPI
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id149718845
octolytics-dimension-repository_network_root_nwoJavaBWAPI/JBWAPI
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
releasec96653671324f9b6d4c5f787435acf56a06087dd
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/JavaBWAPI/JBWAPI/issues/52#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FJavaBWAPI%2FJBWAPI%2Fissues%2F52
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://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FJavaBWAPI%2FJBWAPI%2Fissues%2F52
Sign up https://github.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=JavaBWAPI%2FJBWAPI
Reloadhttps://github.com/JavaBWAPI/JBWAPI/issues/52
Reloadhttps://github.com/JavaBWAPI/JBWAPI/issues/52
Reloadhttps://github.com/JavaBWAPI/JBWAPI/issues/52
JavaBWAPI https://github.com/JavaBWAPI
JBWAPIhttps://github.com/JavaBWAPI/JBWAPI
Notifications https://github.com/login?return_to=%2FJavaBWAPI%2FJBWAPI
Fork 10 https://github.com/login?return_to=%2FJavaBWAPI%2FJBWAPI
Star 18 https://github.com/login?return_to=%2FJavaBWAPI%2FJBWAPI
Code https://github.com/JavaBWAPI/JBWAPI
Issues 10 https://github.com/JavaBWAPI/JBWAPI/issues
Pull requests 1 https://github.com/JavaBWAPI/JBWAPI/pulls
Actions https://github.com/JavaBWAPI/JBWAPI/actions
Security 0 https://github.com/JavaBWAPI/JBWAPI/security
Insights https://github.com/JavaBWAPI/JBWAPI/pulse
Code https://github.com/JavaBWAPI/JBWAPI
Issues https://github.com/JavaBWAPI/JBWAPI/issues
Pull requests https://github.com/JavaBWAPI/JBWAPI/pulls
Actions https://github.com/JavaBWAPI/JBWAPI/actions
Security https://github.com/JavaBWAPI/JBWAPI/security
Insights https://github.com/JavaBWAPI/JBWAPI/pulse
New issuehttps://github.com/login?return_to=https://github.com/JavaBWAPI/JBWAPI/issues/52
New issuehttps://github.com/login?return_to=https://github.com/JavaBWAPI/JBWAPI/issues/52
#53https://github.com/JavaBWAPI/JBWAPI/pull/53
Renders wrong colorshttps://github.com/JavaBWAPI/JBWAPI/issues/52#top
#53https://github.com/JavaBWAPI/JBWAPI/pull/53
https://github.com/dgant
https://github.com/dgant
dganthttps://github.com/dgant
on Feb 6, 2020https://github.com/JavaBWAPI/JBWAPI/issues/52#issue-560721464
https://user-images.githubusercontent.com/116363/73897350-d7e7ce80-4853-11ea-8690-645b2b0676bb.png
https://user-images.githubusercontent.com/116363/73897361-dfa77300-4853-11ea-836a-d295cb0551fc.png
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.