This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $EDITOR ~/.zshrc or $EDITOR ~/.bashrc | |
| #-------- Wit - Nintendo Wii/GameCube Roms Manager {{{ | |
| #------------------------------------------------------ | |
| # DEMO: https://www.youtube.com/watch?v=_vcdofAUcPI | |
| # DESC: Convert Wii or Gamecube games to compatible formats to work on Softmodded/Modded Nintendo Wii Console | |
| # REFF: https://gist.github.com/openback/1138763 | |
| # Wii Backup Fusion GUI https://www.youtube.com/watch?v=8B2JOnFE5kM | |
| # https://sourceforge.net/projects/usbloadergx/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Name Reg; | |
| Partno 1; | |
| Date 11/05/10; | |
| Revision 01; | |
| Designer Daryl; | |
| Company Rictor; | |
| Assembly None; | |
| Location None; | |
| Device G22V10; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Session session = getEntityManager.unwrap(Session.class); | |
| SessionFactoryImplementor sfi = (SessionFactoryImplementor) session.getSessionFactory(); | |
| Connection connection = sfi.getSessionFactoryOptions().getServiceRegistry().getService(ConnectionProvider.class).getConnection(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Session session = (Session) entityManager.getDelegate(); | |
| SessionFactoryImplementor sfi = (SessionFactoryImplementor) session.getSessionFactory(); | |
| ConnectionProvider cp = sfi.getConnectionProvider(); | |
| Connection connection = cp.getConnection(); | |
| org.h2.tools.Server.startWebServer(connection); |