Skip to content
View kmorin's full-sized avatar
  • Seattle

Block or report kmorin

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. read and parse + update RevitINI fil... read and parse + update RevitINI files from custom actions
    1
    public static void ReadWriteRevitIniPaths() {
    2
                var iniLocations = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Autodesk", "Revit");
    3
                foreach (var dir in Directory.GetDirectories(iniLocations)) {
    4
                    if (dir.Contains("Addins")) { continue; }
    5
                    foreach (var file in Directory.GetFiles(dir)) {
  2. retrive int[] of all grays code comb... retrive int[] of all grays code combinations
    1
    private IEnumerable<int[]> getGrays(int n) {
    2
        //if n is > 24 memory fails
    3
        if (n <= 0 || n > 24) { return null; }
    4
        var ar = new List<string> { "0", "1" };
    5
        for (var i = 2; i < 1 << n; i = i << 1) {
  3. panel-builder-app-revit panel-builder-app-revit Public

  4. panel-builder-app-web panel-builder-app-web Public

    TypeScript