<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
void main_vertex( float4 position : POSITION, | |
out float4 oPosition : POSITION, | |
float2 texCoord : TEXCOORD0, | |
out float2 oTexCoord : TEXCOORD0, | |
uniform float4x4 modelViewProj ) | |
{ | |
oPosition = mul(modelViewProj, position); | |
oTexCoord = texCoord; | |
} |
#include <iostream> | |
#include <concurrent_vector.h> | |
#include <thread> | |
#include <algorithm> | |
#include <cstdlib> | |
#include <atomic> | |
#include <vector> | |
#include <mutex> | |
int counter = 0; |
// Remap $ to jQuery object | |
var $ = jQuery; | |
// The real fun begins... first catch all the post-anchors & loop on them | |
$(document).on("scroll", function () { | |
// Let's declare some reusable globals for the next iterations | |
var urlBase = "http://img-9gag-lol.9cache.com/photo/"; | |
$(".badge-evt.badge-nsfw-entry-cover").each(function () { | |
// Remove the NSFW class, to avoid redundant processing |
#!/bin/sh | |
# | |
# libinput by default will disable the touchpad while a key is pressed. | |
# to disable this, run `xinput` to list the inputs. find the name of your | |
# touchpad (mine is 'Microsoft Surface Keyboard Touchpad'). | |
# | |
# Disable the setting 'Disable While Typing Enabled' | |
# `xinput --set-prop 'Microsoft Surface Keyboard Touchpad' \ | |
# 'libinput Disable While Typing Enabled' 0` | |
# |
This gist will show how to setup Raspbian Stretch as a headless Bluetooth A2DP audio sink. This will allow your phone, laptop or other Bluetooth device to play audio wirelessly through a Rasperry Pi.
A quick search will turn up a plethora of tutorials on setting up A2DP on the Raspberry Pi. However, I felt this gist was necessary because this solution is:
[Unit] | |
Description=Document Server Daemon | |
[Service] | |
Type=forking | |
Environment=NODE_VERSION=12 | |
WorkingDirectory=/home/your_user/your_node_app_dir | |
ExecStart=/home/your_user/.nvm/nvm-exec npm start | |
StandardOutput= | |
User=your_user |