A non-exhaustive list of WebGL and WebGPU frameworks and libraries. It is mostly for learning purposes as some of the libraries listed are wip/outdated/not maintained anymore.
Name | Stars | Last Commit | Description |
---|---|---|---|
three.js | ![GitHub |
(function(){ | |
var newscript = document.createElement('script'); | |
newscript.type = 'text/javascript'; | |
newscript.async = true; | |
newscript.src = 'https://www.gstatic.com/firebasejs/3.0.2/firebase.js'; | |
(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(newscript); | |
})(); | |
_setFormData = function setFormData (sel, data) { | |
console.info('setting form to data', data); |
// | |
// imgui_color_gradient.cpp | |
// imgui extension | |
// | |
// Created by David Gallardo on 11/06/16. | |
#include "imgui_color_gradient.h" | |
#include "imgui_internal.h" |
ImGuiStyle& style = ImGui::GetStyle(); | |
style.ChildWindowRounding = 3.f; | |
style.GrabRounding = 0.f; | |
style.WindowRounding = 0.f; | |
style.ScrollbarRounding = 3.f; | |
style.FrameRounding = 3.f; | |
style.WindowTitleAlign = ImVec2(0.5f,0.5f); | |
style.Colors[ImGuiCol_Text] = ImVec4(0.73f, 0.73f, 0.73f, 1.00f); |
{ | |
"activites" : "activitiesTable", | |
"tasks" : { | |
"-KfbYYnJDdJ1IfQ4D6bl" : { | |
"firstname" : "palani", | |
"lastname" : "just lastname updated" | |
}, | |
"-KfpLsLVH59MpKXDdYVm" : { | |
"firstname" : "palaniraja", | |
"lastname" : "raja" |
A non-exhaustive list of WebGL and WebGPU frameworks and libraries. It is mostly for learning purposes as some of the libraries listed are wip/outdated/not maintained anymore.
Name | Stars | Last Commit | Description |
---|---|---|---|
three.js | ![GitHub |
For users who prefer working with a command line or need to access advanced encoding settings for Hap the popular FFmpeg library can be used to work with Hap movies.
If this is your first time using FFmpeg you may need to install it on your system, or compile it from source. In either case be sure that Snappy is enabled as part of the binary. If you already have FFmpeg on your system with Snappy enabled, you can skip this step.
You can check that your version of FFmpeg can encode Hap using
ffmpeg -encoders | grep hap
A Pen by yoichi kobayashi on CodePen.
Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma
You can get the list of supported formats with:
ffmpeg -formats
Convert WAV to MP3, mix down to mono (use 1 audio channel), set bit rate to 64 kbps and sample rate to 22050 Hz:
import React, { Component } from 'react' | |
import { AppRegistry, Animated, Easing, View, StyleSheet, Image, Dimensions, ScrollView, TouchableOpacity, Text } from 'react-native' | |
const deviceWidth = Dimensions.get('window').width | |
const deviceHeight = Dimensions.get('window').height | |
const DISMISS_MODAL_THRESHOLD = 150 //distance we have to scroll in the y direction to dismiss the carousel | |
const images = [ | |
require('./assets/images/image01.jpg'), | |
require('./assets/images/image02.jpg'), |