How do I render the data of a arquivo.txt in a Django template?
file content:
1;'one';'foo'
2;'two';'bar'
I return in the template
1 - one - foo
2 - two - bar
Any tips on where I start?
Following the link...
I'm new to databases. My teacher asked us to do the linking of 3 movie charts:
Titulos , with movie names and links
Categorias of movie and link to movies
A middle table that would link category to movie title.
So the m...
How to make a certain HTML before another div? I tried using prepend but it poe at the beginning inside the div but I want it to put above / before and out of it, using prepend it looks like this:
<div class="pai"><div&g...
Suppose I have the following data
tabela<-structure(list(nome = structure(c(2L, 9L, 6L, 1L, 8L, 3L, 4L,
5L, 7L, 10L, 11L), .Label = c("12 Anos de Escravidão", "A Caça",...
I'm trying to give height and overflow-y to div to limit the size of div and add a scroll.
Something like this:
ForthisIamloadingalistofdatacomingfromDB(IamworkingonASPMVC)inthediv,andIaddtheheightandtheoverflow...
I'm making a client using Web Api. My site has the Web server function Api. I found this reference from Microsoft link which has an example client:
static async Task RunAsync()
{
using (var client = new HttpClient())
{
client...
I have the table in my database called votes, in it I have id, name and votes, I wanted to plot those values being, name and value in a pie chart or what is the percentage of votes each name
<?
$SQL1 = "SELECT * FROM votes";
$...
I need to get the path that saved the image and save it so that whenever I start the app the image appears in an ImageView. My code is the one
public void onClickCamera(View v){
Intent cameraIntent = new Intent(android.provider.MediaStore...
The variable role gets a new value in every Loop , when it is inside $.getJSON it takes the second value of the array and does not change anymore. There are two console.log(); in the code, I put their return next to it...
Well, I'd like to ask a question. I have to make some kind of chat where people can talk to each other. It will work just like a chat of Facebook or WhatsApp for example, but I do not have any database or reference that I can s...