-i
- ignore errors
-c
- continue
--extract-audio
- extract audio track
--audio-format mp3
- convert to mp3
use clap::Parser; | |
use std::error::Error; | |
#[derive(Debug, Parser)] | |
struct Cli { | |
#[structopt(short = 'n')] | |
num: usize | |
} | |
fn main() -> Result<(), Box<dyn Error>> { |
using Microsoft.EntityFrameworkCore; | |
using System.Text.Json.Serialization; | |
using Microsoft.AspNetCore.RateLimiting; | |
using System.Threading.RateLimiting; | |
using Microsoft.OpenApi.Models; | |
using Microsoft.AspNetCore.Authentication.JwtBearer; | |
namespace Infrastructure; | |
public static class ConfigurationApp |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
public class Program | |
{ | |
public static void Main() | |
{ | |
(string, int) populacao = ("Rio Preto", 500_000); | |
Console.WriteLine($"{populacao.Item1}: {populacao.Item2}"); |
/** | |
* Implementação do algorítimo SoundEx em Javascript. | |
* @author João Batista Neto | |
* | |
* SoundEX é um algorítimo fonético para indexação de nomes pelo som segundo | |
* sua pronúncia. O algorítimo foi desenvolvido por Robert C. Russell e | |
* Margaret K. Odell e patenteado em 1918 e 1922. | |
* {@link http://en.wikipedia.org/wiki/Soundex} | |
* | |
* @return {String} |
#!/usr/bin/env python | |
#-*- coding: utf-8 -*- | |
""" | |
FizzBuzz | |
""" | |
def fizzbuzz(num): | |
retorno = '' | |
if num <= 0 : |
#-*- coding: utf-8 -*- | |
#Problema: dada uma matriz NxN, preenchê-la com números naturais em forma de espiral. | |
#Ex: matriz 4 x 4 | |
#01 02 03 04 | |
#12 13 14 05 | |
#11 16 15 06 | |
#10 09 08 07 | |
#Baseado versão pascal http://pastebin.com/YRHrMSGw |