Service | SSL | status | Response Type | Allowed methods | Allowed headers |
---|
<main> | |
<!-- <img src="./dark.png" alt="" /> --> | |
<button aria-pressed="false" class="toggle"> | |
<div class="socket"> | |
<div class="socket-shadow"></div> | |
</div> | |
<div class="face"> | |
<div class="face-shadow"></div> | |
<div class="face-glowdrop"></div> | |
<div class="face-plate"></div> |
#!/usr/bin/env bash | |
# Leverages Docker containers to create a temporary signing server | |
# Obtain a SSL cert and then apply it to the service in question we're interested in | |
# Usage: ./kasm_cert.sh mydomain.test | |
mkdir -p /tmp/webroot | |
# Start an ephemeral nginx container |
# Gain superuser privileges | |
sudo -i | |
# Create swap area for managing memory | |
sudo dd if=/dev/zero bs=1M count=5024 of=/mnt/swapfile.swap | |
sudo chmod 600 /mnt/swapfile.swap | |
sudo mkswap /mnt/swapfile.swap | |
sudo swapon /mnt/swapfile.swap | |
echo '/mnt/swapfile.swap swap swap defaults 0 0' | sudo tee -a /etc/fstab |
Designed by: Martin Myburgh Animated tab bar by: Mauricio Bucardo
A Pen by Bright Sparks on CodePen.
Designed by: Mauricio Bucardo
Original image: https://dribbble.com/shots/5619509-Animated-Tab-Bar
You can use this menu in your projects. It also works with 100% width and reacts to changing the size of the window :)
https://appsco.pe |
# | |
### Calomel.org Squid squid.conf | |
# | |
########### squid.conf ########### | |
# | |
## interface, port and proxy type | |
#http_port 10.10.10.1:8080 transparent | |
http_port 10.10.10.1:8080 | |
## general options |
I have googled many things and explored many questions on Stack Overflow
to find the best way to push only dist/
directory to live server. I
couldn't find any good solution but one person on Stackoverflow suggested to
look at Git Submodules and this is the best solution I could come up with. I
have never heard of submodules before because almost nobody uses them. If you
never heard of it too then I'll first explain what a submodule is and then I'll
show you how you can use submodules to push only dist/
directory to
a live server.
<div ng-app="myApp"> | |
<div ng-controller="HomeCtrl as controller" class="videogular-container"> | |
<videogular vg-theme="controller.config.theme.url" class="videogular-container audio"> | |
<vg-media vg-src="controller.config.sources" vg-type="audio"></vg-media> | |
<vg-controls> | |
<vg-play-pause-button></vg-play-pause-button> | |
<vg-time-display>{{ currentTime | date:'mm:ss':'+0000' }}</vg-time-display> | |
<vg-scrub-bar> | |
<vg-scrub-bar-current-time></vg-scrub-bar-current-time> |