- http://absulit.com/portfolio/demo/webvr/001/
- https://www.clicktorelease.com/code/polygon-shredder/vr/ #positional
- https://www.clicktorelease.com/tmp/threejs/webvr-physics/ #positional #input #haptic
- https://janusweb.metacade.com/ https://github.com/jbaicoianu/janusweb/
- https://jzitelli.github.io/poolvr/
- https://kuva.io/block-background/ #positional #input
- https://www.shadertoy.com/results?filter=vr
- https://vr-batted-ball-vis.herokuapp.com/index.html
This file contains hidden or 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
| import { WAProto } from '@adiwajshing/baileys'; | |
| import { BufferJSON, initAuthCreds } from '@adiwajshing/baileys/lib/Utils'; | |
| import { Collection, Document, MongoClient } from 'mongodb'; | |
| import chalk from 'chalk'; | |
| export class MongoDbAuth{ | |
| static mongoUrl = "mongodb+srv://your-mongodb-url/DBName/?retryWrites=true&w=majority" | |
| sim: string | |
| private collection: Collection |
This file contains hidden or 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
| FROM gitpod/workspace-full-vnc | |
| USER gitpod | |
| # Install custom tools, runtime, etc. using apt-get | |
| # For example, the command below would install "bastet" - a command line tetris clone: | |
| # | |
| # RUN sudo apt-get -q update && # sudo apt-get install -yq bastet && # sudo rm -rf /var/lib/apt/lists/* | |
| # | |
| # More information: https://www.gitpod.io/docs/42_config_docker/ |
This file contains hidden or 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.2' | |
| services: | |
| db: | |
| image: postgres | |
| restart: always | |
| volumes: | |
| - db:/var/lib/postgresql/data | |
| environment: | |
| - POSTGRES_DB=nextcloud |
This file contains hidden or 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
| cd /Applications/XAMPP/xamppfiles/htdocs/brilliant | |
| sudo chown -R _www:_www . | |
| sudo chgrp -R _www . | |
| sudo chmod -R 777 . |
This file contains hidden or 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
| <?php | |
| function html_table($data = array()) | |
| { | |
| $rows = array(); | |
| foreach ($data as $row) { | |
| $cells = array(); | |
| foreach ($row as $cell) { | |
| $cells[] = "<td>{$cell}</td>"; | |
| } |
This file contains hidden or 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
| use Drupal\Core\Render\Markup; | |
| $rows = [ | |
| [Markup::create('<strong>test 1</strong>'),'test'], | |
| [Markup::create('<s>test 2</s>'), 'test'], | |
| [Markup::create('<div>test 3</div>'), 'test'], | |
| ]; | |
| $header = [ | |
| 'title' => t('Title'), | |
| 'content' => t('Content'), |
This file contains hidden or 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
| import android.content.Context; | |
| import android.support.annotation.Nullable; | |
| import android.util.Log; | |
| import java.io.IOException; | |
| import java.util.concurrent.TimeUnit; | |
| import okhttp3.Call; | |
| import okhttp3.Callback; | |
| import okhttp3.Interceptor; |
This file contains hidden or 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
| /** | |
| * Redirect the User to Paystack / Paypal Payment Page | |
| * @param Request $request | |
| * @return URL | |
| */ | |
| public function redirectToGateway(Request $request) | |
| { | |
| //Check if user is logged in | |
| if(Auth::check()){ | |
| //Check if the subscription for Professional Plan |
This file contains hidden or 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
| JAVA | |
| new Handler(Looper.getMainLooper()).post(new Runnable() { | |
| @Override | |
| public void run() { | |
| Toast toast = Toast.makeText(mContext, "Something", Toast.LENGTH_SHORT); | |
| toast.show(); | |
| } | |
| }); |