Skip to content

Instantly share code, notes, and snippets.

AR Quick Look
https://developer.apple.com/videos/play/wwdc2018/603/
Preview 3D content in AR
Deeply integrated within the operating system.
available on iOS 12 on AR compatible devices
new 3D file format USDZ - invites you to 3D view your content and see what it looks like in your world.
AR Quick Look
https://developer.apple.com/videos/play/wwdc2018/603/
Preview 3D content in AR
Deeply integrated within the operating system.
available on iOS 12 on AR compatible devices
new 3D file format USDZ - invites you to 3D view your content and see what it looks like in your world.
@hteumeuleu
hteumeuleu / apple-arkit2-ios12-test.html
Created September 26, 2018 15:43
Apple AR Kit 2 in an email test
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>iOS 12 ARKit 2</title>
<style>
body { font:1em "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif; }
a { color:#0070c9; }
</style>
<meta name="x-apple-disable-message-reformatting" />
@manniru
manniru / apple-arkit2-ios12-test.html
Created June 30, 2019 15:43 — forked from hteumeuleu/apple-arkit2-ios12-test.html
Apple AR Kit 2 in an email test
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>iOS 12 ARKit 2</title>
<style>
body { font:1em "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif; }
a { color:#0070c9; }
</style>
<meta name="x-apple-disable-message-reformatting" />
$file = 'http://3.bp.blogspot.com/-AGI4aY2SFaE/Tg8yoG3ijTI/AAAAAAAAA5k/nJB-mDhc8Ds/s400/rizal001.jpg';
$newfile = $_SERVER['DOCUMENT_ROOT'] . '/img/submitted/yoyo.jpg';
if ( copy($file, $newfile) ) {
echo "Copy success!";
}else{
echo "Copy failed.";
}
@shliama
shliama / augmented_video_model.obj
Last active May 1, 2024 12:54
Simple plane that is centered and perpendicular to Z-axes
# Blender v2.79
o Plane
v -0.500000 0.000000 0.500000
v 0.500000 0.000000 0.500000
v 0.500000 0.000000 -0.500000
v -0.500000 0.000000 -0.500000
vt 0.000000 0.000000
vt 1.000000 0.000000
vt 1.000000 1.000000
vt 0.000000 1.000000
@manniru
manniru / augmented_video_model.obj
Created July 2, 2019 11:57 — forked from shliama/augmented_video_model.obj
Simple plane that is centered and perpendicular to Z-axes
# Blender v2.79
o Plane
v -0.500000 0.000000 0.500000
v 0.500000 0.000000 0.500000
v 0.500000 0.000000 -0.500000
v -0.500000 0.000000 -0.500000
vt 0.000000 0.000000
vt 1.000000 0.000000
vt 1.000000 1.000000
vt 0.000000 1.000000
https://medium.com/@mmiglier/ubuntu-installation-on-usb-stick-with-pure-efi-boot-mac-compatible-469ad33645c9
https://heeris.id.au/2014/ubuntu-plus-mac-pure-efi-boot/
https://tutorials.ubuntu.com/tutorial/tutorial-create-a-usb-stick-on-macos#6
{
"name": "cra-json-server",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"devDependencies": {
"json-server": "^0.11.2",
@up1
up1 / async.js
Last active May 1, 2024 12:52
NodeJS with Async/Await
var fetch = require('node-fetch')
async function getDataFromAPI() {
let response = await fetch("https://api.github.com/users/up1")
let data = await response.json()
console.log(JSON.stringify(data, null, "\t"))
}
getDataFromAPI()