9xclipboard_ utf-8 text are not displayed c/nostupidquestions · by jindam_vani@lemmy.world · 2y · 1 comments
15mastodon instance which does not send any emails c/nostupidquestions · by jindam_vani@lemmy.world · 2y · 7 comments
10luakit_ how do you save and use login credentials c/linux · by jindam_vani@lemmy.world · 2y · 0 comments
1rmail_ how_ download emails for more than one smtp email account c/linux · by jindam_vani@lemmy.world · 2y · 0 comments
16how configure w3m to render wikipedia page with frames on termux c/linux · by jindam_vani@lemmy.world · 2y · 2 comments
1clone repo and update it occassionally without username and password c/linux · by jindam_vani@lemmy.world · 2y · 10 comments
17noob guide_ termux gnu rmail pop3 multiple email servers c/linux · by jindam_vani@lemmy.world · 2y · 1 comments
17verification loop, unable to login, on web browsers available on fdroid_ videos c/privacy · by jindam_vani@lemmy.world · 3y · 3 comments
1verification loop, unable to login, on web browsers available on fdroid_ videos c/androidapps · by jindam_vani@lemmy.world · 3y · 0 comments
21installation and configuration of tigervnc on opensuse tumbleweed c/linux · by jindam_vani@lemmy.world · 3y · 2 comments
6git: how, advantages & disadvantages of cloning "master" only, remove locally c/linux · by jindam_vani@lemmy.world · 3y · 4 comments
2is 8gb single-board computer enough to compile firefox, inkscape, libreoffice, etc.. on linux c/linuxquestions · by jindam_vani@lemmy.world · 3y · 3 comments
on mastodon instance which does not send any emails · c/nostupidquestions · 1 pts · 2y interesting idea ;) perhaps mastodon is not for me Account creation without e-mail address (like on jabber instances)_ https://github.com/mastodon/mastodon/issues/3484
on noob guide_ termux gnu rmail pop3 multiple email servers · c/linux · 1 pts · 2ythis code is for one [ my ] email id only replace my email id, smtp, etc.. code is available also @_ https://lists.gnu.org/archive/html/help-gnu-emacs/2023-09/msg00142.html ~ /.emacs ;; pop3 (require 'smtpmail) (require 'rmail) (setq user-mail-address "jindam@list.ru") (setq user-full-name "జిందం వాఐి") (setq smtpmail-smtp-user "jindam@list.ru" smtpmail-smtp-server "smtp.mail.ru" smtpmail-smtp-service 465 smtpmail-stream-type 'ssl) (setq rmail-preserve-inbox 1 ; Don't delete mail from server rmail-mail-new-frame 1 ; Compose in a full frame rmail-delete-after-output 1 ; Delete original mail after copying rmail-mime-prefer-html nil ; Prefer plaintext when possible rmail-file-name "~/mail/inbox" ; The path to our inbox file rmail-secondary-file-directory "~/mail" ; The path to our other mbox files message-default-headers "Fcc: ~/mail/sent") ; Copy sent mail to the "sent" file ;; Debug (setq smtpmail-debug-info t) (setq smtpmail-debug-verb t) ;; html (setq shr-use-fonts nil ; Don't load fancy fonts shr-indentation 2 ; A left-margin of 2 columns shr-use-colors nil ; Don't load special colors shr-width 32 ; Fix width to 70 columns shr-bullet "• ") ; A bullet character for <li> elements ;; tls (setq rmail-movemail-flags "--tls") ;; Use Mail mode to compose messages (default) (setq mail-user-agent 'sendmail-user-agent) ;; If you're using rmail (setq read-mail-command 'rmail) ;;(setq rmail-primary-inbox-list ;; (cons (concat "pop3://" ;; "jindam@list.ru" ;; "@pop.mail.ru") nil)) (setq ;; The mail URL, specifying a remote mail account ;; (Omit this to read from /var/mail/user) rmail-primary-inbox-list '("pops://jindam@list.ru@pop.mail.ru")) ```</li>
on how configure w3m to render wikipedia page with frames on termux · c/linux · 1 pts · 2y@yum13241@lemm.ee w3m doesn’t support JavaScript thanks for heads up
on clone repo and update it occassionally without username and password · c/linux · 1 pts · 2y@glad_cat@lemmy.sdf.org Don’t push. yes, removing push code resolved the issue
on clone repo and update it occassionally without username and password · c/linux · 1 pts · 2y@Chais@sh.itjust.works If I understand OP’s explanation correctly, they’re simply trying to make a, possibly selfhosted, copy of a GitHub repo. yes, you are correct in sense. all i am trying to do is keep a copy of upstream repo. similar to mirroring repo. i have to remove git push origin master i will again check after few days whether the command is correct
on git: how, advantages & disadvantages of cloning "master" only, remove locally · c/linux · 1 pts · 3y@shugzaurus When you clone a repo only one branch is pulled from the remote, main by default No. I havent read book recommended by @senkora@lemmy.zip, but github cheatsheet $ git clone [url] says all branches https://training.github.com/downloads/github-git-cheat-sheet
on git: how, advantages & disadvantages of cloning "master" only, remove locally · c/linux · 1 pts · 3y
on is 8gb single-board computer enough to compile firefox, inkscape, libreoffice, etc.. on linux · c/linuxquestions · 1 pts · 3y@possiblylinux127@lemmy.world Why do you need to use ARM I am expecting devices will shrink in size, so, processor size also. Couldn’t you cross compile on x86_64? It was never on my agenda. primary purpose is to compile and use packages everyday. there might be surprises. who knows? Anyway to answer your question yes you can compile software on arm boards. good news..... The bigger question is how long do you want to wait. maximum 4 hours. If your looking for raw speed I would get either an arm server or a bunch of single board computers. Both of those will require good cooling. arm servers are available? excellent. I like pine64 as there hardware is much more hacker friendly than the raspberry pi. https://www.pine64.org/ i dont do coding, perhaps will try to copy paste, if i really want some feature or overcome limitations? They even have a board who’s purpose is to take other boards. https://pine64.com/product-category/clusterboard/ i will look into it. Regards, jindam
this code is for one [ my ] email id only
replace my email id, smtp, etc..
code is available also @_ https://lists.gnu.org/archive/html/help-gnu-emacs/2023-09/msg00142.html
~ /.emacs
@yum13241@lemm.ee
thanks for heads up
@glad_cat@lemmy.sdf.org
yes, removing push code resolved the issue
@Chais@sh.itjust.works
git push origin master@shugzaurus
No. I havent read book recommended by @senkora@lemmy.zip, but github cheatsheet $ git clone [url] says all branches https://training.github.com/downloads/github-git-cheat-sheet
@possiblylinux127@lemmy.world
I am expecting devices will shrink in size, so, processor size also.
It was never on my agenda. primary purpose is to compile and use packages everyday. there might be surprises. who knows?
good news.....
maximum 4 hours.
arm servers are available? excellent.
i dont do coding, perhaps will try to copy paste, if i really want some feature or overcome limitations?
i will look into it.
Regards, jindam