See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope>
is optional
<!doctype html> | |
<html><head><script src="app.js"></script></head><body></body></html> |
'use strict'; | |
var clarinet = require('clarinet'); | |
/** | |
* Extract a detailed JSON parse error | |
* using https://github.com/dscape/clarinet | |
* | |
* @param {string} json | |
* @returns {{snippet:string, message:string, line:number, column:number, position:number}} or undefined if no error | |
*/ |
Install [Ruby 2.1.5 for Windows (x64)][1] from [RubyInstaller.org][2].
Install Tcl/Tk support
.Add Ruby executables to your path
Associate .rb and .rbw files with this Ruby installation
.Run ruby -v
to verify command line access and version.
// Vectormath https://github.com/erwincoumans/sce_vectormath | |
class Ray | |
{ | |
public: | |
Ray(); | |
public: | |
Vectormath::Aos::Vector3 m_pos; | |
Vectormath::Aos::Vector3 m_dir; | |
Vectormath::Aos::Vector3 m_invDir; // 1.0f / m_dir per elem | |
float m_min; |
// C++11 style observer pattern implementation using lambda for scoped | |
// connection management. | |
// | |
// Copyright (c) 2012 Nick C. | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal | |
// in the Software without restriction, including without limitation the rights | |
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
// copies of the Software, and to permit persons to whom the Software is |
The list would not be updated for now. Don't write comments.
The count of contributions (summary of Pull Requests, opened issues and commits) to public repos at GitHub.com from Wed, 21 Sep 2022 till Thu, 21 Sep 2023.
Because of GitHub search limitations, only 1000 first users according to amount of followers are included. If you are not in the list you don't have enough followers. See raw data and source code. Algorithm in pseudocode:
githubUsers
license: gpl-3.0 |
/** | |
* First, better, "set exports/return" option | |
*/ | |
(function (define) { | |
//The 'id' is optional, but recommended if this is | |
//a popular web library that is used mostly in | |
//non-AMD/Node environments. However, if want | |
//to make an anonymous module, remove the 'id' | |
//below, and remove the id use in the define shim. | |
define('id', function (require) { |
server { | |
root /var/www/example.com/static; | |
server_name example.com; | |
access_log /var/log/nginx/example.com.access.log; | |
error_log /var/log/nginx/example.com.error.log; | |
try_files /maintenance.html @proxy; | |
location @proxy { | |
proxy_pass http://127.0.0.1:10001; |