Form Designer
Look & Feel
- FlatLaf - modern, clean look and feel designed to work
- well with JFormDesigner, compatible with IntelliJ themes.
Form Designer
Look & Feel
Some (hopefully) useful links related to JavaFX development.
The biggest list I've seen is at AwesomeJavaFX - seriously, huge list.
| using UnityEngine; | |
| using UnityEditor.Build; | |
| using UnityEditor.Build.Reporting; | |
| using UnityEditor; | |
| using UnityEditor.iOS.Xcode; | |
| using System.IO; | |
| public class ExcemptFromEncryption : IPostprocessBuildWithReport // Will execute after XCode project is built | |
| { | |
| public int callbackOrder { get { return 0; } } |
| // Unity C# Cheat Sheet | |
| // I made these examples for students with prior exerience working with C# and Unity. | |
| // Too much? Try Unity's very good tutorials to get up to speed: https://unity3d.com/learn/tutorials/topics/scripting |
| ** Find commmonly accessed tables and their use of indexes: | |
| SELECT relname,seq_tup_read,idx_tup_fetch,cast(idx_tup_fetch AS numeric) / (idx_tup_fetch + seq_tup_read) AS idx_tup_pct FROM pg_stat_user_tables WHERE (idx_tup_fetch + seq_tup_read)>0 ORDER BY idx_tup_pct; | |
| Returns output like: | |
| relname | seq_tup_read | idx_tup_fetch | idx_tup_pct | |
| ----------------------+--------------+---------------+------------------------ | |
| schema_migrations | 817 | 0 | 0.00000000000000000000 | |
| user_device_photos | 349 | 0 | 0.00000000000000000000 |