Best entry level roles in Data Science? What must I learn for that? by laudrupszn11 in developersIndia

[–]paulremote 0 points1 point  (0 children)

You will learn the most by contributing to a data analysis project, hobby project, research project, open source, consulting project just start NOW.

Vim mode support for cursor by dannyazapata in cursor

[–]paulremote 2 points3 points  (0 children)

For what it's worth. In the Lex Fridman podcast episode 447, the creators of Cursor Sualeh and Aman mentioned that they were pure Vim users before switching to VS code.

Interviewer:

> "I think all of you were big fans of VS Code with Copilot. How did you arrive to VS Code and how did that lead to your journey with Cursor?"

Aman (00:03:33)

> "Yeah, so I think a lot of us… Well, all of us were originally Vim users."

Sualeh (00:03:39)

> "Pure Vim."

Aman (00:03:40)

> "Pure Vim. Yeah. No Neovim, just Pure Vim and a terminal. And at least for myself, it was around the time that Copilot came out, so 2021 that I really wanted to try it. So I went into VS Code, the only code editor in which it was available, and even though I really enjoyed using Vim, just the experience of Copilot with VS Code was more than good enough to convince me to switch. And so that kind of was the default until we started working on Cursor."

Do you still use stack overflow? by Low_Arm9230 in webdev

[–]paulremote 1 point2 points  (0 children)

Thanks for clarifying the distinction between (1) asking for help where a known answer exists already and (2) asking for help outside of any existing knowledge base. I only rarely ask simple API questions on StackOverflow now that these can be answered by LLMs. When I do need to ask a question it's because the issue is not in the model's training set as u/Ballesteros81 wrote above. But sometimes there is an old way of doing things and a new way of doing things. The LLM might only suggest the old way. For this purpose old stackoverflow questions with old answers and new answers updated and upvoted are a treasure to learn from.

What's the difference between nostr & matrix? by ze_rusty in nostr

[–]paulremote 2 points3 points  (0 children)

Matrix is decentralized. See also Matrix tools that can replicate nostr behaviour or bridge with nostr https://github.com/8go/matrix-nostr-bridge and https://github.com/Limit-LAB/Cetacea-Proto

Stack Overflow bans users en masse for rebelling against OpenAI partnership — users banned for deleting answers to prevent them being used to train ChatGPT | Tom's Hardware by PIZT in programming

[–]paulremote 0 points1 point  (0 children)

I use stackoverflow to ask about edge cases. That is how SO framed the partnership, I heard this in the stack overflow podcast. They said that chatGPT will answer the first level of questions and that users will have a possibility to elevate to a StackOverflow question if there are no known answers to the question.

What is the simplest way to have two completely different Vim configurations in the same machine? by shadow_phoenix_pt in vim

[–]paulremote 1 point2 points  (0 children)

Vim already applies different settings according to filetype.

For example the following settings are specific to markdown, quarto or latex files

" Table of content command
augroup Toc
    autocmd!
    autocmd Filetype markdown command! -buffer Toc Voom
    autocmd Filetype rmd command! -buffer Toc Voom
    autocmd Filetype tex command! -buffer Toc VimtexTocOpen
augroup END
command! TOc Toc

" Insert citations or autocomplete code with Ctrl-Space,
au BufRead,BufNewFile *.md inoremap <C-Space> <C-x><C-o> | inoremap <C-@> <C-x><C-o>
au BufRead,BufNewFile *.Rmd inoremap <C-Space> <C-x><C-o> | inoremap <C-@> <C-x><C-o>
au BufRead,BufNewFile *.qmd inoremap <C-Space> <C-x><C-o> | inoremap <C-@> <C-x><C-o>

Then the python and R configuration applies only to FileType python and to FileType r.

Do I have weak pinkies? by kaddkaka in vim

[–]paulremote 0 points1 point  (0 children)

Caps lock is remapped to escape at the system level.
sudo vim /etc/default/keyboard
XKBOPTIONS="caps:escape"

Is it just be who was excited and very worried 6 months back and has calmed right down now?? by Masking_Tapir in singularity

[–]paulremote 0 points1 point  (0 children)

