Skip to content

Instantly share code, notes, and snippets.

View stefanosaittamrf's full-sized avatar

Stefano Saitta stefanosaittamrf

View GitHub Profile
@stefanosaittamrf
stefanosaittamrf / # sassc - 2018-08-28_16-34-06.txt
Created August 29, 2018 08:00
sassc on macOS 10.13.6 - Homebrew build logs
Homebrew build logs for sassc on macOS 10.13.6
Build date: 2018-08-28 16:34:06

## Platform Questions & Needs

  • Platform decisions & management indipendency
  • Style guide, Documentation, Git workflow customization (definition.json)
  • Building system workflow customization ( Jinks -wjs all_devices? )
  • Beer session about latest changes
  • Short Training session about ES6 features
12:51:53.506 [sectionWorker-11] WARN com.marfeel.insider.impl.LogTracker - WARNING - com.marfeel.pressSystem.impl.DetailItemsProcessorImpl - TimeoutProcessingBoilerplate - http://www.expressen.se/tv/noje/olle-ljungstrom-dod---blev-54-ar/ 0
12:52:01.934 [articleWorker-13] INFO com.marfeel.insider.impl.LogTracker - INFO - Extractors - BoilerpipeExtractor - http://www.expressen.se/noje/lets-dance/lakarens-uppmaning-till-bianca-ha-bloja/ 319461
12:52:19.547 [sectionWorker-11] WARN com.marfeel.insider.impl.LogTracker - WARNING - com.marfeel.pressSystem.impl.DetailItemsProcessorImpl - TimeoutProcessingBoilerplate - http://www.expressen.se/tv/noje/bianca-ingrosso-sjukskoterskan-rekommenderade-bloja/ 0
12:52:20.278 [sectionWorker-11] WARN com.marfeel.insider.impl.LogTracker - WARNING - com.marfeel.pressSystem.impl.DetailItemsProcessorImpl - TimeoutProcessingBoilerplate - http://www.expressen.se/tv/noje/stor-ilska-efter-molly-sandens-bild-pa-natet/ 0
12:52:28.612 [sectionWorker-11] WARN com.marfeel.insider.impl.L
//I write this down in order to remove hardcoded link into a whiteCollar/main.js
const noSubDomainRegex = /^http(s)?:\/\/(?:www\.)[a-z1-9]+.[a-z]\/?[a-zA-Z0-9_?=&\/\-.]+$/; //K cost, no performance issue
!noSubDomainRegex.test(item.uri) ? return null : return item; // this will cost N where n is the length of the string
// the cost of this is O(K*n) => O(n)*
//* for a big N. Can be considered as constant for a small N.