Questions tagged [blueprint]

Blueprint is a CSS framework that comes with an easy-to-use grid, sensible typography, useful plugins, and a stylesheet for printing.

Blueprint is a CSS framework designed to reduce development time and ensure cross-browser compatibility when working with Cascading Style Sheets (CSS).

It also serves as a foundation for many tools designed to make CSS development easier and more accessible to beginners.

Blueprint is released under a modified version of the MIT License, making it free software. It can be either used as is, or further adapted for use via a compression tool that is written in Ruby.

359 questions
-1
votes
1 answer

GoogleChart with Flask Blueprint

I am creating a Flask APP that use GoogleChart. I was able to make it work when the application was simple. Now, as the application is getting bigger, I am organizing the project using Blueprints. Mu problem is the following. In the simple…
Dariva
  • 330
  • 2
  • 13
-1
votes
2 answers

Complaining not a "package" though there is a __init__.py file in the folder

The Following is my code hierarchy. I am trying to create a package for my project, "UIGenerator" but it is giving me following error. traceback (most recent call last): File "run.py", line 1, in from UIGenerator import app File…
Natasha
  • 6,651
  • 3
  • 36
  • 58
-1
votes
2 answers

Azure blueprint deployment, getting Resource ID of publicIPAddresses of ACR Cluster

I have an Azure blueprint, which deploys an Azure ACR Cluster. Creating the cluster also triggers creating of the publicIPAddresses of the cluster. I need to get the Resource Id of that IP to be able to automate assigning a DNS/A record to that…
CityMan
  • 1
  • 2
-1
votes
1 answer

Flask routes using blueprint are not working, only '/' route is working on Ubuntu, But all is fine on Windows

I have created routes like the following in the graph.py file bp = Blueprint('graph', __name__, url_prefix='/') from flask import jsonify @bp.route("/", methods=("GET", "POST")) def index(): return…
-1
votes
1 answer

Ue4 - Mobile Card Game - Draw Card Problem

I am trying to do mobile action game with a card system. I have a 8 different card in array as a text and they are calling function like a skill system. When game start system will shuffle deck and pick 4 card from inside, remove them and add to…
-1
votes
1 answer

Application Factory Initialization Issues in Python Flask SQLAlchemy Blueprint

I have issues with initialization with Application Factory. I am using Blueprint and SQLAlchemy. Here is my program structure. App_v1 app.py config.py App_Py main __init__.py forms.py views.py …
-1
votes
1 answer

Hello world and guidelines not showing up in blueprint in Android studio

I am trying to follow this tutorial (https://developer.android.com/training/basics/firstapp/building-ui) to build a basic app. I am pretty sure that I have followed all the directions correctly, but after getting to figure 3 of Build a simple user…
-1
votes
1 answer

Flask, where is the specified static_folder?

Now, I have a project source code, and in this project there is a statement: APP = Flask(__name__, static_folder='../statics') Where is the folder '../statics'?
cleverlzc
  • 40
  • 7
-1
votes
3 answers

some peoples are says class is collection of objects and others says class is instance of an object which oop definition is correct?

First of all! Iam new to programming, In a blog i saw this two definitions . but iam confused . It says Class is a instance of an object and another says Class is a collection of objecs Which definition is correct? How? If both definitions are…
Muhammed Anas U
  • 305
  • 1
  • 4
  • 15
-1
votes
1 answer

Titan IllegalArgumentException:Could not instantiate implementation:com.thinkaurelius.titan.diskstorage.cassandra.astyanax.AstyanaxStoreManager

I'm a beginner with Titan Graph Database and I'm just trying to create a simple titan graph in a particular path using eclipse.Initially , setting the titan configurations followed by creating two vertices and an edge. This is the code i had given…
sabi
  • 29
  • 1
  • 1
  • 5
-1
votes
1 answer

Blueprint & room rental management

I work at a university building. We have various professors using various rooms at different times of the year. Who uses which room changes around once or twice a semester. I need a better way to manage who uses the rooms here at the university. We…
Rib
  • 33
  • 1
  • 5
-2
votes
1 answer

Flask.session keyError

I'm having a KeyError issue when trying to access something from flask.session and I'm questioning my implementation. Essentially, I have a PUT request that looks something like this def auth(): flask.session["access"] =…
Tim
  • 2,221
  • 6
  • 22
  • 43
-2
votes
2 answers

Setting dynamic delay for Camel file consumer

I want to set the delay for my camel file consumer. I am using blueprint DSL. Not sure how do I set it dynamically. I want the value "1000" to be picked up from a property file.
-2
votes
2 answers

Unreal Engine 4 - Blueprint How can I make a cube invisible?

I like to invisible/hide a cube when the charactar go in a triggerbox and press a Key like "E". I have already open a blueprint and insert a triggerbox and linked with the Key "E". But I don´t know how I can get the cube (in the world the triggerbox…
1 2 3
23
24