📗 문서 주소가 https://sce-tts.github.io/ 으로 변경되었습니다.
SCE-TTS와 관련한 최신 정보는 위 주소를 참고해주세요!
SCE-TTS와 관련한 최신 정보는 위 주소를 참고해주세요!
| // this is the background code... | |
| // listen for our browerAction to be clicked | |
| browser.browserAction.onClicked.addListener(function (tab) { | |
| // for the current tab, inject the "inject.js" file & execute it | |
| browser.tabs.executeScript(tab.id, { | |
| file: 'inject.js' | |
| }); | |
| }); |
| #include <errno.h> | |
| #include <unistd.h> | |
| #include <string.h> | |
| #include <resolv.h> | |
| #include <netdb.h> | |
| #include <openssl/ssl.h> | |
| #include <openssl/err.h> | |
| //Not sure what headers are needed or not | |
| //This code (theoretically) writes "Hello World, 123" to a socket over a secure TLS connection |
| /* | |
| * Copyright (c) 1996, 1998, Oracle and/or its affiliates. All rights reserved. | |
| * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | |
| * | |
| * This code is free software; you can redistribute it and/or modify it | |
| * under the terms of the GNU General Public License version 2 only, as | |
| * published by the Free Software Foundation. Oracle designates this | |
| * particular file as subject to the "Classpath" exception as provided | |
| * by Oracle in the LICENSE file that accompanied this code. | |
| * |
| #include <string> | |
| #include <vector> | |
| /* | |
| Base64 translates 24 bits into 4 ASCII characters at a time. First, | |
| 3 8-bit bytes are treated as 4 6-bit groups. Those 4 groups are | |
| translated into ASCII characters. That is, each 6-bit number is treated | |
| as an index into the ASCII character array. | |
| If the final set of bits is less 8 or 16 instead of 24, traditional base64 |