Need to enable in the S3 Bucket console
"ExposeHeaders": [
"ETag",
"Content-Length",
"Range",
"Content-Range"
]
Need to enable in the S3 Bucket console
"ExposeHeaders": [
"ETag",
"Content-Length",
"Range",
"Content-Range"
]
void main() { | |
// Ini adalah form question dan answer yang di isi oleh user | |
var listanswer = [ | |
{ 'answer': 1, 'question': 1}, | |
{ 'answer': 2, 'question': 2} | |
]; | |
// ini data yang dikirim ke server | |
var dataDikirim = { | |
'ktp': 'ktp-kucing' |
"use strict"; | |
// Require the framework and instantiate it | |
import fastify from "fastify"; | |
import fs from "node:fs"; | |
import { join } from "node:path"; | |
import { Readable } from "node:stream"; | |
const app = fastify({ logger: true }); | |
async function* streamFile() { |
3rd Lib
// print a name | |
function sayHello(name) { | |
console.log(`Hallo ${name} (^▽^)`) | |
} | |
// check if number are odd or even | |
function oddOrEven(num) { | |
if (num % 2 === 0) { | |
console.log('Genab') | |
} else { |
-- vim options | |
vim.opt.shiftwidth = 2 | |
vim.opt.tabstop = 2 | |
vim.opt.relativenumber = true | |
-- general | |
lvim.log.level = "info" | |
lvim.format_on_save = { | |
enabled = true, | |
pattern = "*.lua,*.js,*.ts,*.py", |
SDL video target is 'x11' | |
This system supports the OpenGL extension GL_EXT_framebuffer_object. | |
This system supports the OpenGL extension GL_EXT_framebuffer_blit. | |
This system supports the OpenGL extension GL_EXT_framebuffer_multisample. | |
This system DOES NOT support the OpenGL extension GL_APPLE_fence. | |
This system DOES NOT support the OpenGL extension GL_NV_fence. | |
This system supports the OpenGL extension GL_ARB_sync. | |
This system supports the OpenGL extension GL_EXT_draw_buffers2. | |
This system DOES NOT support the OpenGL extension GL_EXT_bindable_uniform. | |
This system DOES NOT support the OpenGL extension GL_APPLE_flush_buffer_range. |
#!/usr/bin/env node | |
/* I found this code somewhere in the wild if someone could reference it I would happy | |
* I'm creating this because my google search cant find it! It will run index.js | |
* and watch files under folder src. Thanks. tell me if you found the source of this code | |
* I'm glad to mention it here. | |
*/ | |
/* eslint-disable no-path-concat */ |