poniedziałek, 26 marca 2018
blockfile-SimpleBlockFile.cpp
ASSERT INFO:
blockfile/SimpleBlockFile.cpp(111): assert "bSuccess" failed in SimpleBlockFile().BACKTRACE:
[1] SimpleBlockFile::SimpleBlockFile(wxFileName, char*, long long, sampleFormat, bool, bool)
[2] DirManager::NewSimpleBlockFile(char*, long long, sampleFormat, bool)
[3] Sequence::Append(char*, sampleFormat, long long, XMLWriter*)
[4] WaveClip::Append(char*, sampleFormat, long long, unsigned int, XMLWriter*)
[5] output_cb(void*, mad_header const*, mad_pcm*)
[6] mad_decoder_run
[7] MP3ImportFileHandle::Import(TrackFactory*, Track***, int*, Tags*)
[8] Importer::Import(wxString, TrackFactory*, Track***, Tags*, wxString&)
[9] AudacityProject::Import(wxString, WaveTrackArray*)
[10] AudacityProject::OpenFile(wxString, bool)
[11] AudacityProject::OpenFiles(AudacityProject*)
[12] CommandManager::HandleCommandEntry(CommandListEntry*, unsigned int, unsigned int, wxEvent const*)
[13] AudacityProject::OnMenu(wxCommandEvent&)
[14] wxAppConsoleBase::CallEventHandler(wxEvtHandler*, wxEventFunctor&, wxEvent&) const
[15] wxEvtHandler::ProcessEventIfMatchesId(wxEventTableEntryBase const&, wxEvtHandler*, wxEvent&)
[16] wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*)
[17] wxEvtHandler::TryHereOnly(wxEvent&)
[18] wxEvtHandler::ProcessEventLocally(wxEvent&)
[19] wxEvtHandler::ProcessEvent(wxEvent&)
[20] wxWindowBase::TryAfter(wxEvent&)
[21] wxEvtHandler::SafelyProcessEvent(wxEvent&)
[22] wxMenuBase::SendEvent(int, int)
[23] g_closure_invoke
[24] g_signal_emit_valist
[25] g_signal_emit
[26] gtk_widget_activate
[27] gtk_menu_shell_activate_item
[28] g_closure_invoke
[29] g_signal_emit_valist
[30] g_signal_emit
[31] gtk_propagate_event
[32] gtk_main_do_event
[33] g_main_context_dispatch
[34] g_main_loop_run
[35] gtk_main
[36] wxGUIEventLoop::DoRun()
[37] wxEventLoopBase::Run()
[38] wxAppConsoleBase::MainLoop()
[39] wxEntry(int&, wchar_t**)
[40] main
[41] __libc_start_main
[42] _start
CAUSE:
No space left on device
cd / ; sleep 1 ; df -h ; sleep 10 ; df -i / ; sleep 10 ; du -sh / ; sleep 10 ; du -sh ; sleep 10 ; lsof | grep deleted
piątek, 23 marca 2018
poniedziałek, 12 marca 2018
Easy Webserver
Looking for a relatively painless way to launch a web server with document root in current folder? This list will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000.
Python 2.x
$ python -m SimpleHTTPServer 8000
Python 3.x
$ python -m http.server 8000
Twisted (Python)
$ twistd -n web -p 8000 --path .Or:
$ python -c 'from twisted.web.server import Site; from twisted.web.static import File; from twisted.internet import reactor; reactor.listenTCP(8000, Site(File("."))); reactor.run()'Depends on Twisted.
Ruby
$ ruby -rwebrick -e'WEBrick::HTTPServer.new(:Port => 8000, :DocumentRoot => Dir.pwd).start'
Credit: Barking Iguana
Ruby 1.9.2+
$ ruby -run -ehttpd . -p8000Credit: nobu
adsf (Ruby)
$ gem install adsf # install dependency
$ adsf -p 8000
Credit: twome
No directory listings.
Sinatra (Ruby)
$ gem install sinatra # install dependency
$ ruby -rsinatra -e'set :public_folder, "."; set :port, 8000'
No directory listings.
Perl
$ cpan HTTP::Server::Brick # install dependency$ perl -MHTTP::Server::Brick -e '$s=HTTP::Server::Brick->new(port=>8000); $s->mount("/"=>{path=>"."}); $s->start'
Credit: Anonymous Monk
Plack (Perl)
$ cpan Plack # install dependency$ plackup -MPlack::App::Directory -e 'Plack::App::Directory->new(root=>".");' -p 8000
Credit: miyagawa
Mojolicious (Perl)
$ cpan Mojolicious::Lite # install dependency$ perl -MMojolicious::Lite -MCwd -e 'app->static->paths->[0]=getcwd; app->start' daemon -l http://*:8000
No directory listings.
http-server (Node.js)
$ npm install -g http-server # install dependencyNote: This server does funky things with relative paths. For example, if you have a file /tests/index.html, it will load index.html if you go to /test, but will treat relative paths as if they were coming from /.$ http-server -p 8000
node-static (Node.js)
$ npm install -g node-static # install dependency$ static -p 8000
No directory listings.
PHP (>= 5.4)
$ php -S 127.0.0.1:8000
Credit: /u/prawnsalad and MattLicense
No directory listings.
Erlang
$ erl -s inets -eval 'inets:start(httpd,[{server_name,"NAME"},{document_root, "."},{server_root, "."},{port, 8000},{mime_types,[{"html","text/html"},{"htm","text/html"},{"js","text/javascript"},{"css","text/css"},{"gif","image/gif"},{"jpg","image/jpeg"},{"jpeg","image/jpeg"},{"png","image/png"}]}]).'
Credit: nivertech (with the addition of some basic mime types)
No directory listings.
busybox httpd
$ busybox httpd -f -p 8000
Credit: lvm
webfs
$ webfsd -F -p 8000
Depends on webfs.
IIS Express
C:\> "C:\Program Files (x86)\IIS Express\iisexpress.exe" /path:C:\MyWeb /port:8000
Depends on IIS Express.
Credit: /u/fjantomen
No directory listings. /path must be an absolute path.
sobota, 24 lutego 2018
YouTube Api Could not be loaded ! Please Check and Renew SSL Certificate !
Fixing "YouTube Api Could not be loaded ! Please Check and Renew SSL Certificate !"
- Right click on the youtube page and select "Page Info"
- Click on Security
- Click on View Cookies
- Remove all and reload the page.
Subskrybuj:
Posty (Atom)