Hacker Newsnew | past | comments | ask | show | jobs | submit | more methyl's commentslogin

How do you force gemini or any other model to actually login to the bank system? Anything I try, I end up with "I can't do that as it's sensitive"


have you tried it with Index?


For pyramids, I think modern thinkers underestimate power of a lot of people working together in harmony for long time.


It's like the theory of "they must have been slaves driven to work by their nobles!" When I believe it turned out they were just blue-collar Ancient Egyptian workers with families and paychecks who thought they'd be doing a good thing by honoring the Pharoah.


They weren’t subhuman slave class. But it’s far from clear they had economic agency.


Although the laborers working on pyramids and tombs were initially mostly corvee labor, they did evolve into a more specialized and privileged class of artisans over the (very long) course of Egyptian history. The first recorded labor strike in history occurred in a village of such artisans over lack of pay.

https://en.wikipedia.org/wiki/Deir_el-Medina_strikes


Someone I knew once questioned, after seeing it in person, how ancient Egyptian and Inca builders could have fit stones so well together and polished them so smoothly without advanced technology. I essentially said to him, “If I gave you two rocks and three weeks of nothing else to do, you’d have the faces of those rocks even smoother than those others”.


I’d honestly prefer the first option


120hz display


> But why is this classified as a deficiency and a disorder

I think it’s because it’s outside of your control. Ideally you would be able to choose which impulses you want to respond to, and with ADHD that’s extremely hard.


military


I’ve had similar feeling when realizing that the bells that we sometimes hear in old cities of Europe are exact same bells producing exact same sound as 1000 years ago


Pancreatic cancer doesn’t have good prognosis in the first place, no matter what you eat or don’t eat.


But his was actually one of the most treatable forms and he could have potentially had many many years added to his life had he initially listened to his doctors.


Yes I was downvoted last time I posted this, but: Don't try to be your own lawyer, and don't try to be your own doctor.


This is the tail wagging the dog.

Jobs' fruitarianism meant he didn't eat eggs, meat, dairy, or other sources of selenium. Fruit doesn't contain selenium. One of Selenium deficiency's side effects, well established in the literature: pancreatic cancer.


Charging electric vehicles.


This is truly an infamous Dropbox comment moment https://news.ycombinator.com/item?id=9224


Is it though? That comment recommended a hodge-podge of open source tools to approximate what Dropbox offered in as a complete solution. GNU Emacs literally has a several decades head start on any new niche electronic writing tools and is, in my estimation, a towering achievement in this space.


Warning: this comment may offend some in the Emacs community.

> GNU Emacs literally has a several decades head start on any new niche electronic writing tools and is, in my estimation, a towering achievement in this space.

I love Emacs but I had to spend more time that I would like to admit making changes to my init file in the first months of seriously using it. The 'average' user expects to be able to hit the ground running with reasonable defaults.

A large fraction of my (blasphemous) changes was of course overriding keyboard shortcuts to match the expectations that average users have of what keyboard shortcuts should do, in at least the last 40 years of software. I don't have the mental bandwidth or appetite to learn incantations.

So to me I see emacs as a tool no different from Notepad++/VS Code but a tool I can actually open the hood and mod to my needs/preferences that also happens to have a huge community that I can leverage with all the packages and minor modes.

However, neither of this is realistic or practical as a key turn solution for the 'average' user looking for a distraction free editor.


> A large fraction of my (blasphemous) changes was of course overriding keyboard shortcuts to match the expectations that average users have of what keyboard shortcuts should do, in at least the last 40 years of software.

You mean the same thing you can get by clicking the checkbox under OptionsCut/Paste with C-x/C-c/C-v (CUA Mode)? (And then, OptionsSave Options to… save your options.)

Some people really like to exaggerate the difficulty of Emacs, and claim that they spent ages modifying their .emacs files to do what is really the simplest of settings.


