Posts by atilarampazo • 336 points
2 posts
-
3
votes1
answer303
viewsA: How to change the Github remote repository?
Open Terminal and go to the project folder. Change the current working directory for your local project. List your existing remotes to get the name of the remote you want to change. $ git remote -v…
githubanswered atilarampazo 336 -
19
votes8
answers49747
viewsA: How do I remove accents in a string?
There is this method I use to remove accentuation: public static string RemoverAcentos(string texto){ string s = texto.Normalize(NormalizationForm.FormD); StringBuilder sb = new StringBuilder(); for…