Questions tagged [reloading]
99 questions
                    
                    28
                    
            votes
                
                8 answers
            
        How to automatically reload .NET Core project in Visual Studio 2019
I tried to automatically reload ASP.NET Core project as I do using Angular with Node or NPM.
When I change the code of the .NET Core project and save, I want the web page to be automatically refreshed in the web browser.
        
        Akash Limbani
        
- 1,283
 - 4
 - 14
 - 34
 
                    22
                    
            votes
                
                3 answers
            
        How to reload an emacs major mode?
I have a buffer in some major-mode, and in another buffer the mode file itself (*.el). After I edit the *.el file I want to see the changes reflected in the first buffer, without restarting emacs. I tried to run the -mode function but it didn't…
        
        yuk
        
- 221
 - 2
 - 3
 
                    18
                    
            votes
                
                1 answer
            
        How can I get Visual Studio to always reload changed solutions, projects and files?
I'm using multiple machines to profile and run one solution, with data synchronization done via DropBox (brilliant, btw!). Unfortunately, changes in one machine cause all other machines' VS instances to ask me whether I want to reload which is...…
        
        Dmitri Nesteruk
        
- 23,067
 - 22
 - 97
 - 166
 
                    18
                    
            votes
                
                1 answer
            
        Reload used classes at runtime Java
I'm working on a program that watches a directory and runs all tests in the directory when it sees changes in the directory.
This requires the program to dynamically load the classes, instead of getting the cached copies.
I can dynamically load the…
        
        Sven
        
- 1,133
 - 1
 - 11
 - 22
 
                    8
                    
            votes
                
                4 answers
            
        Reloading Sinatra app on every request on Windows
I've set up Rack::Reload according to this thread
# config.ru
require 'rubygems'
require 'sinatra'
set :environment, :development
require 'app'
run Sinatra::Application
# app.rb  
class Sinatra::Reloader < Rack::Reloader
  def safe_load(file,…
        
        Jakub Arnold
        
- 85,596
 - 89
 - 230
 - 327
 
                    7
                    
            votes
                
                1 answer
            
        How do I reload a UIView?
How do I reload a UIView after viewDidLoad + viewWillAppear have already been called (and the view displayed)?
If it helps - I'm loading it from a xib/nib file, and expect that calling the method should only trigger viewWillAppear on the controller,…
        
        smtlaissezfaire
        
- 437
 - 2
 - 7
 - 18
 
                    6
                    
            votes
                
                3 answers
            
        jsfiddle - how do I retrieve a previously saved fiddle
I need to do some html/css/js and stumbled across jsfiddle.
It looks like an excellent sandbox for developing/trying code.
I have registered an account & profile
I created a simple fiddle, named it, and then closed my browser.
New when I reopen…
        
        user2978241
        
- 311
 - 1
 - 5
 - 9
 
                    5
                    
            votes
                
                1 answer
            
        Why does changing componentDidMount to non-arrow function make hot reloading work again?
For one screen in my React Native app, hot reloading wasn't working. I found that the solution was to change this
componentDidMount = () => {
  <...do stuff with this.props...>
}
to this
componentDidMount() {
  <...do stuff with…
        
        gkeenley
        
- 6,088
 - 8
 - 54
 - 129
 
                    5
                    
            votes
                
                2 answers
            
        2011 Web Scripting Languages and Dynamic Reloading
This has been bugging me for awhile now. 
In a deployed PHP web application one can upload a changed php script and have the updated file picked up by the web server without having to restart.
The problem?  Ruby, Groovy, & Python, etc. are all…
        
        virtualeyes
        
- 11,147
 - 6
 - 56
 - 91
 
                    4
                    
            votes
                
                1 answer
            
        Android video restarted with orientation
How to avoid reloading of video with orientation change i.e force the video to resume from same. 
i  have tried below but it fails
vd = (VideoView) findViewById(R.id.vplayer);
.......
public void onSaveInstanceState(Bundle savedInstanceState) {
   …
        
        ArK
        
- 20,698
 - 67
 - 109
 - 136
 
                    4
                    
            votes
                
                0 answers
            
        How to Prevent ad from reloading on ListView/GridView in flutter_native_admob?
I am using flutter_native_admob to display ads in my flutter app, link
It is clearly written that to prevent the ads from loading again and again in the list view just save the controller and use it while displaying the ads and this will prevent ads…
        
        rahul  Kushwaha
        
- 2,395
 - 7
 - 32
 - 64
 
                    4
                    
            votes
                
                2 answers
            
        Java problems reloading code using ClassLoader
I recently made a post Update Java code during runtime and after a few hours fiddling around with different example codes and reading tutorials I have run into the following problem:
By using a ClassLoader I have been able to change a local variabe…
        
        Glader
        
- 303
 - 1
 - 3
 - 9
 
                    4
                    
            votes
                
                2 answers
            
        jQuery function load reloads the whole page
I'm trying to refresh part of my php page without reloading the whole page using function load(). 
This question has been asked before and i've tried all the solutions I found.
It works well the first time I click on my 
            
            
                
                    
    
    
        
    
    
                
            
        
    
        Aldhyr
        
- 43
 - 4
 
                    4
                    
            votes
                
                6 answers
            
        How to upload a file in asp.net without reloading a page
How to upload a file in asp.net without reloading a page
        
        Asad Chohan
        
- 43
 - 4
 
                    4
                    
            votes
                
                3 answers
            
        don't re-assign variable reloading script
I have a script in JavaScript which is called several times in a html page. I want to know how it's possible to assign values to a variable only the first call of the script.
var processingYear = 0;
var recupMonth = 0;
var recupYear =…
        
        mortiped
        
- 869
 - 1
 - 6
 - 28