(bind-keys*

    ;; file operations

    ("C-o" . find-file)         ; open file

    ("C-s" . save-buffer)       ; save file

    ("C-S-s" . write-file)      ; save as

    ("M-Q" . kill-this-buffer)  ; close file

    ;; folder tree

    ("C-d" . neotree-toggle)  ; toggle hide/show folder tree

    ;; buffer content operations

    ("C-a" . mark-whole-buffer) ; select all

    ("C-f" . isearch-forward)   ; find in file and highlight

    ("C-S-f" . query-replace)   ; find and replace

    ("C-z" . undo-tree-undo)    ; undo

    ("C-S-z" . undo-tree-redo)  ; redo

    ("C-c" . kill-ring-save)    ; Copy

    ("C-x" . kill-region)       ; Cut

    ("C-v" . yank)              ; Paste

    ;; font size

    ("C-+" . text-scale-increase)

    ("C--" . text-scale-decrease)

    ;; Pane/buffer switching

    ("M-1" . other-window)      ; toggle

    ("M-2" . previous-buffer)   ; previous
 
    ("M-3" . next-buffer)       ; next 

    ("<M-down>" . split-window-vertically)

    ("<M-right>" . split-window-horizontally)

    ("<s-up>" . shrink-window)

    ("<s-down>" . enlarge-window)

    ("<s-left>" . shrink-window-horizontally)

    ("<s-right>" . enlarge-window-horizontally)

    ("M-q" . delete-window)     ; close window

    ;; launch term

    ("M-0" . term)

    ;; code folding

    ("M-e" . hs-show-block)

    ("M-E" . hs-hide-block)

    ("M-h" . hs-hide-all))
edit: Added extra line breaks otherwise the comment text seems to be treated as a single block of text.

Arguably some of these are not standard anything (just something I was happy with) but equally there is also a lot of normal stuff people are used to in several software applications for many decades now.


I would still recommend using CUA Mode over simply rebinding C-x, C-v and C-z. CUA Mode does a few more things than that, and is smarter about it: <https://www.gnu.org/software/emacs/manual/html_node/emacs/CU...>

Also, you can prefix code blocks by two extra spaces on each line:

  (bind-keys*
   ;; file operations
   ("C-o" . find-file)         ; open file
   ("C-s" . save-buffer)       ; save file
   ("C-S-s" . write-file)      ; save as
   ("M-Q" . kill-this-buffer)  ; close file
   ;; folder tree
   ("C-d" . neotree-toggle)  ; toggle hide/show folder tree
   ;; buffer content operations
   ("C-a" . mark-whole-buffer) ; select all
   ("C-f" . isearch-forward)   ; find in file and highlight
   ("C-S-f" . query-replace)   ; find and replace
   ("C-z" . undo-tree-undo)    ; undo
   ("C-S-z" . undo-tree-redo)  ; redo
   ("C-c" . kill-ring-save)    ; Copy
   ("C-x" . kill-region)       ; Cut
   ("C-v" . yank)              ; Paste
   ;; font size
   ("C-+" . text-scale-increase)
   ("C--" . text-scale-decrease)
   ;; Pane/buffer switching
   ("M-1" . other-window)      ; toggle
   ("M-2" . previous-buffer)   ; previous
   ("M-3" . next-buffer)       ; next 
   ("<M-down>" . split-window-vertically)
   ("<M-right>" . split-window-horizontally)
   ("<s-up>" . shrink-window)
   ("<s-down>" . enlarge-window)
   ("<s-left>" . shrink-window-horizontally)
   ("<s-right>" . enlarge-window-horizontally)
   ("M-q" . delete-window)     ; close window
   ;; launch term
   ("M-0" . term)
   ;; code folding
   ("M-e" . hs-show-block)
   ("M-E" . hs-hide-block)
   ("M-h" . hs-hide-all))


Consider the audience we are writing for, I believe many of us who read Hacker News have greater aspirations than that of the ‘average’ user.


But it's true. I've written a novella-length book in emacs org mode and using a simple keyboard shortcut ended up with a generated ready-to-upload-to-KDP PDF.

As far as writing tools are concerned, nothing else has come even close and that's with very minimal config tweaking.


I get this comment quite often tbf, but I enjoy the slight variations of configs people share :)


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: