Compare commits
7 Commits
ddae692f0b
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| c64c4a1ba4 | |||
| c941397e7b | |||
| 0fb617976d | |||
| a724716d7e | |||
| c3cfef4ae3 | |||
| b7c4c1a207 | |||
| 00f15f1879 |
@@ -21,7 +21,7 @@ https://infiniteundo.com/post/25509354022/more-falsehoods-programmers-believe-ab
|
||||
https://eev.ee/blog/2015/09/12/dark-corners-of-unicode/
|
||||
http://michael.orlitzky.com/articles/motherfuckers_need_package_management.xhtml
|
||||
https://idlewords.com/talks/website_obesity.htm
|
||||
https://digdeeper.neocities.org/ghost/email.html
|
||||
https://digdeeper.club/articles/email.xhtml
|
||||
https://spyware.neocities.org/articles/brave.html,Computers are your enemy
|
||||
https://prose.sh/
|
||||
|
||||
|
||||
@@ -11,8 +11,10 @@
|
||||
|
||||
<h4>Notices:</h4>
|
||||
<ul>
|
||||
<li>Apr 5th: I think I've figured out what was causing constant dropouts, uptime should be back to >99%.</li>
|
||||
<li>Mar 27th: Oh yeah I found those other things. One is now at <a href="https://rakka.tk/r/support">https://rakka.tk/r/support</a>, the other is <a href="https://bae.st/media/38f1485d-a6bd-4b30-a409-0d9e75f22d19/bf313a3566fc2ada.png">here</a></li>
|
||||
<li>Feb 15th: Here are some links for a certain person I was speaking to. Actually a couple of people. <a href='https://mangadex.org/manga/c6a51a13-74fd-46bd-989e-5cdaa26542f6'>Hero BBS</a>, parodying isekai before isekai was big. I still haven't found the other things I mentioned.</li>
|
||||
<li>Feb 9th: Someone discovered that my ftp server was externally accessible and allowed anonymous writes and edits. Unfortunately I am too incompetent to have had it logging properly so I didn't get their IP, sad! Still, I feel special. Now I know I've made it.</li>
|
||||
<li>2022 Nov 8th: False alarm, I just needed to restart the DB.</li>
|
||||
<li>2022 Nov 7th: Database access is fucked, I don't know why, but large parts of my site will be inaccessible as a result (including, annoyingly, the contact page). I will probably redo the whole thing as a static site instead of trying to fix it.</li>
|
||||
<li>2022 Apr 5th: I think I've figured out what was causing constant dropouts, uptime should be back to >99%.</li>
|
||||
<li>2022 Mar 27th: Oh yeah I found those other things. One is now at <a href="https://rakka.tk/r/support">https://rakka.tk/r/support</a>, the other is <a href="https://bae.st/media/38f1485d-a6bd-4b30-a409-0d9e75f22d19/bf313a3566fc2ada.png">here</a></li>
|
||||
<li>2022 Feb 15th: Here are some links for a certain person I was speaking to. Actually a couple of people. <a href='https://mangadex.org/manga/c6a51a13-74fd-46bd-989e-5cdaa26542f6'>Hero BBS</a>, parodying isekai before isekai was big. I still haven't found the other things I mentioned.</li>
|
||||
<li>2022 Feb 9th: Someone discovered that my ftp server was externally accessible and allowed anonymous writes and edits. Unfortunately I am too incompetent to have had it logging properly so I didn't get their IP, sad! Still, I feel special. Now I know I've made it.</li>
|
||||
</ul>
|
||||
|
||||
@@ -5,11 +5,20 @@
|
||||
<title>
|
||||
Tas [] & Van Canto - {{ title }}
|
||||
</title>
|
||||
<!--<script type="text/javascript">
|
||||
document.body.textContent = 'Please disable JavaScript to view this site.'
|
||||
</script>Need to add a timer to remove it first. I'm not *that* mean. Credit: https://soc.punktrash.club/objects/bfe4fc29-96d5-4f90-9f9e-4092e7c273a4-->
|
||||
<script type="text/javascript">
|
||||
function b(){
|
||||
a=document.body.innerHTML
|
||||
document.body.innerHTML = '<main><p>Please disable JavaScript to view this site.</p><p><a href="/javashit">Why?</a> <a href="https://www.wikihow.com/Disable-JavaScript">How?</a></p><p id="tock" class="tick">Or wait <n id="tick">3</n> seconds...</p></main>'
|
||||
function t1(){document.getElementById('tick').textContent=2}
|
||||
function t2(){document.getElementById('tick').textContent=1}
|
||||
function c(){console.log("fucking normie"); document.body.innerHTML=a}
|
||||
window.setTimeout(t1,1000)
|
||||
window.setTimeout(t2,2000)
|
||||
window.setTimeout(c,3000)
|
||||
}
|
||||
</script><!--Need to add a timer to remove it first. I'm not *that* mean. Credit: https://soc.punktrash.club/objects/bfe4fc29-96d5-4f90-9f9e-4092e7c273a4-->
|
||||
</head>
|
||||
<body>
|
||||
<body onload=b()>
|
||||
<!--Move navbar to the bottom and use flex to reorder it to the top, so it isn't as intrusive without CSS.-->
|
||||
<main>
|
||||
{% autoescape off %}{{ content }}{% endautoescape %}
|
||||
|
||||
@@ -9,7 +9,7 @@ def nerdshope():
|
||||
sums={curr:sum([n.balance for n in filter(lambda x:x.currency==curr,accounts)]) for curr in set(map(lambda x:x.currency,accounts))}
|
||||
moneyblob='</li>\n<li>'.join([f'{k}: {v}' for k,v in sums.items()])
|
||||
moneyblob='Current monetary state: <ul>\n<li>'+moneyblob+'</li>\n</ul>'
|
||||
return {'title':"Nerds' Hope",'content':"Store stuff. TODOing. Will include inventory and budget. <a href='https://facebook.com/nerdshope'>FB</a><br/>\nAddress is 21 Kensington St, Glenorchy<br/>\nOff dates 2022: 26th August (more TBA). Additionally, on some weeks (TBA) the store will move around the back (through the gate) around 18:00 to make room for a youth group. If in doubt, ask the youth group for directions.<br/>\n"+moneyblob,'date':Update.objects.get_or_create(page='nh_main')[0].date}
|
||||
return {'title':"Nerds' Hope",'content':"Store stuff. TODOing. Will include inventory and budget. <a href='https://facebook.com/nerdshope'>FB</a><br/>\nAddress is 21 Kensington St, Glenorchy<br/>\nThe store isn't open when other events happen on Fridays, usually the last Friday of each month. Additionally, on the first and third weeks of each month the store will move around the back (through the gate) around 18:00 to make room for a youth group. If in doubt, ask the youth group for directions.<br/>\nFull list of dates:\n<ol><li>16th Sept - round the back later</li>\n<li>30th Sept - closed</li>\n<li>21st Oct - round the back later</li>\n<li>28th Oct - closed</li>\n<li>4th Nov - round the back later</li>\n<li>18th Nov - round the back later</li>\n<li>25th Nov - closed</li>\n<li>2nd Dec - round the back later</li>\n<li>16th Dec - round the back later</li>\n<li>30th Dec - maybe party</li></ol>\n"+moneyblob,'date':Update.objects.get_or_create(page='nh_main')[0].date}
|
||||
|
||||
@rerender
|
||||
def budget():
|
||||
|
||||
@@ -134,4 +134,9 @@ h1
|
||||
border: 2px solid;
|
||||
text-align: center;
|
||||
order: 3; /*flex thing*/
|
||||
}
|
||||
|
||||
.tick
|
||||
{
|
||||
color: #dddddd;
|
||||
}
|
||||
Reference in New Issue
Block a user