Skip to content

Instantly share code, notes, and snippets.

View cromica's full-sized avatar

Romulus Crisan cromica

View GitHub Profile
@cromica
cromica / GetStudioProjectPath
Last active August 29, 2015 14:07
Sample code to get Studio 2014 project path
public string GetStudioProjectPath(string projectName)
{
var folderPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
var sdlProjectPath = Path.Combine(folderPath,string.Format("Studio 2014\\Projects\\{0}",projectName));
return sdlProjectPath;
}
@cromica
cromica / 0_reuse_code.js
Created August 22, 2014 07:38
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console