- Opening Keynote: Matt DeBergalis, Co-Founder, CTO at Apollo
- Migrating to Apollo at Airbnb: Brie Bunge , Airbnb
- The GraphQL Developer Experience: Danielle Man, Apollo
- State Management in GraphQL using React Hooks & Apollo: Shruti Kapoor, PayPal
- Fine-Tuning Apollo Client Caching for Your Data Graph: Ben Newman, Apollo
- Scaling GraphQL Beyond a Backend for Frontend: Michelle Garrett, Condé Nast International
Peter Naur, 1985
The present discussion is a contribution to the understanding of what programming is. It suggests that programming properly should be regarded as an activity by which the programmers form or achieve a certain kind of insight, a theory, of the matters at hand. This suggestion is in contrast to what appears to be a more common notion, that programming should be regarded as a production of a program and certain other texts.
| #!/bin/sh | |
| cd $1 | |
| git filter-branch --commit-filter ' | |
| if [ "$GIT_COMMITTER_EMAIL" = "[email protected]" ] | |
| then | |
| git commit-tree -S "$@"; | |
| fi |
GitHub repositories can disclose all sorts of potentially valuable information for bug bounty hunters. The targets do not always have to be open source for there to be issues. Organization members and their open source projects can sometimes accidentally expose information that could be used against the target company. in this article I will give you a brief overview that should help you get started targeting GitHub repositories for vulnerabilities and for general recon.
You can just do your research on github.com, but I would suggest cloning all the target's repositories so that you can run your tests locally. I would highly recommend @mazen160's GitHubCloner. Just run the script and you should be good to go.
$ python githubcloner.py --org organization -o /tmp/output| document.getElementById( 'loading' ).style.display = 'none'; | |
| var speed = .001; // changes the rate of rotation | |
| var distance = 4; // changes the distance the point travels | |
| function _update() { | |
| bAmDrawing = true; | |
| lastMouseX = 0; lastMouseY = 0; | |
| var a = speed * performance.now(); | |
| var x = distance * Math.cos( a ); | |
| var y = distance * Math.sin( a ); | |
| stage.mousemove( { data: { global : { x: x, y: y } } } ) |
FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.
- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
| //: Playground - noun: a place where people can play | |
| import Foundation | |
| // MARK: Protocols | |
| protocol UserRequestProtocol { | |
| var name: String { get set } | |
| var age: Int { get set } | |
| var password: String { get set } | |
| var likesBacon: Bool { get set } |
| import Foundation | |
| @objc(EnvConfig) | |
| class EnvConfig: NSObject { | |
| #if ENVConfigStaging | |
| class var isProduction:Bool { | |
| return false | |
| } |
Since Twitter doesn't have an edit button, it's a suitable host for JavaScript modules.
Source tweet: https://twitter.com/rauchg/status/712799807073419264
const leftPad = await requireFromTwitter('712799807073419264');