- https://github.com/werman/noise-suppression-for-voice
- https://github.com/lucianodato/noise-repellent
- https://github.com/lucianodato/speech-denoiser
Project | Windows | Linux | macOS |
---|
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Text.RegularExpressions; | |
using KMSignalR.Schemas; | |
using Microsoft.Extensions.CommandLineUtils; | |
using NJsonSchema; | |
using NJsonSchema.CodeGeneration; | |
using NJsonSchema.CodeGeneration.TypeScript; |
This is a guide for Scala and Java development on Windows, using Windows Subsystem for Linux, although a bunch of it is applicable to a VirtualBox / Vagrant / Docker subsystem environment. This is not complete, but is intended to be as step by step as possible.
Read the entire Decent Security guide, and follow the instructions, especially:
Update: there's an easier way to do this. Check out my new gist instead.
How I set up my Windows 10 machine for Node development. Time to complete: about 2 hours on a fast connection.
#!/bin/sh | |
# createswap.sh | |
# creates swap file. | |
# Optionally specify size (e.g. 1024M) | |
# If no size is specified, default to physical memory / 4 | |
# | |
# <[email protected]> | |
if [ $1 ]; then | |
SWAP_SIZE=$1 |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> | |
<title>Navbar Template for Bootstrap</title> |
get-childitem . -include *.sln -recurse | foreach ($_) { nuget restore $_.FullName -verbosity detailed} | |
get-childitem . -include *.png -recurse | foreach ($_) { pngout "$_"} |
I'm having trouble understanding the benefit of require.js. Can you help me out? I imagine other developers have a similar interest.
From Require.js - Why AMD:
The AMD format comes from wanting a module format that was better than today's "write a bunch of script tags with implicit dependencies that you have to manually order"
I don't quite understand why this methodology is so bad. The difficult part is that you have to manually order dependencies. But the benefit is that you don't have an additional layer of abstraction.