The Wayback Machine - http://web.archive.org/web/20210721084231/https://github.com/explore
Skip to content

Here's what's popular on GitHub today...

public-apis

Trending repository

Trending repository

Darylgolden
Darylgolden commented Jul 7, 2021

Enhancement proposal

Currently, Dot3D uses the default Sphere resolution of (12, 24). Running a scene with lots of Dot3Ds, like a scene with polyhedra, takes incredibly long because of the high resolution. I think a resolution of (8, 8) is a good balance between speed and visual looks. After changing the resolution, the control data for some tests have to be regenerated.

Addition

The ReadME Podcast

 
Podcast

Your favorite open source projects and the developers who make them happen. Listen in!

R logo

Popular topic

#

R

R is a free programming language and software environment for statistical computing and graphics.
The Finding Ada Conference

 
Upcoming event recommended by GitHub

Jul
20

The Finding Ada Conference

July 20, 2021 - July 22, 2021 • Online

The Finding Ada Conference is an online global conference for women in STEM and advocates for gender equality.

App recommended by GitHub

Rollbar

Helping development teams proactively discover, predict, and remediate errors with real-time, AI-assisted workflows.

Trending repository

wstg

Trending repository

jespunya
jespunya commented Jun 29, 2020

What would you like to happen?
The sections 4.7.11.1 Testing for Local File Inclusion & 4.7.11.2 Testing for Remote File Inclusion address two attack vectors that are very similar one to the other. Given this situation and the few documentation on the Remote injection one, my proposal would be to merge both in a single section called Testing for File Injection.

Trending repository

shrugs
shrugs commented Apr 12, 2018

🎉 Description

The ECDSA contract has a function toEthSignedMessage(bytes32), but we should have a function that works for any length of a bytes array:

function toEthSignedMessage(bytes s) pure internal returns (bytes32) {
  return keccak256(
    "\x19Ethereum Signed Message:\n",
    uintToBytes(s.length),
    s);
}

Where uintToBytes is implemented from an ideally

App recommended by GitHub

GitHub Learning Lab

Level up your skills with GitHub Learning Lab. Our friendly bot will take you through a series of fun, practical projects to learn the skills you need in no time—and share helpful feedback along the way.