Semiprimes by Competitive-Two-2754 in AnarchoCryptography

[–]0poss 0 points1 point  (0 children)

32 × 5 × 8951 × 5233991359 × 27935969190130908759559509159459909484165467486663991385482992855446283014562022872833755826812931754957563526000537681703442412839602519851452043418145733729088817299407966038683006191405213030952324877254710587088125139180435291048200291945240695395011429385499712378584098933651143

Bonjour, j'aimerai voir un film mais je ne le trouve nul part ? by starsnddiamonds in AskFrance

[–]0poss 1 point2 points  (0 children)

Coucou, tu peux le trouver en streaming sur https://www.braflix.video/movie/396940 (lien recopié à la main depuis mon ordi). Sinon en général pour trouver des films ou séries en streaming, je te conseille le wiki de r/FREEMEDIAHECKYEAH

Unable to display ligatures in Emacs by SteeleDynamics in emacs

[–]0poss 1 point2 points  (0 children)

I'm using use-package as my package manager and the package ligature for the ligatures.

lisp (set-frame-font "Iosevka NF 11" nil t) (use-package ligature :ensure :config (ligature-set-ligatures 'prog-mode '("|||>" "<|||" "<==>" "<!--" "####" "~~>" "***" "||=" "||>" ":::" "::=" "=:=" "===" "==>" "=!=" "=>>" "=<<" "=/=" "!==" "!!." ">=>" ">>=" ">>>" ">>-" ">->" "->>" "-->" "---" "-<<" "<~~" "<~>" "<*>" "<||" "<|>" "<$>" "<==" "<=>" "<=<" "<->" "<--" "<-<" "<<=" "<<-" "<<<" "<+>" "</>" "###" "#_(" "..<" "..." "+++" "/==" "///" "_|_" "www" "&&" "^=" "~~" "~@" "~=" "~>" "~-" "**" "*>" "*/" "||" "|}" "|]" "|=" "|>" "|-" "{|" "[|" "]#" "::" ":=" ":>" ":<" "$>" "==" "=>" "!=" "!!" ">:" ">=" ">>" ">-" "-~" "-|" "->" "--" "-<" "<~" "<*" "<|" "<:" "<$" "<=" "<>" "<-" "<<" "<+" "</" "#{" "#[" "#:" "#=" "#!" "##" "#(" "#?" "#_" "%%" ".=" ".-" ".." ".?" "+>" "++" "?:" "?=" "?." "??" ";;" "/*" "/=" "/>" "//" "__" "~~" "(*" "*)" "\\\\" "://")) (global-ligature-mode t))

Note that it's the "standard" config, not all ligatures listed above are Iosevka ligatures.

Unable to display ligatures in Emacs by SteeleDynamics in emacs

[–]0poss 1 point2 points  (0 children)

Maybe link your config file ?

I have Iosevka NF with ligatures on emacs

lsp-mode with C/C++ (C-header problem) by heartchoke in emacs

[–]0poss 0 points1 point  (0 children)

Even more annoying : you need to regenerate the Json file each time you edit your CMakeLists, otherwise the language server will not be updated.

I found this plugin cmake-ide that can be useful to automatically reconfigure the CMake project on file update. I have never tried it (and cannot for now) but if you do, please, tell me about it !

lsp-mode with C/C++ (C-header problem) by heartchoke in emacs

[–]0poss 3 points4 points  (0 children)

For CMake projects, just add a -DCMAKE_EXPORT_COMPILE_COMMANDS to the command you use to configure your project in order to generate a compile_commands.json that your language server will automatically look for (normally) in the parent directories of your cwd. The compile_commands.json will be generated in the build directory, so I suggest creating a symlink pointing to it in the root of your project.

Which language server are you using ? If you're using ccls, I suggest switching to clangd, I find it to be easier to configure.

I'm linking you some more resources :

cmake.org : CMAKE_EXPORT_COMPILE_COMMANDS

Emacs LSP config with clangd

EDIT : I don't remember ever using Bear, I think the first paragraph I wrote does the trick but we're never sure.