- Matthew McCullough
- Ben Ellingson
- Generally prefer Brew recipes
- Prefer Brew recipes over MacPorts (no sudo needed)
| import { NgModule } from '@angular/core'; | |
| import { CommonModule } from '@angular/common'; | |
| import { JWT_OPTIONS, JwtInterceptor, JwtModule } from '@auth0/angular-jwt'; | |
| import { AuthorizationService } from './authorization.service'; | |
| import { environment } from '../../environments/environment'; | |
| import { HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http'; | |
| import { RefreshTokenInterceptor } from './refresh-token-interceptor'; | |
| function jwtOptionsFactory (authorizationService: AuthorizationService) { | |
| return { |
| public class MyAppCtxInitializer implements ApplicationContextInitializer<ConfigurableApplicationContext> { | |
| private static Logger LOG = LoggerFactory.getLogger(MyAppCtxInitializer.class); | |
| @Override | |
| public void initialize(ConfigurableApplicationContext applicationContext) { | |
| ConfigurableEnvironment environment = applicationContext.getEnvironment(); | |
| try { | |
| environment.getPropertySources().addFirst(new ResourcePropertySource("classpath:env.properties")); | |
| LOG.info("env.properties loaded"); |
| #!/usr/bin/env ruby -wKU | |
| # Adapted from Brett Terpstra’s original “Markdown to Evernote” service (http://brettterpstra.com/a-better-os-x-system-service-for-evernote-notes-with-multimarkdown/) | |
| # Martin Kopischke 2011 – License: Creative Commons Attribution Share-Alike (CC BY-SA) 3.0 Unported (http://creativecommons.org/licenses/by-sa/3.0/) | |
| # Changes: – create only one Evernote note per (Multi)Markdown input passed (instead of one per line) | |
| # – do not choke on shell escape characters (use Tempfile instead of shell pipe for osascript) | |
| # – default to MultiMarkdown 3 executable (instead of MMD 2 Perl script) | |
| # – make smart typography processing optional (set SMARTY to 'false' to bypass processing; | |
| # note smart typography cannot be disabled in MMD 3.0 and 3.0.1 | |
| # – handle both smart typography processing scripts (ie. SmartyPants.pl) |
| #!/usr/bin/env groovy | |
| def modifyFile(file, Closure processText) { | |
| def text = file.text | |
| file.write(processText(text)) | |
| } | |
| def phase2_dir = 'import-phase2' | |
| def root = new File(phase2_dir) |