Skip to content

Instantly share code, notes, and snippets.

View shaunthomas999's full-sized avatar
🎯
Focusing

Shaun Thomas shaunthomas999

🎯
Focusing
View GitHub Profile
@shaunthomas999
shaunthomas999 / xp-api.log
Created November 28, 2017 16:47
xp-api.log
2017-11-28 17:06:03.412 INFO [something-xp-api,,,] 27445 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 9014 (http)
2017-11-28 17:06:03.413 INFO [something-xp-api,,,] 27445 --- [ main] .s.c.n.e.s.EurekaAutoServiceRegistration : Updating port to 9014
2017-11-28 17:06:03.417 INFO [something-xp-api,,,] 27445 --- [ main] n.i.securities.something.somethingXpApi : Started somethingXpApi in 8.253 seconds (JVM running for 10.796)
2017-11-28 17:09:43.496 INFO [something-xp-api,,,] 27445 --- [nio-9014-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring FrameworkServlet 'dispatcherServlet'
2017-11-28 17:09:43.496 INFO [something-xp-api,,,] 27445 --- [nio-9014-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization started
2017-11-28 17:09:43.536 INFO [something-xp-api,,,] 27445 --- [nio-9014-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': init
@shaunthomas999
shaunthomas999 / My Ubuntu Settings.md
Last active May 3, 2018 17:23
Nice things to do in Ubuntu

Nice things to do in Ubuntu

Bring the Menu bar to the bottom of the window

  • Execute in Terminal > gsettings set com.canonical.Unity.Launcher launcher-position Bottom
  • To bring back the menu bar to the left side of the window > gsettings set com.canonical.Unity.Launcher launcher-position Left
  • Check this link
@shaunthomas999
shaunthomas999 / github-new-repo.md
Last active August 9, 2019 16:31
Github new repo creation - Self reference (PS: steps not complete)

Create a new repository on the command line

git init
git config user.email shaunthomas999@gmail.com
git add -A
git commit -a -m "first commit"
git remote add origin https://github.com/shaunthomas999/01_Java.git
git push -u origin master