Date | Day | Time | Movie | Seat | Trailer | Rating |
---|---|---|---|---|---|---|
26-Apr | Thu | 19:00 | THE TRIBE | K14 | https://vimeo.com/253951779 | |
27-Apr | Fri | 18:30 | ABRACADABRA | J10 | https://www.youtube.com/watch?v=LVLnw6PScuU | |
28-Apr | Sat | |||||
29-Apr | Sun | |||||
30-Apr | Mon |
This file contains 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
version: '3' | |
services: | |
seq: | |
image: datalust/seq:latest | |
ports: | |
- '80:80' | |
- '5341:5341' | |
environment: | |
ACCEPT_EULA: Y |
This file contains 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
create-nx-workspace resume-format --yarn --npm-scope=resume-format --style scss | |
ng generate app consultant-ui --routing --directory '' --tags '' --unit-test-runner jest --e2e-test-runner cypress | |
ng generate lib shared-components --directory '' --tags '' --unit-test-runner jest --e2e-test-runner cypress --lazy false --module true --parent-module '' | |
ng g c resume-upload --export=true --project=shared-components |
This file contains 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
ng add ngx-bootstrap | |
ng add primeng | |
ng add primeicons | |
yarn upgrade -L |
This file contains 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
[ | |
"What do you love about your home?", | |
"Describe a hobby or activity that makes you happy", | |
"Describe one thing you're really good at", | |
"Who would you like to thank?", | |
"What is something that you might take for granted that you are grateful for?", | |
"Describe something you do every day that you're grateful for", | |
"Name a taste or flavour that makes you happy", | |
"What do you love about winter?", | |
"What do you love about summer?", |
This file contains 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
#!/bin/sh | |
touch ~/.zprofile | |
COMPNAME="Titan" | |
sudo scutil --set ComputerName "$COMPNAME" | |
sudo scutil --set HostName "$COMPNAME" | |
sudo scutil --set LocalHostName "$COMPNAME" | |
sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.smb.server NetBIOSName -string "$COMPNAME" |
This file contains 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
select * | |
from gnaf_201705."addresses" | |
where "street_name" = 'ANN' | |
and "street_type" = 'STREET' | |
and "locality_name" = 'BRISBANE CITY' | |
limit 10 | |
select * | |
from gnaf_201705."localities" | |
where "locality_name" = 'STAFFORD' |
This file contains 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
#!/bin/sh | |
## need to make sure current python version is 3.6.1 also | |
pip install numpy | |
cmake -D CMAKE_BUILD_TYPE=RELEASE \ | |
-D CMAKE_INSTALL_PREFIX=/usr/local \ | |
-D OPENCV_EXTRA_MODULES_PATH=~/devops/opencv_contrib/modules \ | |
-D PYTHON3_LIBRARY=/usr/local/opt/python3/Frameworks/Python.framework/Versions/3.6/lib/python3.6/config-3.6m-darwin/libpython3.6.dylib \ |
This file contains 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
## using Choco | |
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" | |
choco feature enable -n=allowGlobalConfirmation | |
# On Win10 and Server2016 you don't need to install chocolatey | |
Install-PackageProvider chocolatey -ForceBootstrap -Force | |
# Dev Tools | |
Install-Package vcredist2012 -Force |