Vulkan is a low-overhead, cross-platform 3D graphics and compute API.
Vulkan targets high-performance realtime 3D graphics applications such as games and interactive media across multiple platforms providing higher performance and lower CPU usage.
| server { | |
| listen 80; | |
| server_name _ default; | |
| return 404; | |
| } | |
| server { | |
| listen 80; | |
| server_name ${CVAT_HOST}; |
| #This is a step-by-step guide to build the avr-gcc 10.2 with the | |
| #libstdc++ using the freestanding implementation[1]. | |
| # | |
| #Don't expect a robust script without boilerplates or something coded | |
| #to be resilient. This is only a short register of what I need to | |
| #obtain the compiler in this mode. | |
| # | |
| #[1] https://timsong-cpp.github.io/cppwp/n4861/compliance | |
| wget https://ftp.gnu.org/gnu/binutils/binutils-2.36.tar.gz |
| Install ffmpeg or libav-tools. | |
| Change -video_size to match your desktop resolution. | |
| Record your desktop by executing the script: | |
| ./record.sh | |
| Record without audio as follows: | |
| ./record_no_audio.sh |
Install OS X El Capitan is created| server { | |
| client_body_in_file_only clean; | |
| client_body_buffer_size 32K; | |
| client_max_body_size 300M; | |
| sendfile on; | |
| send_timeout 300s; | |
| # Port that the web server will listen on. | |
| #listen 80; |
| #!/bin/bash | |
| # USAGE | |
| # 1. name this file something like `distbuild`, make it executable (chmod +x), and put it in your PATH | |
| # 2. run it and pass it the name of your project, eg `distbuild MySweetGame` | |
| TIMESTAMP=$(date +"%m%d%y") # eg, 070214 | |
| CERT_NAME="iPhone Distribution: Your Certificate's Name (And Identifier)" | |
| # where you want your builds to go |
| server { | |
| listen 80; | |
| root /vagrant; | |
| index index.html index.htm index.php app.php app_dev.php; | |
| # Make site accessible from http://set-ip-address.xip.io | |
| server_name 192.168.33.10.xip.io; | |
| access_log /var/log/nginx/vagrant.com-access.log; | |
| error_log /var/log/nginx/vagrant.com-error.log error; |