Official guide for PulseAudio: https://docs.audiorelay.net/instructions/linux/use-your-phone-as-a-mic-for-a-linux-pc
From: https://audiorelay.net/downloads/linux
Deb on debian or ubuntu, archive for others.
$mysqli = new mysqli('localhost', '#username', '#password', '#database'); | |
$handle = fopen('sqldump.sql', 'rb'); | |
if ($handle) { | |
while (!feof($handle)) { | |
// This assumes you don't have a row that is > 1MB (1000000) | |
// which is unlikely given the size of your DB | |
// Note that it has a DIRECT effect on your scripts memory | |
// usage. | |
$buffer = stream_get_line($handle, 1000000, ";\n"); |
import { Meteor } from 'meteor/meteor'; | |
import { Accounts } from 'meteor/accounts-base'; | |
import { FilesCollection } from 'meteor/ostrio:files'; | |
import * as fs from 'fs'; | |
import multer from 'multer'; | |
export const Avatars = new FilesCollection({ | |
collectionName: 'avatars', | |
allowClientCode: false, | |
onBeforeUpload: function (file) { |
Official guide for PulseAudio: https://docs.audiorelay.net/instructions/linux/use-your-phone-as-a-mic-for-a-linux-pc
From: https://audiorelay.net/downloads/linux
Deb on debian or ubuntu, archive for others.