This file contains 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 { dirname, join } from "jsr:@std/path/"; | |
import { WalkEntry, walkSync } from "jsr:@std/fs/walk"; | |
const ROOT = <PATH_TO_DENO>; | |
const DIR_SKIP_LIST = [ | |
"/node_modules/", | |
"/testdata/", | |
"/tests/", | |
"/.github/", |
This file contains 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 { dirname, join } from "jsr:@std/path/"; | |
import { WalkEntry, walkSync } from "jsr:@std/fs/walk"; | |
const ROOT = <PATH_TO_DENO>; | |
const DIR_SKIP_LIST = [ | |
"/node_modules/", | |
"/testdata/", | |
"/tests/", | |
"/.github/", |
This file contains 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
const {PNG} = require('bundle.js'); | |
const {Button, ImageView, ui} = require('tabris'); | |
const base64 = require('base-64'); | |
function _arrayBufferToBase64( buffer ) { | |
var binary = ''; | |
var bytes = new Uint8Array( buffer ); | |
var len = bytes.byteLength; | |
for (var i = 0; i < len; i++) { | |
binary += String.fromCharCode( bytes[ i ] ); |
This file contains 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
const {PNG} = require('bundle.js'); | |
const {Button, ImageView, ui} = require('tabris'); | |
const base64 = require('base-64'); | |
function _arrayBufferToBase64( buffer ) { | |
var binary = ''; | |
var bytes = new Uint8Array( buffer ); | |
var len = bytes.byteLength; | |
for (var i = 0; i < len; i++) { | |
binary += String.fromCharCode( bytes[ i ] ); |
This file contains 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
#include <openssl/ssl.h> | |
#include <openssl/err.h> | |
#include <string.h> | |
#include <iostream> | |
using namespace std; | |
void handleOpenSSLErrors(void) | |
{ | |
ERR_print_errors_fp(stderr); | |
abort(); |
This file contains 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
#include <iostream> | |
#include <openssl/aes.h> | |
#include <openssl/evp.h> | |
#include <openssl/rsa.h> | |
#include <openssl/pem.h> | |
#include <openssl/ssl.h> | |
#include <openssl/bio.h> | |
#include <openssl/err.h> | |
#include <assert.h> |
This file contains 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
package com.eclipsesource.j2v8.tutorial; | |
import java.io.File; | |
import java.io.IOException; | |
import java.io.PrintWriter; | |
import com.eclipsesource.v8.JavaCallback; | |
import com.eclipsesource.v8.NodeJS; | |
import com.eclipsesource.v8.V8; | |
import com.eclipsesource.v8.V8Array; |
This file contains 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
package com.eclipsesource.j2v8.tutorial; | |
import java.io.File; | |
import java.io.IOException; | |
import java.io.PrintWriter; | |
import java.nio.ByteBuffer; | |
import com.eclipsesource.v8.NodeJS; | |
import com.eclipsesource.v8.Releasable; | |
import com.eclipsesource.v8.V8Array; |
This file contains 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
var CryptoJS = require('crypto-js'); | |
var total = 100000; | |
var counter = 0; | |
var empty = 0; | |
var other = 0; | |
function makeString(len) | |
{ | |
var text = ""; |
This file contains 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
var CryptoJS = require('crypto-js'); | |
var total = 100000; | |
var counter = 0; | |
var empty = 0; | |
var other = 0; | |
function makeString(len) | |
{ | |
var text = ""; |
NewerOlder