Gets the value at path of object. If the resolved value is undefined, the defaultValue is returned in its place.
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
| # Force Build | |
| Jenkins->FDK->build_all, Build With Parameters, after=ønsket git-commit, ref=refs/heads/develop (eller annen branch) | |
| # cJenkins (terminal) | |
| python cjenkins -u <username> -p <password> -l <jenkins 1 address> .. <jenkins n address> | |
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
| chmod u=rx file (Give the owner rx permissions, not w) | |
| chmod go-rwx file (Deny rwx permission for group, others) | |
| chmod g+w file (Give write permission to the group) | |
| chmod a+x file1 file2 (Give execute permission to everybody) | |
| chmod g+rx,o+x file (OK to combine like this with a comma) |
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
| h1 - 2.8rem (62px) | |
| p - 1.6rem (16px) | |
| <span> | |
| display: inline; /* the default for span */ | |
| html { | |
| font-size: 62.5%; | |
| } | |
| body { |
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
| # Center content | |
| my-auto |
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
| https://blog.logrocket.com/choosing-between-babel-and-typescript-4ed1ad563e41/ |
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
| # Ref | |
| https://hackernoon.com/a-better-way-to-develop-node-js-with-docker-cd29d3a0093 | |
| # Developing libs with npm link | |
| In lib packaged run: | |
| npm link | |
| In main proj run: | |
| npm link mylib |
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
| # Install java8 (Java SE Development Kit 8u211) | |
| Java 8 is not in brew! | |
| https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html | |
| extgjs@brreg.no/4325dfgSFGds | |
| # Uninstall java11 | |
| brew cask uninstall java11 |
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
| # Known issues | |
| 1. runAll.sh is not run -> run runAll.sh :) | |
| 2. Apache Jena - lock | |
| delete lockfiles under ./fdk/data | |
| 3. nginx start to late | |
| Make sure nginx start last. | |
| # Install Java8 and/or Maven |
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
| # Spit commits | |
| git reset HEAD~ | |
| # Exit merge | |
| git reset --hard HEAD | |
| git pull --strategy=theirs remote_branch | |
| git fetch origin | |
| git reset --hard origin | |
| # Reset to specific branch |