Skip to main content

firefox 3.0 full screen mode

In my ubuntu 8.10 system, I don't like the new feature of firefox 3.0 that always starts in a full screen mode. To disable the feature, go to the user's profile folder which is located in ~/.mozilla/firefox/ folder, and find the file "localstore.rdf".
Rename the file to something else, such as "localstore_rdf_bak", and it should fix the problem.

Comments

Popular posts from this blog

Web App Scaling with Flask Blueprint and Namespaces

A real-world Flask-RESTX-based API  may have multiple namespaces. The best practice for scaling a web application is to use a blueprint along with multiple namespace. The namespace is used to group a set of CRUD operations for a specific resource.  Blueprint can be used to combine (mixing) multiple namespaces. Here’s an example directory structure: project\ ├── app.py # Application file ├── apis #    ├── v20 # API directory    │   ├── __init__.py    │   ├── specs.py # API namespaces and REST methods    │   ├── steps.py # API namespaces and REST methods    └── v20bp.py # API blueprint file Here is an example app.py. Using a blue print allow you to mount your API on any url prefix. from flask import Flask from apis.v20bp import blueprint as api app = ...