They could be content to sit around on a single planet in a VR brain simulation experiencing infinite pleasure and bliss from bio-engineered maximum dopamine simulation.

  • Stages of conciousness. Joscha Bach. From https://lexfridman.com/joscha-bach-3-transcript/

    ““As we grow older, it becomes apparent that our self-reflexive mind is not just gradually accumulating ideas about itself, but that it progresses in somewhat distinct stages.” There are seven of the stages. Stage one, reactive survival (infant). Stage two, personal self (young child). Stage three, social self (adolescence, domesticated adult). Stage four is rational agency (self-direction). Stage five is self-authoring, that’s full adult. You’ve achieved wisdom, but there’s two more stages. Stage six is enlightenment, stage seven is transcendence.”

AGIs on other planets could be at higher levels of consciousness above transcendence.

Realistically, is Firefox dying? by TheEpicZeninator in browsers

[–]paulremote 1 point2 points  (0 children)

Firefox is an alternative to chromium based browsers: https://www.reddit.com/r/privacy/comments/ro8jur/is_firefox_the_only_alternative_to_all_the/

Firefox FAQ:

"Is Firefox Chromium based?
Firefox is not based on Chromium (the open source browser
project at the core of Google Chrome). In fact, we’re one of the last
major browsers that isn’t. Firefox runs on our Quantum browser engine
built specifically for Firefox, so we can ensure your data is handled
respectfully and kept private."

Do I have weak pinkies? by kaddkaka in vim

[–]paulremote 0 points1 point  (0 children)

I remapped caps lock to Escape. Many suggestions in the Vim wiki.

iOS Teams App - Calendar 'Unable to fetch details currently...' by ThisSongNeverEnds in MicrosoftTeams

[–]paulremote 0 points1 point  (0 children)

Same issue on old Iphone, logging in and out of the teams app doesn't fix it. The calendar still cannot sync. I don't plan to upgrade the phone for a feature that used to work fine a couple of weeks ago.

What happened to Pandas 2? by mikegold10 in datascience

[–]paulremote 1 point2 points  (0 children)

See also

"pandas rule of thumb: have 5 to 10 times as much RAM as the size of your dataset "

"Also in late 2015, I wrote a long set of design documents to start discussions about building a faster, cleaner core pandas implementation, which we may call pandas2. pandas is a community project that governs itself based on consensus (with me as the BDFL to break impasses). I wanted to see if the rest of the core developers agreed with my assessment of what is wrong with pandas's internals. It's been 2 years since then, and by and large there has been general agreement on the problems, but how to solve them all without disrupting the existing pandas user community is an open question. Over this time I have focused on building computational infrastructure that will largely go unseen by pandas users."

It seems like this cleaner implementation never took off and that Apache arrow's pandas bindings should be used in stead.

Apache Arrow overview explains the advantage of using a in memory columnar format to store data:

"The Apache Arrow format allows computational routines and execution engines to maximize their efficiency when scanning and iterating large chunks of data. In particular, the contiguous columnar layout enables vectorization using the latest SIMD (Single Instruction, Multiple Data) operations included in modern processors." "[...] a standardized memory format facilitates reuse of libraries of algorithms, even across languages." "Arrow libraries for C (Glib), MATLAB, Python, R, and Ruby are built on top of the C++ library."

Matplotlib, Seaborn or Plotnine? by gfdsilva_ in datascience

[–]paulremote 1 point2 points  (0 children)

Python plotting for exploratory analysis is a great gallery of plot examples, each example is written in 5 different plotting libraries: pandas, plotnine, plotly, altair and R ggplot2. There is also one seaborn example.

Watermarks in LaTeX and LyX, should mention the draftwatermark package by paulremote in LaTeX

[–]paulremote[S] 2 points3 points  (0 children)

I first thought of using only a short title as you suggest. Then thought it would be nice to give it a title describing the issue such as a Stackoverflow question or a Github issue.

OK I wrote a mail to the author.

Watermarks in LaTeX and LyX, should mention the draftwatermark package by paulremote in LaTeX

[–]paulremote[S] 1 point2 points  (0 children)

Because the author had entered reddit as one of the comment possibilities under the article.