AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • Início
  • system&network
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • Início
  • system&network
    • Recentes
    • Highest score
    • tags
  • Ubuntu
    • Recentes
    • Highest score
    • tags
  • Unix
    • Recentes
    • tags
  • DBA
    • Recentes
    • tags
  • Computer
    • Recentes
    • tags
  • Coding
    • Recentes
    • tags
Início / user-640165

Just Me's questions

Martin Hope
Just Me
Asked: 2023-07-25 17:51:33 +0800 CST

Combine duas fórmulas regex em uma (usando notepad ++)

  • 5
Si cum îi semănau ! Fraţi buni, puindu-si, ca si el, tot sufletul 
în ceea ce făceau, muncind din greu, luptind din greu, jert- 
findu-se, fără nici un gînd de răsplată.

Simțind în tot ceasul, 
asupra destinului lor, o poruncă ce vine mai de departe Si 
poruncește mai straşnic decît cea pe care le-o strigă împre- 
jurarile. În fata îngrozitoarei tragedii a războiului, un pictor 
nou se destepta în Grigorescu.

Deve se tornar:

Şi cum îi semănau ! Fraţi buni, puindu-si, ca si el, tot sufletul în ceea ce făceau, muncind din greu, luptind din greu, jertfindu-se, fără nici un gînd de răsplată.

Simțind în tot ceasul, asupra destinului lor, o poruncă ce vine mai de departe Si poruncește mai straşnic decît cea pe care le-o strigă împrejurarile. În fata îngrozitoarei tragedii a războiului, un pictor nou se destepta în Grigorescu.

Para isso, agora estou usando 2 fórmulas regex:

ENCONTRAR:-\s+

SUBSTITUIR POR:(leave empty)

e

ENCONTRAR:\n\s+

SUBSTITUIR POR:(leave empty)

Especialmente, tome cuidado para que o final de algumas linhas tenha algo assim: "jert-find-se" , isso significa que a palavra está dividida em duas. Este tipo de palavras devem ser conectadas, mas sem hífen, assim: "jertfindu-se"

Como posso combinar as duas fórmulas regex em uma, de modo a obter o mesmo resultado?

Eu tentei essa combinação, mas não é muito boa:

ENCONTRAR: (-\s+)|\1|(?=(\n\s+))|\2

OU

ENCONTRAR: [\n-](\s+)|(\s+)|\1|\2

notepad++
  • 1 respostas
  • 20 Views
Martin Hope
Just Me
Asked: 2023-06-23 17:37:46 +0800 CST

Regex: Exclua todas as tags html dentro de 2 outras tags, exceto <a href=.*?"> e </a>

  • 4

Desejo excluir todas as tags html dentro de 2 outras tags, exceto <a href=.*?">e</a>

Por exemplo:

<p class="mb-40px">Another blending </h2>option is to all the <div>brushstrokes to show. In the painting of trees above, I didn’t spend much time trying to <a href=https://orfun.com/acrylic class="color-bebe" target="_new">blend the colors</a>. I simply mix each color and apply it without fussing with it.</p>

Saída:

<p class="mb-40px">Another blending option is to all the brushstrokes to show. In the painting of trees above, I didn’t spend much time trying to <a href=https://orfun.com/acrylic class="color-bebe" target="_new">blend the colors</a>. I simply mix each color and apply it without fussing with it.</p>

Meu regex não é muito bom:

ENCONTRAR:<p class="mb-40px">.*?</p>(?!</a>)|(?!<a href=.*?">)

notepad++
  • 2 respostas
  • 53 Views
Martin Hope
Just Me
Asked: 2023-06-15 15:38:49 +0800 CST

REGEX: coloque todas as palavras de um parágrafo em uma única linha

  • 5

como visto abaixo, cada linha em todas as paráfrases está inacabada. As palavras no início de cada linha do parágrafo não são uma continuação da linha anterior. Estou interessado em conectar todas as linhas da paráfrase sem nenhuma quebra de palavra.

When the water rises up to F, the piece at A will be visible; when it
reaches G, both A and B will be visible; and when it comes up to H,
all three pieces will be visible.


_Artificial Earthquake and Volcano._

Grind an equal quantity of fresh iron filings with pure sulphur, till
the whole be reduced to a fine powder. Be careful not to let any wet
come near it. Then bury about thirty pounds of it a foot deep in the
earth, and in about six or eight hours the ground will heave and
swell, and shortly after send forth smoke and flames like a burning
mountain. If the earth is raised in a conical shape, it will be no bad
miniature resemblance of one of the burning mountains.


_Artificial Illuminations._

A very pleasing exhibition may be made with very little trouble or
expense, in the following manner: Provide a box, which you fit up with
architectural designs cut out on pasteboard; prick small holes in
those parts of the building where you wish the illuminations to
appear, observing, that in proportion to the perspective, the holes
are to be made smaller; and on the near objects the holes are to be
made larger. Behind these designs thus perforated, you fix a lamp or
candle, but in such a manner that the reflection of the light shall
only shine through the holes; then placing a light of just sufficient
brilliance to show the design of the buildings before it, and making a
hole for the sight at the front end of the box, you will have a very
tolerable representation of illuminated buildings.

A SAÍDA

When the water rises up to F, the piece at A will be visible; when it reaches G, both A and B will be visible; and when it comes up to H, all three pieces will be visible.


_Artificial Earthquake and Volcano._

Grind an equal quantity of fresh iron filings with pure sulphur, till the whole be reduced to a fine powder. Be careful not to let any wet come near it. Then bury about thirty pounds of it a foot deep in the earth, and in about six or eight hours the ground will heave and swell, and shortly after send forth smoke and flames like a burning mountain. If the earth is raised in a conical shape, it will be no bad miniature resemblance of one of the burning mountains.


_Artificial Illuminations._

A very pleasing exhibition may be made with very little trouble or expense, in the following manner: Provide a box, which you fit up with architectural designs cut out on pasteboard; prick small holes in those parts of the building where you wish the illuminations to appear, observing, that in proportion to the perspective, the holes are to be made smaller; and on the near objects the holes are to be made larger. Behind these designs thus perforated, you fix a lamp or candle, but in such a manner that the reflection of the light shall only shine through the holes; then placing a light of just sufficient brilliance to show the design of the buildings before it, and making a hole for the sight at the front end of the box, you will have a very tolerable representation of illuminated buildings.

Meu regex não funciona muito bem:

ENCONTRAR:^(.*?)$(\K.*)\r

SUBSTITUIR POR:\2

OU (um melhor)

ENCONTRAR:^(.*?)$(\R)

SUBSTITUIR POR:\1

notepad++
  • 3 respostas
  • 26 Views
Martin Hope
Just Me
Asked: 2023-04-28 18:47:31 +0800 CST

Regex: encontre todas as palavras que começam com `un|unui|o|unei` seguidas por quaisquer palavras, mas depois disso as palavras têm o elemento de conexão `de`

  • 5

Eu quero encontrar uma fórmula regex, para encontrar todas as palavras que começam com un|unui|o|uneiseguidas por qualquer palavra, mas depois disso as palavras têm o elemento de conexão"de"

unui model de amintire 
un pericol de inundatie
o carte plina de inspiratie
unei casete de sticla

Extraído do texto:

Trebuie sa ma dedic unui model de amintire care sa ma faca sa ma simt bun. Trebuie, mai ales, sa evit un pericol de inundatie care poate afecta fizicul. Am citit chiar azi o carte plina de inspiratie care m-a facut sa ma simt erou. Sunt prizonierul unei casete de sticla care nu se va sparge niciodata.

O resultado, apenas para localizar, não substituir:

model
pericol
carte plina
casete

Meu regex não é tão bom.

ENCONTRAR: un|unui|o|unei(.*?)de\x20\w+

notepad++
  • 2 respostas
  • 27 Views
Martin Hope
Just Me
Asked: 2023-04-19 00:27:09 +0800 CST

Regex: coloque o conteúdo de várias tags html em uma única tag html

  • 5
<p class="mb-40px">Decisive too, of
<p class="mb-40px">otherwise, it was the opportunity to
<p class="mb-40px">acquire what were to be two pillars
<p class="mb-40px">fundamentals of his intellectual formation:
<p class="mb-40px">Latin and virtually none of the Greek
<p class="mb-40px">written down, they were the subject of daily commentary on Apollo.</p>

Deve se tornar:

<p class="mb-40px">Decisive too, of otherwise, it was the opportunity to acquire what were to be two pillars fundamentals of his intellectual formation: Latin and virtually none of the Greek written down, they were the subject of daily commentary on Apollo.</p>

Meu regex não é muito bom:

Encontrar: (<p class="mb-40px">)(.*?\s+\n)[\s\S]*?</p>

Substituir por: \1$0\3

notepad++
  • 3 respostas
  • 24 Views
Martin Hope
Just Me
Asked: 2023-03-06 05:23:14 +0800 CST

Como extrair o banco de dados do software de catálogo WhereIsIt e salvar esse banco de dados como um arquivo excel ou de texto?

  • 6

Alguém sabe como extrair o banco de dados do software de catálogo WhereIsIt e salvar esse banco de dados como um arquivo excel ou de texto?

insira a descrição da imagem aqui

database
  • 1 respostas
  • 14 Views
Martin Hope
Just Me
Asked: 2023-03-05 20:48:45 +0800 CST

Abra várias instâncias de arquivos/código Python .py com CMD (prompt de comando) com extensão .bat

  • 5

Tento abrir várias instâncias de arquivos/código Python .py com CMD (prompt de comando). Então, criei um arquivo com a extensão .bat e o executo toda vez que quero abrir vários arquivos/código .py.

Este é o código do arquivo .bat

@echo off
"e:\Carte\BB\App-one.py" 
"e:\Carte\BB\App-two.py" 
"e:\Carte\BB\App-three.py" 
"e:\Carte\BB\App-four.py" 
"e:\Carte\BB\App-five.py" 

O único problema que tenho é que quando clico pela primeira vez e o Python está fechado, o cmd abrirá apenas o primeiro "App-one.py"

Portanto, tenho que executar duas vezes o arquivo .bat para abrir todos os arquivos/códigos Python.

Agora, quero abrir todos os arquivos .py com UM CLIQUE, não duas vezes.

Como eu posso fazer isso ?

python
  • 1 respostas
  • 20 Views
Martin Hope
Just Me
Asked: 2023-02-21 01:27:00 +0800 CST

Windows10: Por que o aplicativo Winamp não é minimizado automaticamente quando clico em qualquer outro lugar em um aplicativo diferente?

  • 6

desde ontem estou com esse problema.

O aplicativo Winamp não é mais minimizado automaticamente quando clico em qualquer outro lugar em um aplicativo diferente. Basicamente, o Winamp fica no ar, na frente de qualquer outro aplicativo que eu trabalho, sempre. Devo clicar no botão "minimizar" do winamp para desligá-lo, caso contrário, permanece lá.

Qual é a solução para isso? Por que isso está acontecendo de repente?

windows-10
  • 1 respostas
  • 21 Views
Martin Hope
Just Me
Asked: 2022-05-04 07:34:06 +0800 CST

Regex: Adicionar tag html no início de cada linha (que não possui tag inicial)

  • 4

Eu preciso adicionar <p class="mb-40px"> no início de cada linha que não tem essa tag.

Por exemplo:

<p class="mb-40px">moderniseringen av de omgivande flerfamiljshusen berodde helt på hans vilja.</p>

acţiunile de modernizare a blocurilor din jur depindeau în totalitate de voinţa lui.</p>

the modernization of the surrounding blocks of flats depended entirely on his will.</p>

la modernización de los bloques de pisos circundantes dependía enteramente de su voluntad.</p>

Resultado:

<p class="mb-40px">moderniseringen av de omgivande flerfamiljshusen berodde helt på hans vilja.</p>

<p class="mb-40px">acţiunile de modernizare a blocurilor din jur depindeau în totalitate de voinţa lui.</p>

<p class="mb-40px">the modernization of the surrounding blocks of flats depended entirely on his will.</p>

<p class="mb-40px">la modernización de los bloques de pisos circundantes dependía enteramente de su voluntad.</p>

Aparentemente é fácil

ACHAR:^

SUBSTITUIR POR:<p class="mb-40px">

Mas, neste caso, obterei o dobro da primeira tag na primeira linha: <p class="mb-40px"><p class="mb-40px">

regex notepad++
  • 2 respostas
  • 105 Views
Martin Hope
Just Me
Asked: 2022-05-03 21:11:07 +0800 CST

Regex: encontre e exclua a tag html que está contida em outra tag

  • 5

Tenho 2 parágrafos, com tag html <p class="mb-40px"></p>Dentro desta tag tem texto e outra tag <p..>

Eu preciso encontrar e excluir a tag html que está contida na tag principal<p class="mb-40px"></p>

Exemplo:

<p class="mb-40px">Miracles every day <p lang="ro-RO" align="JUSTIFY">being at la home, the poet Petru Iliesu made an international appeal to condemn the killing of demonstrators, shot on the streets of town.</p>

<p class="mb-40px">The pleasure we feel after reading a book is different from the pleasure of tasting a dish <p class="dis23">. In the first case, pleasure is disinterested, having no particular purpose, as a release from external preoccupations.</p>

Resultado

<p class="mb-40px">Miracles every day being at la home, the poet Petru Iliesu made an international appeal to condemn the killing of demonstrators, shot on the streets of town.</p>

<p class="mb-40px">The pleasure we feel after reading a book is different from the pleasure of tasting a dish. In the first case, pleasure is disinterested, having no particular purpose, as a release from external preoccupations.</p>

Meu regex não é muito bom:

ACHAR: (?:<p class="mb-40px">|\G)\S*\K(?:\h+<\s*(\w+)[^/>]*>)(?=.*</p>)

Substitua por: (deixe em branco)

regex notepad++
  • 2 respostas
  • 114 Views
Martin Hope
Just Me
Asked: 2022-04-07 00:41:06 +0800 CST

Regex: Encontre linhas que não comecem com a tag html, mas terminem com outra tag e substituam no início

  • 5

Eu tenho essas linhas, preciso fazer todas elas em parágrafo, <p class="mb-40px"></p>As 2 primeiras linhas, não tem tags html, mas terminando com tag inapropriada. E a terceira linha também tem a mesma tag inapropriada no final, mas tinha a tag certa no início.

Vă pare rău pentru ce aţi făcut?”<br />
”Can you love me?”<br />
<p class="mb-40px">Să ne imaginăm nişte răspunsuri ale agresorului.<br />

Deve se tornar:

<p class="mb-40px">Vă pare rău pentru ce aţi făcut?”</p>
<p class="mb-40px">”Can you love me?”</p>
<p class="mb-40px">Să ne imaginăm nişte răspunsuri ale agresorului.</p>

Minhas duas regex são quase boas, mas duplica a primeira tag na terceira linha

ACHAR:^(.*)(<br />)$

SUBSTITUIR POR:<p class="mb-40px">\1</p>

OU

ACHAR:^(?!<p>)(.+?)(<br />)$

SUBSTITUIR POR:<p class="mb-40px">\1<\p>

regex notepad++
  • 1 respostas
  • 573 Views
Martin Hope
Just Me
Asked: 2022-04-05 05:55:21 +0800 CST

Regex: Excluir todas as palavras/strings nas linhas, exceto tags html

  • 4

Eu quero excluir todas as linhas com palavras, exceto tags html:

             <p class="bandy">Cars and jupiter</p>
            Comentezi folosind contul tău WordPress pentru a nu induce in eroare.
            
        </p>
                <p class="mb-40px">I love you</p>
            
    Seems to be a happy day with you next to me.
            
                </li>
<p class="simony">Select original books</p>

         bunica isi face cumparaturile la magazin.

RESULTADO

             <p class="bandy">Cars and jupiter</p>
            
            
        </p>
                <p class="mb-40px">I love you</p>
            
    
            
                </li>
<p class="simony">Select original books</p>
         
            

Meu regex não é muito bom:

ACHAR:.*^(?!<p class=).*

SUBSTITUIR POR:LEAVE EMPTY

regex notepad++
  • 3 respostas
  • 871 Views
Martin Hope
Just Me
Asked: 2022-04-04 12:25:08 +0800 CST

Regex: Encontre todas as tags html que contêm algumas outras tags html específicas

  • 4

Eu tenho algumas tags html começando <p class="mb-40px">e terminando com </p>A primeira tag tem algumas outras tags como </li> </ul> </div>e spacese \ncomo você pode ver.

<p class="mb-40px"></g></svg>               </a>
            </li>
             
        </ul>

    </div>
    </p>

    <p class="mb-40px">Foarte frumos lucru</p>
<p class="mb-40px">I love cars</p>

Eu quero encontrar e excluir todas as tags html, como a primeira que contém</li> </ul> </div>

A Saída deve ser:

    <p class="mb-40px">Foarte frumos lucru</p>
<p class="mb-40px">I love cars</p>

Minha solução não é boa:

ACHAR:(?=<p class="mb-40px">)[\s\S]*?</li></div>|</ul>[\s\S]*?</p>

SUBSTITUIR POR:LEAVE EMPTY

regex notepad++
  • 3 respostas
  • 1499 Views
Martin Hope
Just Me
Asked: 2022-04-04 04:34:05 +0800 CST

Regex: Como excluir uma tag html de outro parágrafo de tag html

  • 4

Tenho este parágrafo:

<p class="dobe">Intră pe site-ul magazinului comandă un xerox 3D (ceea ce puteţi face şi voi intrând pe site-ul </a>  sau la numărul de telefon. Dupa ce primi xerox-ul se multiplică de atâtea ori câte oraşe există pe lume. Îşi instrui copiile să ştie unde şi cum să aşeze ouăle.</p>

Eu quero apenas excluir isso </a>seguido por um espaço

Minha regex não está boa, pois é deletada a linha inteira, depois </a>não só</a>

ACHAR:</a>.+\w+

SUBSTITUIR POR:LEAVE EMPTY

Eu também tento este regex, mas ele exclui minha palavra sauao lado dele:

ACHAR:</a>([\s\S]*?)\w+

SUBSTITUIR POR:LEAVE EMPTY

regex notepad++
  • 2 respostas
  • 31 Views
Martin Hope
Just Me
Asked: 2022-04-03 11:30:26 +0800 CST

Regex: Selecione/Encontre todas as tags html que contenham apenas 4 palavras

  • 6

Eu tenho essas 2 tags html. Eu quero encontrar todas as tags html que contenham apenas 4 palavras (apenas a primeira linha no meu exemplo)

<p class="mb-40px">My name is prince</p>

<p class="mb-40px">Soul Travel is a spiritual practice that enables you to explore</p>

Eu tento isso, mas não muito bom:

ACHAR:(<p class="mb-40px">)(.*?)(?:\W*+\w++){1,4}(.*?)</p>

regex notepad++
  • 2 respostas
  • 279 Views
Martin Hope
Just Me
Asked: 2022-04-03 06:11:13 +0800 CST

Regex: Mude para minúsculas todas as palavras que possuem letras maiúsculas da tag html do título (exceto a primeira letra)

  • 4

Eu quero usar regex para mudar para palavras minúsculas que têm letras maiúsculas

<title>THE CHILDREN are at home.</title>

TORNAR-SE

<title>The children are at home.</title>

Então, eu fiz um script Python que faz o trabalho:

page_title = 'THE CHILDREN are at home.'
title_words = page_title.split(' ')

new_title_words = list()
for w in title_words:
    if w.isupper():
        new_title_words.append(w.lower().capitalize())
    else:
        new_title_words.append(w)

page_title = " ".join(new_title_words)
print(page_title)

Mas eu quero usar uma fórmula regex para notepad++, em vez de Python. Alguém pode me ajudar?

regex notepad++
  • 1 respostas
  • 1710 Views
Martin Hope
Just Me
Asked: 2022-03-26 13:06:57 +0800 CST

Regex: Encontre a letra (diacríticos) î no meio das palavras, mas não a letra î no início ou no final das palavras

  • 5

Devo encontrar a letra (diacríticos) îno meio das palavras, mas não a letra îno início ou no final das palavras.

Por exemplo:

1.stăpînii

2.înstăpanit

3.coborî

4.înfornît

Portanto, o regex deve encontrar a letra îapenas de palavras como a primeira: stăpînii.

As palavras 2 e 3 têm a letra îno início ou no final. Portanto, esses devem ser ignorados da descoberta.

O caso 4 é complicado. Começa com îe também tem um îno meio. Então, apenas o segundo îdeve ser encontrado por regex.

FINAL: Regex deve encontrar a letra îda primeira palavra stăpîniie também deve encontrar a segunda îda última palavraînfornît

regex notepad++
  • 3 respostas
  • 176 Views
Martin Hope
Just Me
Asked: 2022-03-26 11:49:01 +0800 CST

Regex: Selecione todas as palavras que não começam com a letra "p"

  • 6

Devo usar regex para selecionar todas as palavras que não começam com a letra "p". Por exemplo:

book, laptop, promise

Portanto, a fórmula regex deve selecionar apenasbook, laptop

Minha fórmula não funciona, não sei porque:

ENCONTRAR: \b(?!p)\w+\b OU \b(?!p){1}\w+\b OU \b(?![p])\w+\b

Minhas fórmulas selecionam também algumas letras simples, mas não apenas palavras\w+

regex notepad++
  • 2 respostas
  • 1114 Views
Martin Hope
Just Me
Asked: 2022-03-18 13:07:02 +0800 CST

REGEX: Encontre as tags html que contêm um operador, mas que não contêm outro operador

  • 5
1. <p class="mb-40px">My nick name is Prince and <a href="https://mywebsite.com/bla.html" class="color-gege" target="_new">my real name</a> is beyond magic.</p>
    
2. <p class="mb-40px">I love my home s< because I stay with my lovely cat.</p>

3. <p class="mb-40px">Because of this book t< I cannot sleep well.</p>

Eu quero encontrar apenas as linhas que possuem o operador < incluído na tag html <p class="mb-40px"> </p>, exceto aquelas linhas que possuem

No meu exemplo acima, a saída deve ser a linha 2 (que tem s< ) e a linha 3 (que tem t< )

Então, eu uso uma velha fórmula genérica:(REGION-START)+(.)+\K(FIND REGEX)(?s:(?=.*(REGION-FINAL)))

No meu caso ENCONTRE:(<p class="mb-40px">)+(.)+\K(\w<)(?s:(?=.*(</p>)))

O problema é que meu regex encontra também o e</a>da primeira linha. E eu não quero encontrar as tags com</a>

regex notepad++
  • 2 respostas
  • 213 Views
Martin Hope
Just Me
Asked: 2022-03-10 01:33:00 +0800 CST

Regex: encontre os links que destacam apenas uma palavra

  • 5

Tenho esses 2 links que destacam uma palavra game, e o segundo as palavras,acapulco heat

  1. <a href="https://mywebsite.com/page-one.html" class="color-bebe" target="_new">game</a>

  2. <a href="https://mywebsite.com/page-one.html" class="color-bebe" target="_new">acapulco heat</a>

Eu quero usar regex para encontrar aqueles links que destacam apenas uma palavra, como na linha 1.

A saída deve ser:

<a href="https://mywebsite.com/page-one.html" class="color-bebe" target="_new">game</a>

ou simples:

game

regex notepad++
  • 2 respostas
  • 198 Views

Sidebar

Stats

  • Perguntas 205573
  • respostas 270741
  • best respostas 135370
  • utilizador 68524
  • Highest score
  • respostas
  • Marko Smith

    Como posso reduzir o consumo do processo `vmmem`?

    • 11 respostas
  • Marko Smith

    Baixar vídeo do Microsoft Stream

    • 4 respostas
  • Marko Smith

    O Google Chrome DevTools falhou ao analisar o SourceMap: chrome-extension

    • 6 respostas
  • Marko Smith

    O visualizador de fotos do Windows não pode ser executado porque não há memória suficiente?

    • 5 respostas
  • Marko Smith

    Como faço para ativar o WindowsXP agora que o suporte acabou?

    • 6 respostas
  • Marko Smith

    Área de trabalho remota congelando intermitentemente

    • 7 respostas
  • Marko Smith

    O que significa ter uma máscara de sub-rede /32?

    • 6 respostas
  • Marko Smith

    Ponteiro do mouse movendo-se nas teclas de seta pressionadas no Windows?

    • 1 respostas
  • Marko Smith

    O VirtualBox falha ao iniciar com VERR_NEM_VM_CREATE_FAILED

    • 8 respostas
  • Marko Smith

    Os aplicativos não aparecem nas configurações de privacidade da câmera e do microfone no MacBook

    • 5 respostas
  • Martin Hope
    Vickel O Firefox não permite mais colar no WhatsApp web? 2023-08-18 05:04:35 +0800 CST
  • Martin Hope
    Saaru Lindestøkke Por que os arquivos tar.xz são 15x menores ao usar a biblioteca tar do Python em comparação com o tar do macOS? 2021-03-14 09:37:48 +0800 CST
  • Martin Hope
    CiaranWelsh Como posso reduzir o consumo do processo `vmmem`? 2020-06-10 02:06:58 +0800 CST
  • Martin Hope
    Jim Pesquisa do Windows 10 não está carregando, mostrando janela em branco 2020-02-06 03:28:26 +0800 CST
  • Martin Hope
    andre_ss6 Área de trabalho remota congelando intermitentemente 2019-09-11 12:56:40 +0800 CST
  • Martin Hope
    Riley Carney Por que colocar um ponto após o URL remove as informações de login? 2019-08-06 10:59:24 +0800 CST
  • Martin Hope
    zdimension Ponteiro do mouse movendo-se nas teclas de seta pressionadas no Windows? 2019-08-04 06:39:57 +0800 CST
  • Martin Hope
    jonsca Todos os meus complementos do Firefox foram desativados repentinamente, como posso reativá-los? 2019-05-04 17:58:52 +0800 CST
  • Martin Hope
    MCK É possível criar um código QR usando texto? 2019-04-02 06:32:14 +0800 CST
  • Martin Hope
    SoniEx2 Altere o nome da ramificação padrão do git init 2019-04-01 06:16:56 +0800 CST

Hot tag

windows-10 linux windows microsoft-excel networking ubuntu worksheet-function bash command-line hard-drive

Explore

  • Início
  • Perguntas
    • Recentes
    • Highest score
  • tag
  • help

Footer

AskOverflow.Dev

About Us

  • About Us
  • Contact Us

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve