code stringlengths 0 21.5M | repo_name stringlengths 4 92 | path stringlengths 1 189 | language stringlengths 0 26 | license stringclasses 11
values | size int64 0 21.5M |
|---|---|---|---|---|---|
/*
* Copyright (C) 2020 Stefan Westerfeld
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is ... | Tonypythony/audiowmark | src/threadpool.hh | C++ | mit | 1,482 |
#!/usr/bin/env python3
# test how long the watermarker takes until the first audio sample is available
import subprocess
import shlex
import time
import sys
seconds = 0
for i in range (10):
start_time = time.time() * 1000
proc = subprocess.Popen (shlex.split (sys.argv[1]), stdout=subprocess.PIPE, stderr=sub... | Tonypythony/audiowmark | src/ttfb-test.py | Python | mit | 641 |
/*
* Copyright (C) 2018-2020 Stefan Westerfeld
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This progra... | Tonypythony/audiowmark | src/utils.cc | C++ | mit | 4,127 |
/*
* Copyright (C) 2018-2020 Stefan Westerfeld
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This progra... | Tonypythony/audiowmark | src/utils.hh | C++ | mit | 2,934 |
#!/bin/bash
function die
{
echo >&2 "videowmark: error: $@"
exit 1
}
# auto detect codec and bitrate from input stream, generate ffmpeg options for audio encoder
function audio_encode_options
{
ffprobe -v error -print_format compact -show_streams "$1" | grep codec_type=audio | awk -F'|' '$1 == "stream" {
f... | Tonypythony/audiowmark | src/videowmark | none | mit | 4,799 |
/*
* Copyright (C) 2018-2020 Stefan Westerfeld
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This progra... | Tonypythony/audiowmark | src/wavdata.cc | C++ | mit | 2,570 |
/*
* Copyright (C) 2018-2020 Stefan Westerfeld
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This progra... | Tonypythony/audiowmark | src/wavdata.hh | C++ | mit | 1,753 |
/*
* Copyright (C) 2018-2020 Stefan Westerfeld
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This progra... | Tonypythony/audiowmark | src/wmadd.cc | C++ | mit | 24,136 |
/*
* Copyright (C) 2018-2020 Stefan Westerfeld
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This progra... | Tonypythony/audiowmark | src/wmcommon.cc | C++ | mit | 7,255 |
/*
* Copyright (C) 2018-2020 Stefan Westerfeld
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This progra... | Tonypythony/audiowmark | src/wmcommon.hh | C++ | mit | 6,532 |
/*
* Copyright (C) 2018-2020 Stefan Westerfeld
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This progra... | Tonypythony/audiowmark | src/wmget.cc | C++ | mit | 23,473 |
/*
* Copyright (C) 2018-2020 Stefan Westerfeld
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This progra... | Tonypythony/audiowmark | src/wmspeed.cc | C++ | mit | 18,709 |
/*
* Copyright (C) 2018-2020 Stefan Westerfeld
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This progra... | Tonypythony/audiowmark | src/wmspeed.hh | C++ | mit | 891 |
test-common.sh
| Tonypythony/audiowmark | tests/.gitignore | Git | mit | 15 |
check: detect-speed-test block-decoder-test clip-decoder-test \
pipe-test short-payload-test sync-test sample-rate-test \
key-test
EXTRA_DIST = detect-speed-test.sh block-decoder-test.sh clip-decoder-test.sh \
pipe-test.sh short-payload-test.sh sync-test.sh sample-rate-test.sh \
key-test.sh... | Tonypythony/audiowmark | tests/Makefile.am | am | mit | 801 |
#!/bin/bash
source test-common.sh
IN_WAV=block-decoder-test.wav
OUT_WAV=block-decoder-test-out.wav
audiowmark test-gen-noise $IN_WAV 200 44100
audiowmark_add $IN_WAV $OUT_WAV $TEST_MSG
audiowmark_cmp --expect-matches 5 $OUT_WAV $TEST_MSG
rm $IN_WAV $OUT_WAV
exit 0
| Tonypythony/audiowmark | tests/block-decoder-test.sh | Shell | mit | 269 |
#!/bin/bash
source test-common.sh
IN_WAV=clip-decoder-test.wav
OUT_WAV=clip-decoder-test-out.wav
CUT_WAV=clip-decoder-test-out-cut.wav
audiowmark test-gen-noise $IN_WAV 30 44100
audiowmark_add $IN_WAV $OUT_WAV $TEST_MSG
audiowmark_cmp --expect-matches 1 $OUT_WAV $TEST_MSG
# cut 1 second 300 samples
audiowmark cut-st... | Tonypythony/audiowmark | tests/clip-decoder-test.sh | Shell | mit | 438 |
#!/bin/bash
source test-common.sh
IN_WAV=detect-speed-test.wav
OUT_WAV=detect-speed-test-out.wav
OUTS_WAV=detect-speed-test-out-spd.wav
audiowmark test-gen-noise detect-speed-test.wav 30 44100
for SPEED in 0.9764 1.0 1.01
do
audiowmark_add $IN_WAV $OUT_WAV $TEST_MSG
audiowmark test-change-speed $OUT_WAV $OUTS_WA... | Tonypythony/audiowmark | tests/detect-speed-test.sh | Shell | mit | 524 |
#!/bin/bash
source test-common.sh
IN_WAV=key-test.wav
KEY1=key-test-1.key
KEY2=key-test-2.key
OUT1_WAV=key-test-out1.wav
OUT2_WAV=key-test-out2.wav
TEST_MSG2=0123456789abcdef0123456789abcdef
audiowmark test-gen-noise $IN_WAV 30 44100
audiowmark gen-key $KEY1
audiowmark gen-key $KEY2
audiowmark_add --key $KEY1 $IN_... | Tonypythony/audiowmark | tests/key-test.sh | Shell | mit | 1,184 |
#!/bin/bash
source test-common.sh
IN_WAV=pipe-test.wav
OUT_WAV=pipe-test-out.wav
audiowmark test-gen-noise $IN_WAV 200 44100
cat $IN_WAV | audiowmark_add - - $TEST_MSG > $OUT_WAV || die "watermark from pipe failed"
audiowmark_cmp --expect-matches 5 $OUT_WAV $TEST_MSG
cat $OUT_WAV | audiowmark_cmp --expect-matches 5 ... | Tonypythony/audiowmark | tests/pipe-test.sh | Shell | mit | 406 |
#!/bin/bash
source test-common.sh
IN_WAV=sample-rate-test.wav
OUT_WAV=sample-rate-test-out.wav
OUT_48000_WAV=sample-rate-test-out-48000.wav
audiowmark test-gen-noise $IN_WAV 200 32000
audiowmark_add $IN_WAV $OUT_WAV $TEST_MSG
audiowmark_cmp --expect-matches 5 $OUT_WAV $TEST_MSG
audiowmark test-resample $OUT_WAV $OUT... | Tonypythony/audiowmark | tests/sample-rate-test.sh | Shell | mit | 439 |
#!/bin/bash
source test-common.sh
IN_WAV=short-playload-test.wav
OUT_WAV=short-playload-test-out.wav
audiowmark test-gen-noise $IN_WAV 200 44100
audiowmark_add --short 12 $IN_WAV $OUT_WAV abc
audiowmark_cmp --short 12 $OUT_WAV abc
audiowmark_add --short 16 $IN_WAV $OUT_WAV abcd
audiowmark_cmp --short 16 $OUT_WAV abc... | Tonypythony/audiowmark | tests/short-payload-test.sh | Shell | mit | 440 |
#!/bin/bash
source test-common.sh
IN_WAV=sync-test.wav
OUT_WAV=sync-test-out.wav
CUT_WAV=sync-test-cut.wav
audiowmark test-gen-noise $IN_WAV 200 44100
audiowmark_add $IN_WAV $OUT_WAV $TEST_MSG
# cut 20 seconds and 300 samples
audiowmark cut-start $OUT_WAV $CUT_WAV 882300
audiowmark_cmp --expect-matches 3 $CUT_WAV $T... | Tonypythony/audiowmark | tests/sync-test.sh | Shell | mit | 365 |
# program locations
AUDIOWMARK=@top_builddir@/src/audiowmark
TEST_MSG=f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0
# common shell functions
die()
{
echo >&2 "$0: $@"
exit 1
}
audiowmark()
{
if [ "x$Q" == "x1" ] && [ -z "$V" ]; then
AUDIOWMARK_Q="-q"
else
echo >&2 ==== audiowmark "$@" ====
fi
$AUDIOWMARK --s... | Tonypythony/audiowmark | tests/test-common.sh.in | in | mit | 865 |
# MaxxtoolingCanada
Maxx Tooling is your one-stop destination to buy 3R Systems. We have come up with high-grade tooling precisely designed keeping the manufacturing and machining needs of our customers in mind. Visit us! https://maxxtooling.com/collections/maxxmacro | MaxxtoolingCanada/MaxxtoolingCanada | README.md | Markdown | unknown | 268 |
@font-face {
font-family: 'icons';
src: url('/font/icons.eot?83223639');
src: url('/font/icons.eot?83223639#iefix') format('embedded-opentype'),
url('/font/icons.woff?83223639') format('woff'),
url('/font/icons.ttf?83223639') format('truetype'),
url('/font/icons.svg?83223639#icons') format('svg');
f... | daisuke/Notebubble | css/Nueva carpeta/sidebar.css | CSS | mit | 7,056 |
@font-face {
font-family: 'icons';
src: url('/font/icons.eot?83223639');
src: url('/font/icons.eot?83223639#iefix') format('embedded-opentype'),
url('/font/icons.woff?83223639') format('woff'),
url('/font/icons.ttf?83223639') format('truetype'),
url('/font/icons.svg?83223639#icons') format('svg');
f... | daisuke/Notebubble | css/Nueva carpeta/sidebar_min.css | CSS | mit | 6,479 |
@font-face {
font-family: 'icons';
src: url('/font/icons.eot?83223639');
src: url('/font/icons.eot?83223639#iefix') format('embedded-opentype'),
url('/font/icons.woff?83223639') format('woff'),
url('/font/icons.ttf?83223639') format('truetype'),
url('/font/icons.svg?83223639#icons') format('svg');
f... | daisuke/Notebubble | css/Nueva carpeta/style.css | CSS | mit | 7,056 |
/*
Animation example, for spinners
*/
.animate-spin {
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
-webkit-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
display: inline-block;
}
@-moz-keyframes spin {
0% {
-moz-transform: rotate(0deg);
... | daisuke/Notebubble | css/animation.css | CSS | mit | 1,857 |
.icon-upload-1:before { content: '\e800'; } /* '' */
.icon-forward:before { content: '\e801'; } /* '' */
.icon-upload:before { content: '\f02f'; } /* '' */
| daisuke/Notebubble | css/dbicons-codes.css | CSS | mit | 166 |
@font-face {
font-family: 'dbicons';
src: url('../font/dbicons.eot?12643961');
src: url('../font/dbicons.eot?12643961#iefix') format('embedded-opentype'),
url('../font/dbicons.woff2?12643961') format('woff2'),
url('../font/dbicons.woff?12643961') format('woff'),
url('../font/dbicons.ttf?12643... | daisuke/Notebubble | css/dbicons.css | CSS | mit | 1,882 |
.icon-music:before { content: '\e800'; } /* '' */
.icon-search:before { content: '\e801'; } /* '' */
.icon-heart:before { content: '\e802'; } /* '' */
.icon-star:before { content: '\e803'; } /* '' */
.icon-user:before { content: '\e804'; } /* '' */
.icon-video:before { content: '\e805'; } /* '' */
.icon-picture:... | daisuke/Notebubble | css/icons-codes.css | CSS | mit | 3,959 |
@font-face {
font-family: 'icons';
src: url('../font/icons.eot?51771629');
src: url('../font/icons.eot?51771629#iefix') format('embedded-opentype'),
url('../font/icons.woff2?51771629') format('woff2'),
url('../font/icons.woff?51771629') format('woff'),
url('../font/icons.ttf?51771629') format... | daisuke/Notebubble | css/icons.css | CSS | mit | 5,651 |
.sidebar {
width: 20%;
min-width: 280px;
background-color: #2A2E35;
color: #ffffff;
display: flex;
flex-direction: column;
overflow-y: auto;
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10 and IE 11 */
user-select: none; /* Standard syntax */
}
.sidebar a {
text-decoration:none;
col... | daisuke/Notebubble | css/sidebar.css | CSS | mit | 1,841 |
.sidebar {
width: 70px;
background-color: #2A2E35;
color: #ffffff;
display: flex;
flex-direction: column;
overflow-y: auto;
overflow-x:hidden;
}
.chat {
flex: 1;
display: flex;
flex-direction: column;
background-color: #2980B9;
}
.sidebar-header {
padding: 15px;
background-color: #23272A;
font-size: 18px;... | daisuke/Notebubble | css/sidebar_min.css | CSS | mit | 1,577 |
@font-face {
font-family: 'icons';
src: url('/font/icons.eot?83223639');
src: url('/font/icons.eot?83223639#iefix') format('embedded-opentype'),
url('/font/icons.woff?83223639') format('woff'),
url('/font/icons.ttf?83223639') format('truetype'),
url('/font/icons.svg?83223639#icons') format('svg'... | daisuke/Notebubble | css/style.css | CSS | mit | 10,574 |
<?php
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
echo trim(shell_exec("dirchoser.bat"))."\\";
} else {
echo trim(shell_exec("zenity --file-selection --directory --display=:0"))."/";
}
?>
| daisuke/Notebubble | dirchooser.php | PHP | mit | 211 |
@if (@a==@b) @end /*
:: fchooser2.bat
:: batch portion
@echo off
setlocal
for /f "delims=" %%I in ('cscript /nologo /e:jscript "%~f0"') do (
echo %%I
)
goto :EOF
:: JScript portion */
var shl = new ActiveXObject("Shell.Application");
var folder = shl.BrowseForFolder(0, "Seleccione carpeta de ... | daisuke/Notebubble | dirchoser.bat | Batchfile | mit | 383 |
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Copyright (C) 2024 by original authors @ fontello.com</metadata>
<defs>
<font id="dbicons" horiz-adv-x="1000" >
<font-face font-fami... | daisuke/Notebubble | font/dbicons.svg | svg | mit | 1,551 |
<?php
function getOgTags($html)
{
$pattern='/<\s*meta\s+property="og:([^"]+)"\s+content="([^"]*)/i';
if(preg_match_all($pattern, $html, $out))
return array_combine($out[1], $out[2]);
return array();
}
function parseMarkdown($text) {
// Convert bold (**text**) to <b>text</b>
$text = preg_re... | daisuke/Notebubble | include/functions.php | PHP | mit | 3,863 |
<?php
function get_os() {
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
return "w";
} else {
return "l";
}
}
$system = array();
$system['os'] = get_os();
if ($system['os'] == "w") {
if (isset($_ENV['path'])) {
$path = trim($_ENV['path']);
@$exec = end(explode("\\", ... | daisuke/Notebubble | include/init.php | PHP | mit | 2,282 |
<?php
$db_file = $settings['path']."database.db";
if(!file_exists($db_file)){
echo $loc_string['message_db_not_found'];
die();
}
PDO_Connect("sqlite:$db_file");
function PDO_Connect($dsn, $user="", $password="")
{
global $PDO;
$PDO = new PDO($dsn, $user, $password);
$PDO->setAttribute(PDO::ATTR_ERRMODE,... | daisuke/Notebubble | include/sqlcon.php | PHP | mit | 1,993 |
<?php
error_reporting(0);
header('Expires: Sun, 01 Jan 2014 00:00:00 GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', FALSE);
header('Pragma: no-cache');
include "include/init.php";
date_default_timezone_set($settings['timezone']);
include "... | daisuke/Notebubble | index.php | PHP | mit | 1,208 |
window.setInterval(function() {
$.get("action.php?mode=checkreminders", function(data) {
$('.time').html(data);
});
}, 60000);
document.addEventListener("paste", function(e) {
const $hiddenFileInput = $("#file");
if (!$hiddenFileInput) return;
const clipboardData = e.clipboardData || window.clipboardData;
if ... | daisuke/Notebubble | js/scripts.js | JavaScript | mit | 13,111 |
<?php
$loc_string = array(
'categories_index_title' => 'Categories',
'chat_messages' => 'Notes',
'textarea_placeholder' => 'Write a note...',
'send_button' => 'Send',
'save_button' => 'Save Changes',
'category_add_title' => 'Add New Category',
'category_edit_title' => 'Edit Category',
'c... | daisuke/Notebubble | languages/english.php | PHP | mit | 3,074 |
<?php
$loc_string = array(
'categories_index_title' => 'Catégories',
'chat_messages' => 'Notes',
'textarea_placeholder' => 'Écrire une note...',
'send_button' => 'Envoyer',
'save_button' => 'Enregistrer les modifications',
'category_add_title' => 'Ajouter une nouvelle catégorie',
'category_e... | daisuke/Notebubble | languages/french.php | PHP | mit | 3,582 |
<?php
$loc_string = array(
'categories_index_title' => 'Kategorien',
'chat_messages' => 'Notizen',
'textarea_placeholder' => 'Schreibe eine Notiz...',
'send_button' => 'Senden',
'save_button' => 'Änderungen speichern',
'category_add_title' => 'Neue Kategorie hinzufügen',
'category_edit_title... | daisuke/Notebubble | languages/german.php | PHP | mit | 3,404 |
<?php
$loc_string = array(
'categories_index_title' => 'Categorie',
'chat_messages' => 'Note',
'textarea_placeholder' => 'Scrivi una nota...',
'send_button' => 'Invia',
'save_button' => 'Salva modifiche',
'category_add_title' => 'Aggiungi nuova categoria',
'category_edit_title' => 'Modifica ... | daisuke/Notebubble | languages/italian.php | PHP | mit | 3,284 |
<?php
$loc_string = array(
'categories_index_title' => 'カテゴリー',
'chat_messages' => 'ノート',
'textarea_placeholder' => 'ノートを書いてください...',
'send_button' => '送信',
'save_button' => '変更を保存',
'category_add_title' => '新しいカテゴリーを追加',
'category_edit_title' => 'カテゴリーを編集',
'category_form_name' => "名前",... | daisuke/Notebubble | languages/japanese.php | PHP | mit | 3,691 |
<?php
$loc_string = array(
'categories_index_title' => 'Categorias',
'chat_messages' => 'Notas',
'textarea_placeholder' => 'Escreva uma nota...',
'send_button' => 'Enviar',
'save_button' => 'Salvar alterações',
'category_add_title' => 'Adicionar nova categoria',
'category_edit_title' => 'Edi... | daisuke/Notebubble | languages/portuguese.php | PHP | mit | 3,340 |
<?php
$loc_string = array(
'categories_index_title' => 'Categorias',
'chat_messages' => 'Notas',
'textarea_placeholder' => 'Escribe una Nota...',
'send_button' => 'Enviar',
'save_button' => 'Guardar Cambios',
'category_add_title' => 'Agregar Nueva Categoria',
'category_edit_title' => 'Editar Categoria',
... | daisuke/Notebubble | languages/spanish.php | PHP | mit | 3,166 |
<?php
$content = "
<div style='width:60%; margin: 0 auto; display:inline-block; background-color:white; padding:20px; border-radius:10px; max-height:80vh; overflow-y:hidden;'>
<div>
<img src='assets/logo.png' style='box-shadow:2px 2px 5px rgba(0,0,0,0.5); max-width:50px; ' valign='middle'>
<span style='display... | daisuke/Notebubble | pages/about_english.php | PHP | mit | 1,577 |
<?php
$content = "
<div style='width:60%; margin: 0 auto; display:inline-block; background-color:white; padding:20px; border-radius:10px; max-height:80vh; overflow-y:hidden;'>
<div>
<img src='assets/logo.png' style='box-shadow:2px 2px 5px rgba(0,0,0,0.5); max-width:50px; ' valign='middle'>
<span style='display... | daisuke/Notebubble | pages/about_french.php | PHP | mit | 1,563 |
<?php
$content = "
<div style='width:60%; margin: 0 auto; display:inline-block; background-color:white; padding:20px; border-radius:10px; max-height:80vh; overflow-y:hidden;'>
<div>
<img src='assets/logo.png' style='box-shadow:2px 2px 5px rgba(0,0,0,0.5); max-width:50px; ' valign='middle'>
<span style='display... | daisuke/Notebubble | pages/about_german.php | PHP | mit | 1,578 |
<?php
$content = "
<div style='width:60%; margin: 0 auto; display:inline-block; background-color:white; padding:20px; border-radius:10px; max-height:80vh; overflow-y:hidden;'>
<div>
<img src='assets/logo.png' style='box-shadow:2px 2px 5px rgba(0,0,0,0.5); max-width:50px; ' valign='middle'>
<span style='display... | daisuke/Notebubble | pages/about_italian.php | PHP | mit | 1,573 |
<?php
$content = "
<div style='width:60%; margin: 0 auto; display:inline-block; background-color:white; padding:20px; border-radius:10px; max-height:80vh; overflow-y:hidden;'>
<div>
<img src='assets/logo.png' style='box-shadow:2px 2px 5px rgba(0,0,0,0.5); max-width:50px; ' valign='middle'>
<span style='display... | daisuke/Notebubble | pages/about_japanese.php | PHP | mit | 1,739 |
<?php
$content = "
<div style='width:60%; margin: 0 auto; display:inline-block; background-color:white; padding:20px; border-radius:10px; max-height:80vh; overflow-y:hidden;'>
<div>
<img src='assets/logo.png' style='box-shadow:2px 2px 5px rgba(0,0,0,0.5); max-width:50px; ' valign='middle'>
<span style='display... | daisuke/Notebubble | pages/about_portuguese.php | PHP | mit | 1,569 |
<?php
$content = "
<div style='width:60%; margin: 0 auto; display:inline-block; background-color:white; padding:20px; border-radius:10px; max-height:80vh; overflow-y:hidden;'>
<div>
<img src='assets/logo.png' style='box-shadow:2px 2px 5px rgba(0,0,0,0.5); max-width:50px; ' valign='middle'>
<span style='display... | daisuke/Notebubble | pages/about_spanish.php | PHP | mit | 1,598 |
<?php
$c = 1;
$cl = "";
foreach ($system['colors'] as $color){
$cl .= " <input type='radio' name='color' value='$color' ". ($c == 1 ? "checked" : "")."><div style='display:inline-block; width:30px; height:30px; background-color:$color;'>.</div> - ";
$c++;
}
$content = "
<div style='width:50%; min-width:400px; mar... | daisuke/Notebubble | pages/addchat.php | PHP | mit | 1,591 |
<?php
$content = "
<div style='width:50%; margin: 0 auto; display:inline-block; background-color:white; padding:20px; border-radius:10px;'>
<h1>Ayuda y Referencia</h1>
<p>Soporte limitado de markup en el texto de las notas:</p>
<table style='display:inline-block;'>
<tr><td>**texto**</td><td>=></td><td><b>texto</b><... | daisuke/Notebubble | pages/apphelp.php | PHP | mit | 494 |
<?php
$path = $settings['path'];
$sfile = file_get_contents($system['workdir'] . "settings.php");
if (!is_numeric(strpos($sfile, "path"))) {
$path = "Portable";
}
$content = "
<div style='min-width:70%; margin: 0 auto; display:inline-block; background-color:white; padding:20px; border-radius:10px;'>
<h1>".$loc_str... | daisuke/Notebubble | pages/appsettings.php | PHP | mit | 5,427 |
<?php
$id = $_GET['chat_id'];
$chat = PDO_FetchAll("SELECT * FROM chat WHERE id = $id")[0];
$c = 1;
$cl = "";
foreach ($system['colors'] as $color){
$cl .= " <input type='radio' name='color' value='$color' ". ($chat['color'] == $color ? "checked" : "")."><div style='display:inline-block; width:30px; height:30px; ba... | daisuke/Notebubble | pages/editchat.php | PHP | mit | 1,515 |
<?php
$content = "
<div style='width:80%; margin: 0 auto; display:inline-block; background-color:white; padding:20px; border-radius:10px; max-height:80vh; overflow-y:scroll;'>
<div>
<img src='assets/logo.png' style='box-shadow:2px 2px 5px rgba(0,0,0,0.5); max-width:50px; ' valign='middle'>
<span style='display:... | daisuke/Notebubble | pages/help_english.php | PHP | mit | 6,432 |
<?php
$content = "
<div style='width:80%; margin: 0 auto; display:inline-block; background-color:white; padding:20px; border-radius:10px; max-height:80vh; overflow-y:scroll;'>
<div>
<img src='assets/logo.png' style='box-shadow:2px 2px 5px rgba(0,0,0,0.5); max-width:50px; ' valign='middle'>
<span style='display:i... | daisuke/Notebubble | pages/help_french.php | PHP | mit | 6,997 |
<?php
$content = "
<div style='width:80%; margin: 0 auto; display:inline-block; background-color:white; padding:20px; border-radius:10px; max-height:80vh; overflow-y:scroll;'>
<div>
<img src='assets/logo.png' style='box-shadow:2px 2px 5px rgba(0,0,0,0.5); max-width:50px; ' valign='middle'>
<span style='display:i... | daisuke/Notebubble | pages/help_german.php | PHP | mit | 7,519 |
<?php
$content = "
<div style='width:80%; margin: 0 auto; display:inline-block; background-color:white; padding:20px; border-radius:10px; max-height:80vh; overflow-y:scroll;'>
<div>
<img src='assets/logo.png' style='box-shadow:2px 2px 5px rgba(0,0,0,0.5); max-width:50px; ' valign='middle'>
<span style='display:i... | daisuke/Notebubble | pages/help_italian.php | PHP | mit | 6,764 |
<?php
$content = "
<div style='width:80%; margin: 0 auto; display:inline-block; background-color:white; padding:20px; border-radius:10px; max-height:80vh; overflow-y:scroll;'>
<div>
<img src='assets/logo.png' style='box-shadow:2px 2px 5px rgba(0,0,0,0.5); max-width:50px; ' valign='middle'>
<span style='display:i... | daisuke/Notebubble | pages/help_japanese.php | PHP | mit | 8,068 |
<?php
$content = "
<div style='width:80%; margin: 0 auto; display:inline-block; background-color:white; padding:20px; border-radius:10px; max-height:80vh; overflow-y:scroll;'>
<div>
<img src='assets/logo.png' style='box-shadow:2px 2px 5px rgba(0,0,0,0.5); max-width:50px; ' valign='middle'>
<span style='display:i... | daisuke/Notebubble | pages/help_portuguese.php | PHP | mit | 7,137 |
<?php
$content = "
<div style='width:80%; margin: 0 auto; display:inline-block; background-color:white; padding:20px; border-radius:10px; max-height:80vh; overflow-y:scroll;'>
<div>
<img src='assets/logo.png' style='box-shadow:2px 2px 5px rgba(0,0,0,0.5); max-width:50px; ' valign='middle'>
<span style='display:i... | daisuke/Notebubble | pages/help_spanish.php | PHP | mit | 7,175 |
<?php
$content = "
<div class='main' style='min-width:100%; margin: 0 auto; display:inline-block; padding:20px;'>
<div>
<img src='assets/logo.png' style='box-shadow:2px 2px 5px rgba(0,0,0,0.5); max-width:50px; ' valign='middle'>
<span style='display:inline-block; font-weight:light; color:white; font-size:30px; tex... | daisuke/Notebubble | pages/main.php | PHP | mit | 2,966 |
<?php
$content = "
<div style='width:50%; margin: 0 auto; display:inline-block; background-color:white; padding:20px; border-radius:10px;'>
<h1><span style='font-family:icons;'></span> ".$loc_string['protected_title']."</h1>
<input type='hidden' name='chat' id='chat' value='$id'>
".$loc_string['category_form_pass']... | daisuke/Notebubble | pages/pass.php | PHP | mit | 715 |
<?php
$content = "
<div style='min-width:100%; margin: 0 auto; display:inline-block; padding:20px; border-radius:10px;'>
<div style='width:50vw; background-color:white; display:inline-block; min-height:50px; line-height:50px; border-radius:20px;'>
<div style='width:100%; margin:0 auto; display:inline-block; vertica... | daisuke/Notebubble | pages/search.php | PHP | mit | 644 |
# Notebubble

Notebubble is a fast and no-frills way to store your thoughts, pending tasks, ideas, and more. If you've ever used an instant messaging app as a place to store information, Notebubble is exactly what you need—a simple and efficient place to drop any kind of inform... | daisuke/Notebubble | readme.md | Markdown | mit | 3,882 |
<?php
function get_os(){
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
return "w";
} else {
return "l";
}
}
if (get_os() == "w"){
rename ("c:\\notebubble\\settings_bak.php","c:\\notebubble\\settings.php");
} else {
$home_dir = posix_getpwnam(get_current_user())['dir'];
rename ("$home_dir/.local/share/no... | daisuke/Notebubble | rollback.php | PHP | mit | 435 |
<?php
$action = array(
'message_move_db' => 'moveDatabase',
'message_move_db_loc' => 'moveDatabaseLoc',
'message_delete_chat' => 'deleteChat',
);
$dialog = str_replace(array("#content#","function","Yes","No"),array($loc_string[$_GET['text']],$action[$_GET['text']],$loc_string['button_yes'],$loc_string['butto... | daisuke/Notebubble | system/dialog.php | PHP | mit | 397 |
<?php
function renderMessage($message){
GLOBAL $loc_string;
$text = nl2br(parseMarkdown($message['text']));
if(!is_numeric(strpos($text,"href")) ){
$text = preg_replace(
"~[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]~",
"<a href=\"\\0\" class='link' target=\"_blank\">\\0</a>",
$text);
}
$urlpreview ... | daisuke/Notebubble | system/getmessage.php | PHP | mit | 4,315 |
<?php
$id = $_POST['chat'];
$text = htmlentities($_POST['text'],ENT_QUOTES);
if ($_POST['editmsg'] != 0){
PDO_Execute("UPDATE message SET text = \"$text\" WHERE id = ".$_POST['editmsg']);
PDO_Execute("DELETE FROM urlpreview WHERE message_id = ".$_POST['editmsg']);
PDO_Execute("DELETE FROM todo WHERE message_... | daisuke/Notebubble | system/newmessage.php | PHP | mit | 4,751 |
<?php
$searchquery = $_GET['searchquery'];
$messages = PDO_FetchAll("SELECT message.*,urlpreview.url,urlpreview.site,urlpreview.title,urlpreview.desc,urlpreview.image,attachment.name as fname,attachment.type as ftype,attachment.size as fsize,attachment.preview as fpreview, reminder.date as reminder, reminder.active F... | daisuke/Notebubble | system/search.php | PHP | mit | 811 |
<?php
function sidebar() {
global $loc_string;
global $system;
global $settings;
?>
<div class="sidebar-header">
<div style='float:left;' class='title'><a href='index.php'><?php echo $loc_string['categories_index_title']; ?></a> </div>
<div class='chats-menu' title='<?php echo $loc_string['tooltip_open... | daisuke/Notebubble | system/sidebar.php | PHP | mit | 3,242 |
<div style='justify-content: center; align-items: center; width: 35vw; display:block; background-color:white; border-radius:5px; padding:20px;'>
<div style='padding:5px;'>#content#</div>
<div class='dialogbutton' style='color:blue;' onClick='function();'>Yes</div>
<div class='dialogbutton' onCLick='closeDialog()... | daisuke/Notebubble | templates/genericdialog.txt | Text | mit | 340 |
<div class="messages" style='text-align:center;'>
<div style='display: flex; justify-content: center; align-items: center; height: 100vh; '>
#content#
</div>
</div> | daisuke/Notebubble | templates/genericpage.txt | Text | mit | 168 |
/*
* main.css
* CSS stylesheet for the Dragora GNU/Linux-Libre website
* (https://www.dragora.org)
*
*
* Copyright (C)
* 2019-2021, Matias Fonzo and Michael Siegel
* 2019 Chris F. A. Johnson
* 2023 Matias Fonzo
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except ... | bkmgit/dragora | common/main.css | CSS | unknown | 2,640 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="../common/main.css">
<link rel="icon" type="image/gif" href="../common/dragora.ico">
<titl... | bkmgit/dragora | en/donate.html | HTML | unknown | 9,271 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-15">
<link rel="stylesheet" type="text/css" href="../common/main.css">
<link rel="icon" type="image/gif" href="../common/dragora.ico">... | bkmgit/dragora | en/index.html | HTML | unknown | 8,622 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-15">
<link rel="stylesheet" type="text/css" href="../common/main.css">
<link rel="icon" type="image/gif" href="../common/dragora.ico">... | bkmgit/dragora | en/logos.html | HTML | unknown | 2,538 |
<?xml version="1.0" encoding="iso-8859-1" ?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
<!ENTITY tex "TeX">
<!ENTITY latex "LaTeX">
]>
<book id="dragora-handbook.doc" lang="en">
<title>Dragora 3.0 Handbook</title>
<!-- %**end of header -->
... | bkmgit/dragora | en/manual/dragora-handbook.doc | doc | unknown | 93,599 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Copyright (C) 2020-2023 The Dragora Team.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version publ... | bkmgit/dragora | en/manual/dragora-handbook.html | HTML | unknown | 116,692 |
1 About this handbook
1.1 Typographic conventions
Revision history (ChangeLog)
2 What is Dragora?
2.1 Free software
2.2 GNU
2.3 Linux and Linux-libre
3 Why should I use Dragora?
4 History
4.1 Releases
5 Maintainers
6 A quick glance at Dragora
7 Boot options from live medium
8 Using dragora-installer
9 Instal... | bkmgit/dragora | en/manual/dragora-handbook.txt | Text | unknown | 75,275 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-15">
<link rel="stylesheet" type="text/css" href="../../common/main.css">
<link rel="icon" type="image/gif" href="../../common/dragora... | bkmgit/dragora | en/manual/index.html | HTML | unknown | 1,810 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-15">
<link rel="stylesheet" type="text/css" href="../common/main.css">
<link rel="icon" type="image/gif" href="../common/dragora.ico">... | bkmgit/dragora | en/mirrors.html | HTML | unknown | 3,648 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-15">
<link rel="stylesheet" type="text/css" href="../common/main.css">
<link rel="icon" type="image/gif" href="../common/dragora.ico">... | bkmgit/dragora | en/news.html | HTML | unknown | 4,919 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Dragora GNU/Linux-Libre</title>
<meta http-equiv="refresh" content="0; URL=en/index.html">
</head>
<body>
<p>HTML redirect to <code>/en/index.html</code></p>
</body>
</html>
| bkmgit/dragora | index.html | HTML | unknown | 294 |
Django was originally created in late 2003 at World Online, the web division
of the Lawrence Journal-World newspaper in Lawrence, Kansas.
Here is an inevitably incomplete list of MUCH-APPRECIATED CONTRIBUTORS --
people who have submitted patches, reported bugs, added translations, helped
answer newbie questions, and g... | castiel248/Convert | Lib/site-packages/Django-4.2.2.dist-info/AUTHORS | none | mit | 41,324 |
pip
| castiel248/Convert | Lib/site-packages/Django-4.2.2.dist-info/INSTALLER | none | mit | 4 |
Django is licensed under the three-clause BSD license; see the file
LICENSE for details.
Django includes code from the Python standard library, which is licensed under
the Python license, a permissive open source license. The copyright and license
is included below for compliance with Python's terms.
----------------... | castiel248/Convert | Lib/site-packages/Django-4.2.2.dist-info/LICENSE.python | python | mit | 14,383 |
Metadata-Version: 2.1
Name: Django
Version: 4.2.2
Summary: A high-level Python web framework that encourages rapid development and clean, pragmatic design.
Home-page: https://www.djangoproject.com/
Author: Django Software Foundation
Author-email: foundation@djangoproject.com
License: BSD-3-Clause
Project-URL: Documenta... | castiel248/Convert | Lib/site-packages/Django-4.2.2.dist-info/METADATA | none | mit | 4,081 |
../../Scripts/django-admin.exe,sha256=n2bc4UbxXoYpkZYd6oPlIgV24UrMFLVAG9rfMDZXcRM,108483
Django-4.2.2.dist-info/AUTHORS,sha256=yzHhkEkMNvfdpMSjWu3JqzEsUREzhacOPQSTr2EwJBs,41324
Django-4.2.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
Django-4.2.2.dist-info/LICENSE,sha256=uEZBXRtRTpwd_xSiLeu... | castiel248/Convert | Lib/site-packages/Django-4.2.2.dist-info/RECORD | none | mit | 439,994 |
castiel248/Convert | Lib/site-packages/Django-4.2.2.dist-info/REQUESTED | none | mit | 0 | |
Wheel-Version: 1.0
Generator: bdist_wheel (0.40.0)
Root-Is-Purelib: true
Tag: py3-none-any
| castiel248/Convert | Lib/site-packages/Django-4.2.2.dist-info/WHEEL | none | mit | 92 |
[console_scripts]
django-admin = django.core.management:execute_from_command_line
| castiel248/Convert | Lib/site-packages/Django-4.2.2.dist-info/entry_points.txt | Text | mit | 82 |