Compare commits
No commits in common. "174c101fb13ba07a24f99fe004f25cddd67a92e5" and "11d4baf648ce1f9e4e9b8157f391768918bbc74f" have entirely different histories.
174c101fb1
...
11d4baf648
19
cc4e/fc.c
19
cc4e/fc.c
@ -1,19 +0,0 @@
|
|||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
/* print Fahrenheit-Celsius table
|
|
||||||
for f = 0, 20, ..., 300 */
|
|
||||||
|
|
||||||
int main() {
|
|
||||||
int lower, upper, step;
|
|
||||||
float fahr, celsius;
|
|
||||||
lower = 0; /* lower limit of temperature table */
|
|
||||||
upper = 300; /* upper limit */
|
|
||||||
step = 20; /* step size */
|
|
||||||
fahr = lower;
|
|
||||||
|
|
||||||
while (fahr <= upper) {
|
|
||||||
celsius = (5.0/9.0) * (fahr-32.0);
|
|
||||||
printf("%4.0f %6.1f\n", fahr, celsius);
|
|
||||||
fahr = fahr + step;
|
|
||||||
}
|
|
||||||
}
|
|
12
cc4e/fc_2.c
12
cc4e/fc_2.c
@ -1,12 +0,0 @@
|
|||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
#define LOWER 0 /* lower limit of table */
|
|
||||||
#define UPPER 300 /* upper limit */
|
|
||||||
#define STEP 20 /* step size */
|
|
||||||
|
|
||||||
int main() { /* Fahrenheit-Celsius table */
|
|
||||||
int fahr;
|
|
||||||
|
|
||||||
for (fahr = LOWER; fahr <= UPPER; fahr = fahr + STEP)
|
|
||||||
printf("%4d %6.1f\n", fahr, (5.0/9.0)*(fahr-32));
|
|
||||||
}
|
|
@ -1,5 +0,0 @@
|
|||||||
#include <stdio.h>
|
|
||||||
int main() {
|
|
||||||
printf("hello, world\n");
|
|
||||||
return 0;
|
|
||||||
}
|
|
@ -1,5 +1,3 @@
|
|||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
|
|
||||||
from .models import Question
|
# Register your models here.
|
||||||
|
|
||||||
admin.site.register(Question)
|
|
||||||
|
@ -2,5 +2,5 @@ from django.apps import AppConfig
|
|||||||
|
|
||||||
|
|
||||||
class PollsConfig(AppConfig):
|
class PollsConfig(AppConfig):
|
||||||
default_auto_field = "django.db.models.BigAutoField"
|
default_auto_field = 'django.db.models.BigAutoField'
|
||||||
name = "polls"
|
name = 'polls'
|
||||||
|
@ -5,47 +5,28 @@ from django.db import migrations, models
|
|||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
initial = True
|
initial = True
|
||||||
|
|
||||||
dependencies = []
|
dependencies = [
|
||||||
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
migrations.CreateModel(
|
migrations.CreateModel(
|
||||||
name="Question",
|
name='Question',
|
||||||
fields=[
|
fields=[
|
||||||
(
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||||
"id",
|
('question_text', models.CharField(max_length=200)),
|
||||||
models.BigAutoField(
|
('pub_date', models.DateTimeField(verbose_name='date published')),
|
||||||
auto_created=True,
|
|
||||||
primary_key=True,
|
|
||||||
serialize=False,
|
|
||||||
verbose_name="ID",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
("question_text", models.CharField(max_length=200)),
|
|
||||||
("pub_date", models.DateTimeField(verbose_name="date published")),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
migrations.CreateModel(
|
migrations.CreateModel(
|
||||||
name="Choice",
|
name='Choice',
|
||||||
fields=[
|
fields=[
|
||||||
(
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||||
"id",
|
('choice_text', models.CharField(max_length=200)),
|
||||||
models.BigAutoField(
|
('votes', models.IntegerField(default=0)),
|
||||||
auto_created=True,
|
('question', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='polls.question')),
|
||||||
primary_key=True,
|
|
||||||
serialize=False,
|
|
||||||
verbose_name="ID",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
("choice_text", models.CharField(max_length=200)),
|
|
||||||
("votes", models.IntegerField(default=0)),
|
|
||||||
(
|
|
||||||
"question",
|
|
||||||
models.ForeignKey(
|
|
||||||
on_delete=django.db.models.deletion.CASCADE, to="polls.question"
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
@ -1,24 +1,12 @@
|
|||||||
import datetime
|
|
||||||
|
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.utils import timezone
|
|
||||||
|
|
||||||
|
|
||||||
class Question(models.Model):
|
class Question(models.Model):
|
||||||
question_text = models.CharField(max_length=200)
|
question_text = models.CharField(max_length=200)
|
||||||
pub_date = models.DateTimeField("date published")
|
pub_date = models.DateTimeField("date published")
|
||||||
|
|
||||||
def __str__(self):
|
|
||||||
return self.question_text
|
|
||||||
|
|
||||||
def was_published_recently(self):
|
|
||||||
return self.pub_date >= timezone.now() - datetime.timedelta(days=1)
|
|
||||||
|
|
||||||
|
|
||||||
class Choice(models.Model):
|
class Choice(models.Model):
|
||||||
question = models.ForeignKey(Question, on_delete=models.CASCADE)
|
question = models.ForeignKey(Question, on_delete=models.CASCADE)
|
||||||
choice_text = models.CharField(max_length=200)
|
choice_text = models.CharField(max_length=200)
|
||||||
votes = models.IntegerField(default=0)
|
votes = models.IntegerField(default=0)
|
||||||
|
|
||||||
def __str__(self):
|
|
||||||
return self.choice_text
|
|
||||||
|
@ -5,7 +5,4 @@ from . import views
|
|||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
path("", views.index, name="index"),
|
path("", views.index, name="index"),
|
||||||
path("<int:question_id>/", views.detail, name="detail"),
|
|
||||||
path("<int:question_id>/results/", views.results, name="results"),
|
|
||||||
path("<int:question_id>/vote/", views.vote, name="vote"),
|
|
||||||
]
|
]
|
||||||
|
@ -1,26 +1,6 @@
|
|||||||
from django.http import HttpResponse
|
from django.http import HttpResponse
|
||||||
|
|
||||||
from .models import Question
|
|
||||||
|
|
||||||
|
def index(request):
|
||||||
def index(request) -> HttpResponse:
|
|
||||||
latest_question_list = Question.objects.order_by("-pub_date")[:5]
|
|
||||||
output = ", ".join([q.question_text for q in latest_question_list])
|
|
||||||
return HttpResponse(output.encode())
|
|
||||||
|
|
||||||
|
|
||||||
def detail(request, question_id) -> HttpResponse:
|
|
||||||
_ = request
|
_ = request
|
||||||
return HttpResponse(f"You're looking at question {question_id}.".encode())
|
return HttpResponse(b"Hello, world. You're at the polls index.")
|
||||||
|
|
||||||
|
|
||||||
def results(request, question_id) -> HttpResponse:
|
|
||||||
_ = request
|
|
||||||
return HttpResponse(
|
|
||||||
f"You're looking at the results of question {question_id}".encode()
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def vote(request, question_id) -> HttpResponse:
|
|
||||||
_ = request
|
|
||||||
return HttpResponse(f"You're voting on question {question_id}".encode())
|
|
||||||
|
@ -1,3 +1,2 @@
|
|||||||
Django
|
Django
|
||||||
django-stubs
|
|
||||||
ruff
|
ruff
|
||||||
|
Loading…
x
Reference in New Issue
Block a user