#####Logcat Colors for IntelliJ Darcula Theme (original post)
- Preferences -> Editor -> Android Logcat
- "Save As" scheme
- Uncheck "Use inherited attributes" option
- Edit foreground color with the following
Debug : #6897BB
Info : #6A8759
#####Logcat Colors for IntelliJ Darcula Theme (original post)
Debug : #6897BB
Info : #6A8759
This text is the section about OS X Yosemite (which also works for macOS Sierra) from https://docs.basho.com/riak/kv/2.1.4/using/performance/open-files-limit/#mac-os-x
The last time i visited this link it was dead (403), so I cloned it here from the latest snapshot in Archive.org's Wayback Machine https://web.archive.org/web/20170523131633/https://docs.basho.com/riak/kv/2.1.4/using/performance/open-files-limit/
| import appleseed as asr | |
| mesh = asr.MeshObject("my_mesh", {}) | |
| print mesh | |
| # Vertices | |
| v0 = asr.Vector3f([0.0, 0.0, 0.0]) | |
| v1 = asr.Vector3f([1.0, 0.0, 0.0]) | |
| v2 = asr.Vector3f([0.0, 0.0, 1.0]) |
| using UnityEngine; | |
| using UnityEditor; | |
| using System; | |
| using System.Reflection; | |
| public class WebWindow : EditorWindow { | |
| static Rect windowRect = new Rect(100,100,800,600); | |
| static BindingFlags fullBinding = BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.Static; | |
| static StringComparison ignoreCase = StringComparison.CurrentCultureIgnoreCase; |
| import rx.Observable; | |
| import rx.Subscriber; | |
| import rx.Subscription; | |
| import rx.functions.Action0; | |
| import rx.subjects.PublishSubject; | |
| import rx.subjects.SerializedSubject; | |
| /** | |
| * An object reference of EventBus |
| /* | |
| * Copyright (C) 2014 Chris Banes | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
| -nosplash | |
| --launcher.defaultAction | |
| openFile | |
| -vm | |
| C:/JDK7/jre/bin/server/jvm.dll #Windows | |
| #/Library/Java/JavaVirtualMachines/jdk1.7.0_25.jdk/Contents/Home/bin/java #OS X | |
| -vmargs | |
| -Xincgc | |
| -Xss1m | |
| -Duser.name=FirstName LastName |