Posts by Valmir • 631 points
12 posts
-
5
votes1
answer168
viewsQ: Is it normal for APK made in Xamarin Forms, even empty, to be 60mb?
I have tried turning on the Linker, and be the recommended procedures. I wondered if it is normal an apk made using Xamarin.Forms start from 60mb. And if not, what to do to reduce the size.
-
3
votes1
answer164
viewsA: How to change runtime driver letter in Delphi
Why instead of using the absolute path (e:\app\base\arquivo.mdb), you do not use relative path to access your bank (base\arquivo.mdb)? That would solve your problem. If even so you still want to…
-
0
votes2
answers501
viewsA: What is the way to configure VI to autocomplete and format the files in a standardized way according to each language?
I recommend using the http://vim-bootstrap.com/ It’s a real hand on the wheel when it comes to getting started. To auto complete, I recommend YCM (Youcompleteme)…
-
0
votes6
answers14692
viewsA: How to create a Git server on the internal network?
Unlike solutions like cvs and svn, Git is decentralized. You don’t need to have a fixed server. You can simply share a folder on the network and do push there. You can also put an ssh server on your…
-
1
votes2
answers1011
viewsA: How to open a report file in RDF format?
RDF-Gravity Can be used to open this type of file.
-
0
votes5
answers6427
viewsQ: How do I list the files in a directory and subdirectories that contain specific text on Linux?
How to list all files in a directory and subdirectories that contain a specific text and together the corresponding line in which the text appears, under Linux?
-
5
votes5
answers6427
viewsA: How do I list the files in a directory and subdirectories that contain specific text on Linux?
A tool to do this is the command grep. The syntax is grep -rin "expressao_procurada" An example of use would be looking for the definition of a function called gerar_reportario in several Python…
-
1
votes4
answers1969
viewsA: How to save Ctrl+S to Vim?
I would use :inoremap <c-s> <c-o>:update<CR><CR>
-
4
votes2
answers246
viewsQ: Switch TAB indentation to spaces in Vim
I have a project where some files are indented with tab and others with 4 spaces. Is there any way in Vim to reindentate all files for 4 spaces?
-
3
votes2
answers246
viewsA: Switch TAB indentation to spaces in Vim
One way is to use the :set expandtab to define the number of spaces it is possible to use :set tabstop=4 then use the command :retab to convert the file.…
-
8
votes3
answers15165
viewsQ: How to subtract two dates using Python?
How do I know the difference in days between two dates using Python? For example; How to know how many days there are between 22/11/2013 and 25/03/2014, considering a possible leap year.…
-
20
votes4
answers8186
viewsQ: How to schedule a recurring task on linux?
What command can I use to schedule a recurring task on linux? I would also like to send the return of the command by email automatically. What is the most suitable tool?