linux - How do you install an extension into the VS Code Server that's the remote end of Remote-SSH when there is no Internet connection? - Stack Overflow (https://cdn.sstatic.net/Sites/stackoverflow/Img/apple-touch-icon.png?v=c78bd457575a) (Stack Overflow) (https://stackoverflow.com/opensearch.xml) (https://stackoverflow.com/questions/64022855/how-do-you-install-an-extension-into-the-vs-code-server-thats-the-remote-end-of) (Feed for question 'How do you install an extension into the VS Code Server that's the remote end of Remote-SSH when there is no Internet connection?') (https://stackoverflow.com/feeds/question/64022855) (site logo) By clicking “Sign up”, you agree to our (https://stackoverflow.com/legal/terms-of-service/public) terms of service and acknowledge you have read our (https://stackoverflow.com/legal/privacy-policy) privacy policy . Sign up with Google Sign up with GitHub OR Email Password (8+ characters (at least 1 letter & 1 number)) Sign up Already have an account? (https://stackoverflow.com/users/login) Log in Skip to main content (https://stackoverflow.com/) Stack Overflow (https://stackoverflow.co/) About Products (https://stackoverflow.co/teams/) For Teams (Search…) (Click to show search) (https://stackoverflow.com/users/login?ssrc=head&returnurl=https%3a%2f%2fstackoverflow.com%2fquestions%2f64022855%2fhow-do-you-install-an-extension-into-the-vs-code-server-thats-the-remote-end-of) Log in (https://stackoverflow.com/users/signup?ssrc=head&returnurl=https%3a%2f%2fstackoverflow.com%2fquestions%2f64022855%2fhow-do-you-install-an-extension-into-the-vs-code-server-thats-the-remote-end-of) Sign up Let's set up your homepage Select a few topics you're interested in: python javascript c# reactjs java android html flutter c++ node.js typescript css r php angular next.js spring-boot machine-learning sql excel ios azure docker Or search from our full list: (Search) Next You’ll be prompted to create an account to view your personalized homepage. (https://stackoverflow.com/) Home (https://stackoverflow.com/questions) Questions (https://stackoverflow.ai/) AI Assist Labs (https://stackoverflow.com/tags) Tags (https://stackoverflow.com/beta/challenges) Challenges (https://chat.stackoverflow.com/rooms/259507/stack-overflow-lobby) Chat (https://stackoverflow.blog/contributed?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=so-blog&utm_content=experiment-articles) Articles (https://stackoverflow.com/users) Users (https://stackoverflow.com/jobs?source=so-left-nav) Jobs (https://stackoverflow.com/jobs/companies?so_medium=stackoverflow&so_source=SiteNav) Companies Collectives Communities for your favorite technologies. (https://stackoverflow.com/collectives-all) Explore all Collectives Teams Ask questions, find answers and collaborate at work with Stack Overflow for Teams. (https://stackoverflowteams.com/teams/create/free/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=side-bar&utm_content=explore-teams) Try Teams for free (https://stackoverflow.co/teams/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=side-bar&utm_content=explore-teams) Explore Teams (Illustration of upvote icon after it is clicked) Hang on, you can't upvote just yet. You'll need to complete a few actions and gain 15 reputation points before being able to upvote. Upvoting indicates when questions and answers are useful. (https://stackoverflow.com/help/whats-reputation) What's reputation and how do I get it? Instead, you can save this post to reference later. Save this post for later Not now (Illustration of upvote icon after it is clicked) Thanks for your vote! You now have 5 free votes weekly. Free votescount toward the total vote score does not give reputation to the author Continue to help good content that is interesting, well-researched, and useful, rise to the top! To gain full voting privileges, (https://stackoverflow.com/help/whats-reputation) earn reputation . Got it! Go to help center to learn more (https://cdn.sstatic.net/Sites/stackoverflow/Img/apple-touch-icon.png?v=c78bd457575a) (https://stackoverflow.com/questions/64022855/how-do-you-install-an-extension-into-the-vs-code-server-thats-the-remote-end-of) How do you install an extension into the VS Code Server that's the remote end of Remote-SSH when there is no Internet connection? (https://stackoverflow.com/questions/ask) Ask Question (2020-09-23 07:14:32Z) Asked 5 years ago Modified (https://stackoverflow.com/questions/64022855/how-do-you-install-an-extension-into-the-vs-code-server-thats-the-remote-end-of?lastactivity) (2024-03-12 18:26:28Z) 1 year, 7 months ago (Viewed 39,161 times) Viewed 39k times This question shows research effort; it is useful and clear 14 (This question does not show any research effort; it is unclear or not useful) Save this question. (https://stackoverflow.com/posts/64022855/timeline) Show activity on this post. I'm working in a network that has no direct internet connection. I have VS Code on my desktop PC and I use the "Remote - SSH" extension (version 0.55) to do development on a Linux VM. It works very well. From time to time I have need to install other Extensions into both the desktop VS Code (which is an easily accomplished using code --install-extension ) and also the Linux end of the "Remote - SSH" server. My question is "under these circumstances, how do I correctly install Extensions into the Linux server?" I will describe what I do, which partially works sometimes, but I have used this process to upgrade extensions and lost features (like coloring of output) so there must be something missing. I would like to know the missing step. Download the extension from an internet-connected computer. There is a "Download Extension" link on the Extension's page at (https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools) marketplace.visualstudio.com/vscode . Copy it (however you can) onto your Linux development host. Copy the VSIX file to ~/.vscode-server/data/CachedExtensionVSIXs/ and rename the file by getting rid of the ".vsix" extension. Sometimes the extension becomes installable at this stage. I'm not sure what the differences are between cases when this has worked and when it sometimes doesn't work. At least it's worth trying --- go to VS Code, connect to your remote host, look in the Extensions panel and if you can install it from there, good for you. If it didn't work, close the connection to the Remote Host. Assuming that the previous step failed, you will need to unzip the VSIX and copy it into place. The following code uses the cmake-tools extension as an example. cd /tmp mkdir cmaketools && cd cmaketools 7z x -tzip ~/.vscode-server/data/CachedExtensionVSIXs/ms-vscode.cmake-tools-1.4.2 cd ~/.vscode-server/extensions/ mv /tmp/cmaketools/extension ms-vscode.cmake-tools-1.4.2 cd ms-vscode.cmake-tools-1.4.2/ cp /tmp/cmaketools/extension.vsixmanifest .vsixmanifest (https://stackoverflow.com/questions/tagged/linux) (show questions tagged 'linux') linux (https://stackoverflow.com/questions/tagged/visual-studio-code) (show questions tagged 'visual-studio-code') visual-studio-code (https://stackoverflow.com/questions/tagged/vscode-remote) (show questions tagged 'vscode-remote') vscode-remote (https://stackoverflow.com/q/64022855) (Short permalink to this question) Share (https://stackoverflow.com/posts/64022855/edit) Improve this question Follow Follow this question to receive notifications (https://stackoverflow.com/posts/64022855/revisions) (show all edits to this post) edited (2020-09-23 08:17:54Z) Sep 23, 2020 at 8:17 (https://stackoverflow.com/users/2631715/gama11) (Gama11's user avatar) (https://stackoverflow.com/users/2631715/gama11) Gama11 (reputation score 34,548) 34.5k (9 gold badges) 9 9 gold badges (92 silver badges) 92 92 silver badges (107 bronze badges) 107 107 bronze badges asked (2020-09-23 07:14:32Z) Sep 23, 2020 at 7:14 (https://stackoverflow.com/users/5593703/peter-du) (Peter Du's user avatar) (https://stackoverflow.com/users/5593703/peter-du) Peter Du Peter Du (reputation score) 588 (1 gold badge) 1 1 gold badge (10 silver badges) 10 10 silver badges (20 bronze badges) 20 20 bronze badges 2 (number of 'useful comment' votes received) 1 download and upload the vsix file for the extension and use the Install from vsix command on the extension bar top menu rioV8 – (https://stackoverflow.com/users/9938317/riov8) (29,646 reputation) rioV8 2020-09-23 10:47:30 +00:00 Commented (2020-09-23 10:47:30Z, License: CC BY-SA 4.0) Sep 23, 2020 at 10:47 @rioV8 If you want, make this an answer and I will accept. You solved my problem. Peter Du – (https://stackoverflow.com/users/5593703/peter-du) (588 reputation) Peter Du 2020-09-23 13:16:43 +00:00 Commented (2020-09-23 13:16:43Z, License: CC BY-SA 4.0) Sep 23, 2020 at 13:16 (Use comments to ask for more information or suggest improvements. Avoid answering questions in comments.) Add a comment | (Expand to show all comments on this post) 3 Answers 3 Sorted by: (https://stackoverflow.com/questions/64022855/how-do-you-install-an-extension-into-the-vs-code-server-thats-the-remote-end-of?answertab=scoredesc#tab-top) Reset to default (scoredesc) Highest score (default) (trending) Trending (recent votes count more) (modifieddesc) Date modified (newest first) (createdasc) Date created (oldest first) This answer is useful 16 (This answer is not useful) Save this answer. (Loading when this answer was accepted…) (https://stackoverflow.com/posts/64029447/timeline) Show activity on this post. You can download the extension from the Marketplace and upload the extensionvsix file to the remote. In the remote VSC use the Install from VSIX... command on the Extension bar top menu. (https://stackoverflow.com/a/64029447) (Short permalink to this answer) Share (https://stackoverflow.com/posts/64029447/edit) Improve this answer Follow Follow this answer to receive notifications answered (2020-09-23 13:48:46Z) Sep 23, 2020 at 13:48 (https://stackoverflow.com/users/9938317/riov8) (rioV8's user avatar) (https://stackoverflow.com/users/9938317/riov8) rioV8 rioV8 (reputation score 29,646) 29.6k (4 gold badges) 4 4 gold badges (48 silver badges) 48 48 silver badges (67 bronze badges) 67 67 bronze badges Sign up to request clarification or add additional context in comments. 5 Comments Add a comment (https://stackoverflow.com/users/3753366/filaton) filaton (https://stackoverflow.com/users/3753366/filaton) filaton (2022-06-01T10:28:35.453Z) Over a year ago is there a way to do this from the command line ? 2022-06-01T10:28:35.453Z+00:00 2 Reply (https://stackoverflow.com/users/9938317/riov8) rioV8 (https://stackoverflow.com/users/9938317/riov8) rioV8 (2022-06-01T11:24:14.067Z) Over a year ago @filaton What does the doc page on command line say about this 2022-06-01T11:24:14.067Z+00:00 0 Reply (https://stackoverflow.com/users/3753366/filaton) filaton (https://stackoverflow.com/users/3753366/filaton) filaton (2022-06-02T13:10:19.83Z) Over a year ago not much, it doesn't mention anything about SSH ((https://code.visualstudio.com/docs/editor/command-line#_working-with-extensions) code.visualstudio.com/docs/editor/… ) 2022-06-02T13:10:19.83Z+00:00 0 Reply (https://stackoverflow.com/users/9938317/riov8) rioV8 (https://stackoverflow.com/users/9938317/riov8) rioV8 (2022-06-02T13:24:57.477Z) Over a year ago (Edited 1 time) @filaton Where do you expect the remote VSC to get the extension, you don't have internet, why should it mention SSH 2022-06-02T13:24:57.477Z+00:00 0 Reply (https://stackoverflow.com/users/3753366/filaton) filaton (https://stackoverflow.com/users/3753366/filaton) filaton (2022-06-03T14:54:14.437Z) Over a year ago sorry, in my use case, the remote has access to the internet. Basically I'm just looking for a way to reproduce the behavior of the "Install in SSH: " button that you have when you search for extensions in an SSH remote. 2022-06-03T14:54:14.437Z+00:00 0 Reply Add a comment This answer is useful 7 (This answer is not useful) Save this answer. (Loading when this answer was accepted…) (https://stackoverflow.com/posts/76409982/timeline) Show activity on this post. If you want to install it from the command line on the remote: get the name of the current server directory (easiest: connect to the remote workspace, then run ps -u $USER -o pid,ppid,user,pcpu,pmem,etime,args via the vscode terminal)This can get you, for example to/home/me/.codium-server/bin/8311b9c0ddd6ed7738146332e5a0629c76f17be3/bin/ execute the server runtime (in this case codium-server , often vscode-server ) from this directory with the --install-extension command (https://stackoverflow.com/a/76409982) (Short permalink to this answer) Share (https://stackoverflow.com/posts/76409982/edit) Improve this answer Follow Follow this answer to receive notifications answered (2023-06-05 21:02:18Z) Jun 5, 2023 at 21:02 (https://stackoverflow.com/users/5027456/simon-sobisch) (Simon Sobisch's user avatar) (https://stackoverflow.com/users/5027456/simon-sobisch) Simon Sobisch Simon Sobisch (reputation score) 7,573 (1 gold badge) 1 1 gold badge (21 silver badges) 21 21 silver badges (40 bronze badges) 40 40 bronze badges Comments Add a comment This answer is useful 2 (This answer is not useful) Save this answer. (Loading when this answer was accepted…) (https://stackoverflow.com/posts/78149303/timeline) Show activity on this post. If you want to automate this with bash, then the path is (change ): ~/.vscode-server/bin//bin/remote-cli/code so to install extension would be something like: ~/.vscode-server/bin//bin/remote-cli/code --install-extension (https://stackoverflow.com/a/78149303) (Short permalink to this answer) Share (https://stackoverflow.com/posts/78149303/edit) Improve this answer Follow Follow this answer to receive notifications answered (2024-03-12 18:26:28Z) Mar 12, 2024 at 18:26 (https://stackoverflow.com/users/7193418/amin-persia) (Amin Persia's user avatar) (https://stackoverflow.com/users/7193418/amin-persia) Amin Persia Amin Persia (reputation score) 415 (3 silver badges) 3 3 silver badges (19 bronze badges) 19 19 bronze badges 1 Comment Add a comment (https://stackoverflow.com/users/5027456/simon-sobisch) Simon Sobisch (https://stackoverflow.com/users/5027456/simon-sobisch) Simon Sobisch (2024-08-12T15:09:35.2Z) Over a year ago (Edited 1 time) How is that different to the answer I gave below - other than a fixed name for the files and folders with an additional "replacement-commit-id"? 2024-08-12T15:09:35.2Z+00:00 0 Reply Your Answer Draft saved Draft discarded Sign up or (https://stackoverflow.com/users/login?ssrc=question_page&returnurl=https%3a%2f%2fstackoverflow.com%2fquestions%2f64022855%2fhow-do-you-install-an-extension-into-the-vs-code-server-thats-the-remote-end-of%23new-answer) log in Sign up using Google Sign up using Email and Password Submit Post as a guest Name Email Required, but never shown Post as a guest Name () () Email Required, but never shown () () Post Your Answer Discard By clicking “Post Your Answer”, you agree to our (https://stackoverflow.com/legal/terms-of-service/public) terms of service and acknowledge you have read our (https://stackoverflow.com/legal/privacy-policy) privacy policy . Start asking to get answers Find the answer to your question by asking. (https://stackoverflow.com/questions/ask) Ask question Explore related questions (https://stackoverflow.com/questions/tagged/linux) (show questions tagged 'linux') linux (https://stackoverflow.com/questions/tagged/visual-studio-code) (show questions tagged 'visual-studio-code') visual-studio-code (https://stackoverflow.com/questions/tagged/vscode-remote) (show questions tagged 'vscode-remote') vscode-remote See similar questions with these tags. The Overflow Blog (https://stackoverflow.blog/2025/10/09/who-watches-the-watchers-llm-on-llm-evaluations/?cb=1) Who watches the watchers? LLM on LLM evaluations (https://stackoverflow.blog/2025/10/10/vite-is-like-the-united-nations-of-javascript/?cb=1) Vite is like the United Nations of JavaScript Featured on Meta (Meta Stack Exchange) (https://meta.stackexchange.com/questions/412987/please-welcome-v2blast-back-to-the-community-team?cb=1) Please welcome V2Blast back to the Community Team! (Meta Stack Exchange) (https://meta.stackexchange.com/questions/412992/a-first-look-stack-overflow-redesign?cb=1) A First Look: Stack Overflow Redesign (Meta Stack Overflow) (https://meta.stackoverflow.com/questions/421831/policy-generative-ai-e-g-chatgpt-is-banned?cb=1) Policy: Generative AI (e.g., ChatGPT) is banned (Meta Stack Overflow) (https://meta.stackoverflow.com/questions/435121/exploring-new-types-of-questions-on-stack-overflow?cb=1) Exploring new types of questions on Stack Overflow Community activity Last 1 hr Users online activity 7261 users online Number of questions asked 12 questions Number of questions that received an answer 8 answers Number of comments posted 48 comments Number of upvotes on posts 190 upvotes Popular tags Popular tags (https://stackoverflow.com/questions/tagged/flutter) flutter (https://stackoverflow.com/questions/tagged/javascript) javascript (https://stackoverflow.com/questions/tagged/python) python (https://stackoverflow.com/questions/tagged/c#) c# (https://stackoverflow.com/questions/tagged/linux) linux (https://stackoverflow.com/questions/tagged/git) git Related (https://stackoverflow.com/questions/37071388/how-can-i-install-visual-studio-code-extensions-offline?rq=3) (Question score (upvotes - downvotes)) 225 (https://stackoverflow.com/questions/37071388/how-can-i-install-visual-studio-code-extensions-offline?rq=3) How can I install Visual Studio Code extensions offline? (https://stackoverflow.com/questions/56073276/how-can-i-install-vs-code-server-manually-and-tell-vs-code-remote?rq=3) (Question score (upvotes - downvotes)) 35 (https://stackoverflow.com/questions/56073276/how-can-i-install-vs-code-server-manually-and-tell-vs-code-remote?rq=3) How can I install vs-code-server manually and tell vs-code-remote? (https://stackoverflow.com/questions/56197885/remote-vscode-extension-not-installing-on-ubuntu-18-04?rq=3) (Question score (upvotes - downvotes)) 3 (https://stackoverflow.com/questions/56197885/remote-vscode-extension-not-installing-on-ubuntu-18-04?rq=3) Remote VSCode extension not installing on Ubuntu 18.04 (https://stackoverflow.com/questions/58236172/visual-studio-code-how-to-run-extension-locally-on-my-laptop-when-connected-to?rq=3) (Question score (upvotes - downvotes)) 6 (https://stackoverflow.com/questions/58236172/visual-studio-code-how-to-run-extension-locally-on-my-laptop-when-connected-to?rq=3) visual-studio-code: how to run extension locally on my laptop when connected to another machine with Remote-SSH (https://stackoverflow.com/questions/61444894/how-to-manually-install-a-vscode-extension-on-ssh-box?rq=3) (Question score (upvotes - downvotes)) 5 (https://stackoverflow.com/questions/61444894/how-to-manually-install-a-vscode-extension-on-ssh-box?rq=3) How to manually install a VSCode extension on SSH box? (https://stackoverflow.com/questions/69124854/vscode-fails-to-install-extensions-remote-ssh-server-when-using-remote-ssh-exten?rq=3) (Question score (upvotes - downvotes)) 8 (https://stackoverflow.com/questions/69124854/vscode-fails-to-install-extensions-remote-ssh-server-when-using-remote-ssh-exten?rq=3) VSCode fails to install extensions remote ssh server when using Remote ssh extension (https://stackoverflow.com/questions/70380724/vscode-remote-ssh-how-to-automatically-install-extensions?rq=3) (Question score (upvotes - downvotes)) 8 (https://stackoverflow.com/questions/70380724/vscode-remote-ssh-how-to-automatically-install-extensions?rq=3) VSCode remote ssh -- how to automatically install extensions (https://stackoverflow.com/questions/71231718/when-i-use-vscode-remote-ssh-extension-to-connect-to-my-remote-server-i-found-v?rq=3) (Question score (upvotes - downvotes)) 2 (https://stackoverflow.com/questions/71231718/when-i-use-vscode-remote-ssh-extension-to-connect-to-my-remote-server-i-found-v?rq=3) When I use vscode Remote-SSH extension to connect to my remote server, I found vscode cannot install vscode-server on host (https://stackoverflow.com/questions/72464751/how-to-offline-install-vscode-server-for-windows-remote-target?rq=3) (Question score (upvotes - downvotes)) 2 (https://stackoverflow.com/questions/72464751/how-to-offline-install-vscode-server-for-windows-remote-target?rq=3) How to offline install vscode-server for windows remote target (https://stackoverflow.com/questions/75237044/vscode-remote-ssh-cant-install-extensions-on-remote-server?rq=3) (Question score (upvotes - downvotes)) 1 (https://stackoverflow.com/questions/75237044/vscode-remote-ssh-cant-install-extensions-on-remote-server?rq=3) VSCode remote ssh: Can't install extensions on remote server (https://stackexchange.com/questions?tab=hot) Hot Network Questions (Retrocomputing Stack Exchange) (https://retrocomputing.stackexchange.com/questions/32144/dos-program-for-3d-graphics) DOS program for 3D graphics (Science Fiction & Fantasy Stack Exchange) (https://scifi.stackexchange.com/questions/299567/old-short-story-about-an-oceanographer-named-dr-larabee-possibly-titled-rub-a) Old short story about an oceanographer named Dr. Larabee, possibly titled "Rub a dub dub" (Christianity Stack Exchange) (https://christianity.stackexchange.com/questions/108998/have-fundamentalists-stopped-calling-themselves-fundamentalists) Have Fundamentalists Stopped calling themselves "Fundamentalists?" (English Language & Usage Stack Exchange) (https://english.stackexchange.com/questions/634441/is-stumbled-in-thick-carpet-actually-used-in-real-english-without-an-article) Is “stumbled in thick carpet” actually used in real English without an article? (Quantitative Finance Stack Exchange) (https://quant.stackexchange.com/questions/84106/what-is-the-relationship-between-the-risk-neutral-and-real-world-probability-mea) What is the relationship between the risk-neutral and real-world probability measure for a random payoff? (TeX - LaTeX Stack Exchange) (https://tex.stackexchange.com/questions/752312/tblr-tikz-draw-relation-lines-between-two-tables) tblr-tikz draw relation lines between two tables (Ask Ubuntu) (https://askubuntu.com/questions/1557219/finding-hash-signature-etc-for-ubuntu-from-windows-10) FInding Hash, Signature Etc. For Ubuntu From Windows 10 (Electrical Engineering Stack Exchange) (https://electronics.stackexchange.com/questions/756857/quartz-crystal-resonator-aging) Quartz crystal resonator aging (TeX - LaTeX Stack Exchange) (https://tex.stackexchange.com/questions/752329/why-does-using-qty-output-numbers-without-a-period) Why does using `\qty` output numbers without a period? (Physics Stack Exchange) (https://physics.stackexchange.com/questions/860569/if-electrons-move-slowly-then-why-does-the-electric-field-inside-a-conductor-be) If electrons move slowly, then why does the electric field inside a conductor become zero instantly? (Mathematics Stack Exchange) (https://math.stackexchange.com/questions/5101203/handling-the-absolute-value-in-this-derivation-of-the-quadratic-formula) Handling the absolute value in this derivation of the quadratic formula (Puzzling Stack Exchange) (https://puzzling.stackexchange.com/questions/133534/i-need-to-name-this-class) I need to name this class (Code Review Stack Exchange) (https://codereview.stackexchange.com/questions/298332/bresort-bitwise-relationship-extraction-intelligent-adaptive-sorting-engine) BRESort - Bitwise Relationship Extraction - Intelligent Adaptive Sorting Engine for 32/64-bit & Floating-Point Data (Philosophy Stack Exchange) (https://philosophy.stackexchange.com/questions/131122/does-math-admitcare-about-the-existence-of-an-entity) Does math admit(care about) the existence of an entity? (Biblical Hermeneutics Stack Exchange) (https://hermeneutics.stackexchange.com/questions/108767/how-should-we-reconcile-moses-eye-for-an-eye-with-jesus-turn-the-other-chee) How should we reconcile Moses’ “eye for an eye” with Jesus’ “turn the other cheek” if Jesus came to fulfill the Law? (German Language Stack Exchange) (https://german.stackexchange.com/questions/81810/translating-you-go-girl-get-it-girl-and-girl-power) Translating "You go girl", "Get it girl" and "Girl power" (Role-playing Games Stack Exchange) (https://rpg.stackexchange.com/questions/216787/how-does-moving-through-difficult-terrain-affect-remaining-speed-when-switching) How does moving through Difficult Terrain affect remaining speed when switching to a special Speed? (Travel Stack Exchange) (https://travel.stackexchange.com/questions/200402/finding-a-single-or-combined-guided-tour-of-some-south-america-destinations) Finding a single or combined guided tour of some South America destinations (Writing Stack Exchange) (https://writing.stackexchange.com/questions/71908/narrators-who-purposely-refrain-from-quoting-part-of-the-dialog-in-order-to-crea) Narrators who purposely refrain from quoting part of the dialog in order to create suspense? (Mathematics Stack Exchange) (https://math.stackexchange.com/questions/5101304/can-the-integral-closure-of-a-ring-be-taken-intrinsically) Can the integral closure of a ring be taken intrinsically? (Cryptography Stack Exchange) (https://crypto.stackexchange.com/questions/117924/is-it-insecure-to-use-a-hash-with-secret-salt-instead-of-a-signature) Is it insecure to use a hash with secret salt instead of a signature? (Academia Stack Exchange) (https://academia.stackexchange.com/questions/221709/will-having-an-experimental-summer-internship-hurt-my-chances-of-getting-into-a) Will having an experimental summer internship hurt my chances of getting into a theoretical PhD? (Bicycles Stack Exchange) (https://bicycles.stackexchange.com/questions/97597/using-slightly-different-width-rim-on-front-and-back) Using slightly different width rim on front and back (Aviation Stack Exchange) (https://aviation.stackexchange.com/questions/111474/use-of-gyroscopes-in-instruments) Use of Gyroscopes in instruments (https://stackoverflow.com/feeds/question/64022855) (Feed of this question and its answers) Question feed Subscribe to RSS Question feed To subscribe to this RSS feed, copy and paste this URL into your RSS reader. (https://stackoverflow.com/feeds/question/64022855) () Why are you flagging this comment? (45) Probable spam. This comment promotes a product, service or website while (https://stackoverflow.com/help/promotion) failing to disclose the author's affiliation . (20) Unfriendly or contains harassment/bigotry/abuse. This comment is unkind, insulting or attacks another person or group. Learn more in our (https://stackoverflow.com/conduct/abusive-behavior) Code of Conduct . (39) Not needed. This comment is not relevant to the post. (19) Something else. A problem not listed above. Try to be as specific as possible. Flag comment Cancel You have 0 flags left today (GPP Locator) (https://stackoverflow.com/) (https://stackoverflow.com/) Stack Overflow (https://stackoverflow.com/questions) Questions (https://stackoverflow.com/help) Help (https://chat.stackoverflow.com/?tab=explore) Chat (https://stackoverflow.co/) Products (https://stackoverflow.co/teams/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=footer&utm_content=teams) Teams (https://stackoverflow.co/advertising/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=footer&utm_content=advertising) Advertising (https://stackoverflow.co/advertising/employer-branding/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=footer&utm_content=talent) Talent (https://stackoverflow.co/) Company (https://stackoverflow.co/) About (https://stackoverflow.co/company/press/) Press (https://stackoverflow.co/company/work-here/) Work Here (https://stackoverflow.com/legal) Legal (https://stackoverflow.com/legal/privacy-policy) Privacy Policy (https://stackoverflow.com/legal/terms-of-service/public) Terms of Service (https://stackoverflow.com/contact) Contact Us Your Privacy Choices (https://policies.stackoverflow.co/stack-overflow/cookie-policy) Cookie Policy (https://stackexchange.com/) Stack Exchange Network (https://stackexchange.com/sites#technology) Technology (https://stackexchange.com/sites#culturerecreation) Culture & recreation (https://stackexchange.com/sites#lifearts) Life & arts (https://stackexchange.com/sites#science) Science (https://stackexchange.com/sites#professional) Professional (https://stackexchange.com/sites#business) Business (https://api.stackexchange.com/) API (https://data.stackexchange.com/) Data (https://stackoverflow.blog/?blb=1) Blog (https://www.facebook.com/officialstackoverflow/) Facebook (https://twitter.com/stackoverflow) Twitter (https://linkedin.com/company/stack-overflow) LinkedIn (https://www.instagram.com/thestackoverflow) Instagram Site design / logo © 2025 Stack Exchange Inc; user contributions licensed under (https://stackoverflow.com/help/licensing) CC BY-SA . rev 2025.10.9.35104 By continuing to use this website, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our (https://policies.stackoverflow.co/stack-overflow/cookie-policy/) Cookie Policy . By exiting this window, default cookies will be accepted. To reject cookies, select an option from below. Necessary cookies only Customize settings