Compare commits
No commits in common. "ffeba2133ef98894909b9c66f02965895309053c" and "c0b14f91525cb5ca83b233b03edd231925fef4b6" have entirely different histories.
ffeba2133e
...
c0b14f9152
15
.gitignore
vendored
Executable file
15
.gitignore
vendored
Executable file
@ -0,0 +1,15 @@
|
||||
/nextcloud
|
||||
/wp-admin
|
||||
/wordpress
|
||||
/wp-content
|
||||
/wp-includes
|
||||
videos
|
||||
projects
|
||||
/strips
|
||||
/.git
|
||||
/webtrees
|
||||
/humo
|
||||
/images
|
||||
reviews.csv
|
||||
*~
|
||||
chinese_cd.zip
|
890
LICENSE
Normal file → Executable file
890
LICENSE
Normal file → Executable file
@ -1,232 +1,674 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright © 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
“This License” refers to version 3 of the GNU General Public License.
|
||||
|
||||
“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.
|
||||
|
||||
“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations.
|
||||
|
||||
To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work.
|
||||
|
||||
A “covered work” means either the unmodified Program or a work based on the Program.
|
||||
|
||||
To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.
|
||||
|
||||
To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work.
|
||||
|
||||
A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.
|
||||
|
||||
The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”.
|
||||
|
||||
c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.
|
||||
|
||||
A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.
|
||||
|
||||
“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.
|
||||
|
||||
An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”.
|
||||
|
||||
A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.
|
||||
|
||||
A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found.
|
||||
|
||||
htdocs
|
||||
Copyright (C) 2024 deadvey
|
||||
|
||||
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
htdocs Copyright (C) 2024 deadvey
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”.
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see <https://www.gnu.org/licenses/>.
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read <https://www.gnu.org/philosophy/why-not-lgpl.html>.
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
||||
|
8
README.md
Normal file → Executable file
8
README.md
Normal file → Executable file
@ -1,3 +1,9 @@
|
||||
# htdocs
|
||||
Files for my website (deadvey.com)
|
||||
|
||||
my website files
|
||||
See https://github.com/DeaDvey/node for the nodeJS files
|
||||
|
||||
# TODO
|
||||
Add relevant links to how JS works, linking to repo
|
||||
Mirror on Gitlab
|
||||
Make all webpages work with nodejs fully preloaded, so no client side JS neccersarry
|
||||
|
1
blog/#comments-database.js#
Normal file
1
blog/#comments-database.js#
Normal file
File diff suppressed because one or more lines are too long
816
blog/archive.html
Normal file
816
blog/archive.html
Normal file
@ -0,0 +1,816 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="/mylife.css" />
|
||||
<h1>Welcome to the blog page!</h1>
|
||||
<meta charset="UTF-8">
|
||||
<!--copy and paste
|
||||
|
||||
<h3>/06/22</h3>
|
||||
<hr/>
|
||||
|
||||
-->
|
||||
</head>
|
||||
<body bgcolor="teal">
|
||||
<a href="index.html">
|
||||
<img width="200" src="return.png" style="border: 1px solid black; box-shadow: 5px 5px 5px #999"/>
|
||||
</a>
|
||||
𝔥𝔬𝔯𝔯𝔦𝔟𝔩𝔢 < - - Ony OGs will get that
|
||||
<hr/>
|
||||
<article>
|
||||
|
||||
<section>
|
||||
<h3>09/05/23</h3>
|
||||
Hey duduesss!!! Alacritty stopped working :( BUT Sotifyd , spotify and spt all just were working this morning so that's cool I guess, I went to Bath today so that was fun I guess, had Pizza Express :P and also got a book called Earthsea which looks really intersting, this was a bank holiday monday btw (only benefit to monarchy? o_O) so a three day weekend :O yay! but it's err over now :( next bank holiday is in a while >:O welp anyways taht's it for today oohohoh wait yeah! I got a Grub theme that looks like MInecraft and it's like SICK and that it looks so cool err I'm gonna put images in my blogs to make them more interesting so yeah, enjoy I guess, as you can see by the photo below, it's a bit buggy, but looks great, also kinda slow, but I repeat WORHT IT!!! Ok yeah that's it I think, Ripred won this Rat Bracket thing so that's cool ok bye I gotta sleep :'(<br/>
|
||||
Fly You High -DeaDvey<br/>
|
||||
<img width="100" src="Pictures/earthsea-book.png" /><img width="100" src="Pictures/minecraft-grub.png" />
|
||||
<hr/>
|
||||
<h3>06-07/05/23</h3>
|
||||
Hi, so I updated (again) to OpenSUSE tumbleweed and it's pretty fun, more difficult to get programs and that without the AUR, but it's still fun :D I backed up my home directory this time though so yeah, dual booting Arch and TumblrWeed, I might also try get a seperate home directory on a seperate partition, I also need to check out YaST more, so yeah, that's most of what happened, I also have done more on my game, got a global chat system working :D so fun, anyways gonna go to bed now, it's 3AM :skull: lmao, I gotta wake up at 9AM too ._. so yeah bye<br/>
|
||||
Fly You High -DeaDvey
|
||||
<h3>13/03-05/05/23</h3>
|
||||
Riggghhht, so I may have forgotten, then got really out of habbit, good to take a break I suppose, soo where do I start? Happy may the 5th be with you lmao, just missed that one, err Arch Linux, I graded to that, and am using a combination of Xmonad and XFCE, I also am now envying OpenSUSE Tumbleweed and I may cave and switch over there, YAST looks GOATED, I also have been listing to a lot of cool Music and playing games, I started learning C++ and am making a game in it called <a href="https://github.com/DeaDvey/tuc_game">tuc_game</a> I know, creative, anyways err yeah, I also have been doing bash scripting, I finished this guys reddit wallpaper extracter from Gtihub and now use it to set my wallpaper and it's so cool, here is the repo: <a href="https://github.com/DeaDvey/redwall">Here</a> and also I made a Python Whatsapp spammer, oh yeah, I've also been doing web scraping with Selenium in Python and getting some money for it, I sold my first peice of software which is cool Errrm yeah, that about it I think, I'll try update tommorow (But knowing me don't bet on it); so yeah, bue!<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>07-12/03/23</h3>
|
||||
I'm so sorry for not updating in 6 days, it's hard to with revision and homework and that, anyways, we had some snow days which gave me an oppurtunity to work on this program that my dad commisioned me to do that scrapes data from this website he uses, it was pretty fun, I had to learn Selenium in Python haha, and I don't use Python much so tyhat was awkward lolz, but anyway, I finished it and it works well, he payed me £200 for it which is epic, I'm that much closer to a gaming PC lol, but anyways, that's all I've done this week other than hoemwork which is of course pretty boring haha so yea bye. Oh right yeah, I also got this game called Ages of Conquest, I already had it on <a href="https://itch.io">itch.io</a> but the Steam version is so much better (though no longer free :() so yeah, that's pretty fun, I'm simulating a world war right now :P <br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>05-06/03/23</h3>
|
||||
Ugh, I didn't update yesterday for a good reason! I went to a concert, it was ABBA Voyage, and it was <b>so</b> good! I think how it works is that they are all on a screen
|
||||
and there are fake spotlights within the screen which reflect and is blocked by the fake ABBA which makes them seem 3D, the real lights in the room are never pointed at the screen
|
||||
so it doesn't break the illusion. On top of this, there isn't much physically around ABBA meaning your eyes don't have much to compare to, but if you try to look at the on stage
|
||||
band and then ABBA, you cna kind of tell that they are 3D, the effect is still really effective though! When the screens zoom into ABBA and they show them up close, you can tell
|
||||
that they are CGI and probably motion capture, but you can tell that some of the movements don't seem quite right occasionally, but still, it looks increadibly good, just a few
|
||||
things that make it look CGI. I would totally reccomend the concert, it was so fun seeing ABBA even if they weren't real, it felt as though they were. And today I made a searching
|
||||
systme on <a href="http://theunderland.co.uk">theunderland.co.uk</a> which you can find <a href="http://theunderland.co.uk/search">here</a> it basically searches through all the
|
||||
finished pages, I also carried on making Wordle in JS and that was fun, Oh yeah I got to use some JSON in the search project. I think that's it for today, hopw you all had a good
|
||||
day!<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>28/02-04/03/23</h3>
|
||||
It's been a few days, I have been playing Factorio into the DEAD of night haha so I guess that is why it took a few days to update, I'm so sorry, I did have some issues with Factotio where it would boot but I couldn't see the window, what I did was go into KDE (as I use a tiling manager (XMonad)) and load it, then I set it to windowed mode, this fixed the issue as it would boot through steam as windowed in XMonad and worked perfecty fine, one cool thing I found was that there is a window manager thing (like alt-tab in windows) that is installed as import XMonad.Actions.GridSelect which is pretty cool as you can see all open windows across all virtual desktops, anyways, I think that is it for tonite, I think I will <b>try</b> to upload tomorow as well, also go check out my YouTube channel as I uploaded a few new videos there, cya.<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>1-27/02/23</h3>
|
||||
Errrrm yeahh it's been a WHILE, so basically, I recently (like halway through Feb) changed (again) to Xmonad, and it's been a struggle, but fun none the less I guess a fun challenge, I am also now closer to getting a better PC, I emphasise closer cause I'm still really far away... I have also played loads of Trackmania as I started uploading daily Trackmania (and a bit of other stuff) content on my YouTube, which is now a lot more active and I've gained 10 subscribers which is super cool!<a href="https://www.youtube.com/channel/UCx-qXye3XcvdZinl-_8m4xQ"> go check it out if you want</a> bu it's not that good, I have been preoccupied by that which is why I haven't updated the blog in NEARLY A MONTH so sorry still, I feel guilty :'( I also am rewatching JoJos bizzare adventure and am on part 4, my favourite part.<br/>
|
||||
OK, cya later guys, I'm gonna go eat but I promise to update tommorow O.O<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>28-31/01/23</h3>
|
||||
Ugh, I'm so sorry, I keep forgetting or getting busy, but now I have 47 hours on Dwarf Fortress and I also played a lot of Battlefront, yes all of them, well not the shitty mobile ones, but all the other ones, yesterday I managed to get Battlefront 2 (2017) working but today it doesn't work, each time I load it, the window pops up then it crashes after a few moments, it's really annoying. luckily the good Battlefront 2 (2005) still works yeahhh, I have 53 hours on it now lol.<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<!--h3>22/01/23</h3>
|
||||
I played some sims today and earned a lot of money, getting closer to affording a better PC, someone already died of fire lol, RIP so yeah, I didn't actually do much today, began to implement the university in my bitlife clone haha<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/-->
|
||||
|
||||
<h3>22-27/01/23</h3>
|
||||
Wow! I'm doing bad now lol, ugh I don't know what to talk about, I've released a few Youtube videos in the last week so check them out and, I also updated to KDE and it is going pretty well and IDK what to talk about, oh yeah I started playing a game called MUMe which is pretty fun ok I guess that's it, pretty lackluster right.<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>19-21/01/23</h3>
|
||||
Argggaahh so so I haven't updated in a while (not that anyone reads this anyways lol) but I've been focusing a lot on the Bit life clone, there's a lot of different situations that must be programmed, I have currently an outlione of a game and no more, but it can be accessed <a href="/bitlifeClone">here</a> even though it is barely even a game, I will put it on the experiments tab if I think it is worthy, any ways, one coo thing I found out is you can have multiple .js files that can refrence functions in the others (as long as they are both connected to the main .html file) and this is really useful as I can have fnctions that rarely (if ever) change that I can put in one file so it doens't make the main one that I edit a lot all cluttered up if you want to see an example of this then see <a href="/bitlifeClone/staticFuncs.js">this</a> so yeah I think that is... oh wait yeah, I got a forge minecraft server running with a few mods so that's cool, sometimes crashes though :( lol, maybe I didn't allocate enough RAM haha, I'll check tommorow, yeah I think that really is it now. oh yeah, I made a dev mode withc just gives you a lot of money and all the best grades for testing purposes haha, so you can enable it in the console by making the variable "devToolsQuery" equal true, mainly for me but you can use it I don't care lol.<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>18/01/23</h3>
|
||||
So, I'm sure you've all seen the "The Waffle ouse has found it's new host" thing, I've started commenting it lol, remember to delete any of your coments (if any) on the 31st of January as that is the cut off fpoint, erase any proof of it's happenings lol, future historians will be so confused haha, so anywas, I started making a BitLife Clone and it's going well, I'll probably make it public in a few days if I carry on with it, I also got some money by making power points, so getting closer to the £500 I'm saving, anyways that's all for today<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>17/01/23</h3>
|
||||
I played a bit of BattleFront 2 and OSRS, other than that, I earned some money making Power Points, see, I've decided to save up for a better computer, which would be about £500, so I'm going to do loads of jobs and that, it'll take a while, but I won't buy many Steam games or comics, it'll be difficult :'( but at the end I will hopefully have a PC! that's it for today, it was pretty feautureless haha<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>16/01/23</h3>
|
||||
I played a bit of Stardew Valley, haven't played it for ages, I also playd some Mindustry while trying to set up a network port detector, then played Terreria, but on Discord, it shows that I'm playing terraria.bin.x86_64 LOL, so stupid, looks like I'm playing some weird rip-off version, I tried making Wordle in JavaScript, it's pretty bad haha, okay that's it<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>15/01/23</h3>
|
||||
I found out there is a Valve-made film editor called Source Filmaker, pretty cool, didn't have the chance to try it out though, I played some Halo, and got it downloaded on my Linux partiton, I also erased my hard disk drive, so it can now be part of Linux, I have 2½ TB of space available, I played some People Playground, got a few acheivements, I also played some TM Nations Forever, and couldn't figure out my old account details so that's a bugger, played some more Euro truck simulator, got 6½ hours on record now! then played a few games of Star Wars: BattleFront 2 (the amazing one from 2005, not the mediocre one from 2017 haha) I'm going to play some more now, i also went shopping and got some JellyBabies<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>14/01/23</h3>
|
||||
I played Euro Truck simulator today a lot, I got like 10K now, whoo, I also played some FF14 for a while, my new PS2 game finally arrived (Chritmas Pressie) it is so fun! I beat the last owners record second try LOL, I played it a while ago on PS Now, but now that I have a PS2, I thought I'd get it on there, Then I did homeowrk >:( then some Doom (1993) as I felt lie it, and maths reminded me of how there's a calculator where omeone coded Doom on it XD, then some Vampire Survivors, then I played Portal 2, which I bought ages ago in a pack with Portal 1, and I've never played, the sidekick robot is so funny haha, I also played some People Playground, so yeah, tat's it<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>11-13/01/23</h3>
|
||||
Sigh, I'm getting bad at this aren't I? well I've been Ill I suppose, missed two days of school, that was coool, reached 40 hours on Dwarf Fotress (More if you include DF classic LOL) You can see how they go side by side `_` yeaaah, so I did play a lot of games, but also I got a total of like 2 hours of sleep since Wednesday LOL, I'm SO tired, so I'll make this short, yeah, I think I said it all actually, Oh I tried to get all the Steam Community Pillar acheivements, only 2 left haha, that's fun, I also FINALLY finished chapter 3, IKR, it took ages <a href="https://www.fanfiction.net/s/14146567/3/Gregor-and-The-Prophecy-of-Sand">Go check it out if you want, it's a bit short, but also pretty bad haha</a> anyways, that's it for the last 2 day IG<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>10/01/23</h3>
|
||||
I played Roblox today and it was Clon Tycooon 2, it has updated a lo since I last played! I upgraded to building level 2 and am nearly on level 3! I also tried out a bunch of ASCII games I found on <a href="https://itsfoss.com/best-ascii-games/">this</a> webpage, they are all pretty cool, ASCII Sectors website doesn't work though! and I couldn't find a working torrent :( it's sad, it looked really good, I also played some Dwarf Fortress, and Rogue as well, pretty fun day really, what was the important thing I was gonna mention??? Oh yeah! my school accidently removed some of the student permissions so I installed FireFox and changed the Desktop background! pretty cool, I've wated to get FireFox for ages!.<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>06-09/01/23</h3>
|
||||
This is getting bad, I don't know whta to write but I've been playing alot of DF, People Playground and Worldbox, tried getting SimpleGUI working on Linux, only got it working on Windows which is sad (SimpleGUI is WorldBox mod) BepInEx doesn't seem to work on Linux :( Anyways didnt do much else just kept forgetting to update, I went to Cadtes today and it was cancelled, had to get chaged twice and wait for half an hour before I realised >:( eh, not too deep, finished reading to Beano anual 2023 and am reading the endof the Book of Lost Tales part 2, I just finished the Nauglafring, am onto Earendilsjorney now :D so yeah that's it, I'll try update tommorow too, so yeah sorry<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>01-05/01/23</h3>
|
||||
Jeez! I haven't updated in ages, been a bit busy with school and had to adjust to that a bit so that's prbably why, today I started playing Minesweeper, and it's really fun! I got a decent time of 30 seconds on beginner and 463 seconds on Intermediate, so not that good, I've also played quite a bit of DF and RimWorld over the new year, oh yeah happy new year! weird that it's 2023, first time I've blogged with 2023 in the title, I also played a bit of Mindustry and Minecraft so that was fun, and I got Project: ZOmboid and I'm SOOOOO bad!<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>31/12/22</h3>
|
||||
<img width="50" src="https://freepngclipart.com/download/diwali/50475-fireworks-adobe-transparent-red-firework-download-hd-png.png" /><br/>
|
||||
At the time of writing this it is past midnight, so technically the new year, so happy new year! but today I played some pool and table tennis at a pub-type-thing was pretty fun, I also ate loads of tortias and played loads of Rimworld, and Dwarf Fortress, it was wicked, I love Dwarf Fortress, and I already have over 20 hours on RimWorld, even though I've opnly had it for a few days lol, it's so good, I have a wicked settlement now, I had some somosas and pizzas, which where hot, but real, nice oh and unfortunaly my new keyboard from christmas broke! so annoying but I still have my old one :(<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>30/12/22</h3>
|
||||
I palyed loads more Rimworld today, I got a great settlement with SEVEN people! it's great, I also watched tons of Only Fools and Horses, The Grandad died :'( and the unlcu lay under a massive UV light lol, I prefer the grandad to the uncle though so that's sad, in Rimworld, I figured out you can edit save files as they are in plain text, so I do that a bit to make my time easier as it is very difficult, and I am very bad haha, so yeah, that's today, I played some Roblox too, bit boring, don't see the interest it it tbh<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>26-29/12/22</h3>
|
||||
So sorry I haven't updated for ages! I started playing Minecraft Tekkit and it's SO complex! it's really fun so yeah, I also got RimWorld and have been playing it all of today, I also got running the Mindustry server and Minecraft server so that was fun, the MC server is up and runnning on NOT aternos, and that means it can be up 24/7 which is cool, I can join at any time, own't leave it on 24/7 but still, it's possible lol so yeah, I've been playing a lot of Minecraft, Mindustry, RimWorld and WoW.<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>25/12/22</h3>
|
||||
<img width=30" src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fpngimg.com%2Fuploads%2Fchristmas_tree%2Fchristmas_tree_PNG109.png&f=1&nofb=1&ipt=80d56677530650910ca543928b13eec3be27fc481245614159d1480b459fa228&ipo=images" /><steambr/>
|
||||
So, it's christmas! fun! I got the Keyboard I wated that is bluetooth and has a Meta jey, no numberpa, but that's fine. I also got a desk matt that is a map of the Middle Earth, I got a Lego Tie Fighter and the Mandalorians N-1 Starfight, and those are the main ones, I got a few mre too, pretty fun! I also made a money converter and it works it's in Pyhton, I'll put it in Experiments when I've improved it so yeah, almost 2023, that'll be the third year than COVID has existed and the second for my website, my websites anniversary is on the ninth of May so yeah, a while a way but getting closer, I had microwaveable pasta for Christmas dinner cause I'm a fussy eater and it was delish, oh yeah, I also got Sandman my Neil Gaiman, and the PS2 game hasn't yet arrived but it will at some point, it's Star Wars Racer Revenge, I played it on PS Now and it's sooo much better than the first one, even though the ratings are so bad, I personally LOVE it, I will probs buy some games as I ot a bunch of money and alos comics yeahhhh, so, I think that's it, Happy Christmas weather you celebrate it or not and goodbye<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>24/12/22</h3>
|
||||
This is it, Christmas Eve, I feel worse than I thought I would IDK why just annoyed at someone so I don't really know wjuhy, I did more C++ and Python and I ugh I don't know what to say or do I didn't do much today, wathced a part of a film called Glass Orage: Knmves Out or something like that it was ok didn't watch all of it just the first half an hour or something. Okay I guess that's it it was a pretty boring day and IDK why but I don't feel exxited about tomorrow.<br/>
|
||||
Fly You High -DeaDvey.
|
||||
<hr/>
|
||||
<h3>23/12/22</h3>
|
||||
It's Christmas Eve, so if your name is Eve, Merry Christmas Eve Eve, Eve! Got that from Seamus Gorman ehem, Cameron Paperman, they look oddly alike do they not! Anyways I need a shit one moment please. Okay, I'm bac, today I went swimming really early so I had like 6 hours of sleep o_o and then I chilled for a bit and played WoW, I saw Avatar from 3:00 to 6:10 and it was so good!!! Not as good as the original, but I think the reviews underate it! then I came home and ate tea, then wacthed Night in museam and it was great (seen it tons before) and then I did some C++ and learnt the basics cause I don't know C++ and then I'm going to bed right now after I've had some Yoghurt so yeah, cya people<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>22/12/22</h3>
|
||||
ooo, there's a lot of twos in todays date! I did StormWind Stocks dungeon today and got some loot, I also reached level 30! I got the travel form! exited yeah! I started editing some Wiki pages and make 1 or two changes, it's pretty fun, I'm listeing to and Elon Musk live speach right now! I don't really like him but it's iteresting non the less so how're you doing? other that that I played some Minecraft and Trackmani and random other stuf XD<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>21/12/22</h3>
|
||||
So, sorry about yesterdays short one, I was in a bit of pain and it was getting late so I really wasn't in the mood, right now it's *less* painful, but still cna't eat very well :'( I managed to get the dual boot for Linux and Windows working! and I can play World of Warcraft again!!! So happy, did a few quests and am nearly at level 30! It's really cool, love WoW, will probably just use it for that XD don't like Windows that much >:) I have literally only downloaded WoW, some mods and spotify! it's kinda funny I guess anyways that's it for today<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>20/12/22</h3>
|
||||
Got my lower braces, pretty painful, have also been trying to get WoW classic for Linux for ages, that's painful too, my life is full of PAIN! idk what to write too tired :'(<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>19/12/22</h3>
|
||||
Well, I wnet to the dentist for my twice-a-yearly checkup, everything went fine but coincidently, I am getting my bottom braces equiped tommorow morning so that sounds... fun (not) won't be able to eat hard stuff for a week >:( eh it's for my own god thouh so I can't complain.other than that, I watched loads of scammer gets scammed videos, and they're really interenting haha other than that I've done not much :D typical holiday day, getting exited for the countdown to christmas yay! so exited anyways gonna go now<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>18/12/22</h3>
|
||||
I went swimming in the morning but it was a different place than usual, went with my brother as he's back from Uni, I also played some articulate later, I played tons of Cities: Skylines and made a poopnami (poop tsunami) and it was MENTAL, I also played Dwarf Fortress ASCII and made a leather and so glass and a metal furrnace so weapons and armour are made! wooho, again I didn't do that much as it's teh holiday whoooo<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>17/12/22</h3>
|
||||
I played loads of Dwarf Fortress ASCII today and it is really good! I'm learning so much! I also played lots of Cities: Skylines and I feel bad for the people! I flooded them so much and gave them huge tsunamis XD other than that, not much happened really, it is the holiday after all haha, I'm going swimming tomorrow! so yeah that will be awesome,!!! oh yeah, haha can't beleive I forgot! the DP arrived and I have a second moniter working finally! woah arm feels weird o_o ok it's getting late I'm gonna go up now<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>16/12/22</h3>
|
||||
So I'm playing this really fun game called Dwarf miner, I first found it on steam and thought it was ok, then I foudn the oiriginal version and I don't know which one is better! I like the simple look of the original one! so that's why I can't write much today but OMG it's the winter holidays! I can't wait for christmas ok that's all today as it's pretty late, almost the 17th ._.<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>15/12/22</h3>
|
||||
I got the viynl working! I went down to shops and got some triple a batteries and it works with the speaker, the order was cancellec so I couldn't get it early aparently they couldn't deliver as there was "snow" yeah right, England rarely snows and if it does it's really dead snow, more like sludge that anything! Also my Anker USB-C to > DP adaptor I got working as it arrived earlier, at first it wouldn't work and I was devestated! I rebooted a few times and even got someone on Hexchat to help, no luck then randomly I rebooted again (as I had done several times prior) and it worked! jeez tech really can be random sometime, you love it and you hate it though, the second DP wire should be arriving tomorrow, and also tommorow is the last day of term before Christmas! only 10 more days too!!! I'm starting to get exited (I wrote tomorow three different ways in the same sentence there! I can never spell it) so anyways, I listened to some old records, noteably, The Smiths and NOW That's what I call music number 1! so that was pretty awesome, everything seems to be going right right now, damn it I jinxed it didn't I! welp I don't beleive in jinxes ;) I have done all the homework for Friday but I still have some for January so I'm dreading that, maybe I can get it done over the next few days but who really knows at the end of it really lol, elp I guess that's it<br/>
|
||||
Fly you High -DeaDvey ;)
|
||||
<hr/>
|
||||
<h3>14/12/22</h3>
|
||||
Bit of a rush, I set up the christmas tree today, getting to the point where I'm in the christmas spirit :D am quite exited now :D, so I also found some old records/viynls when looking in the attic, we set up an electronic record play and it can play music... but really. really. quietly, so to compensate, I put my phone next to it and were pretneding it's coming from the record player. so basically the electronic speaker has no batteries so I ordered some more AAAs and they will arrive tommorow, will update to see if it works, also my USB-C adapter should arrive tommorow and that's pretty fun! I also tried to play the Mindustry server but it's not working, so that's a bummer >:( I sort of gave up, it doens't seem to correspond to the same server anyways, I'm a bit confused as I don't know much about servers and networks D: oooo big thing, I heard whams "Last Christmas" and I cried :'( I'm out of whamageddon2022 noooo :(:(:(:( so annoyed! I got so far this year, ge=uess it was only a matter of time though. welp that's it for today<br/>
|
||||
Fly You High -DeaDvey
|
||||
<hr/>
|
||||
<h3>13/12/22</h3>
|
||||
So, one main important, no actually two cool things happened today,first of all, I finally went into the computer shop to get my HDMI slot fixed, I catually went to one, they recomended me another that does more hardware stuf then another that does more intricate things, so we were really walking around XD, not that far thouggh, they were just over the road from each other hhaa, so they couldn't fix it :( but they recomended a DP splitter followed by a DP > HDMI adapter:) , this was £25 but I looked online and found that you can get a USB-C adapter for way cheaper, didn't even know USB-C had the capability :D sp that's been ordered and is on it's way, secondly I found out (after a lot of tribulations) how to remotely connect Emacs to my ssh server, so what I did was ssh to it with C-x f and it works! I am currently using Emacs right this second in fact, so in a ew days (when the adapter arrives) I will be stocked to be editing Wraithfate live and using a second monior so they are not squished together, I am rather exited about the prospect, I also think I will be switching to Brit Box from Disney+ so I can continue watching the classic Dr. Who, all in all, I am very exited, cause oh yeah, it's the winter holdiday starting this weekend!!!! Annnnywayyys...<br/>
|
||||
Fly you high -DeaDvey (gonna be my sign off remark from now on;))
|
||||
<hr/>
|
||||
<h3>11-12/12/22</h3>
|
||||
I was out late last nigh mfo++ haha, so I found out today that you can edit the css and html so easily with Libre Office Writer and IDK how I feel about it!, Iaccidently ruined the old version of this page (this is a convinient backup) you can actually see the ruined one on the same URL but with a (1) around it haha, IDK why it did that ¯\_(ツ)_/¯ (<-- copy and paste that ;)-->) so anyways that was scary ._. and Also I added UTF-8 to this page so things actually work haha! I guess if you're reading this in the future, first off wow are flying cars neat! and secondly, why? and thirdly this page looked pretty shite sometimes due to NOT having UTF-8 on XD, so I have it now, I did a lot on Wraithfawte and started added the Location Basded Image system ;) you have no clue what that is do you ahhaha, Errrm what else happened IDK, I think I'll look more into this LibreOffice Writer thing, could defo come in handy sometimes ahah, but can also be pretty annoyin :( so anyways,<br/>
|
||||
cya, wouldn't wanna beya!
|
||||
<hr/>
|
||||
<h3>10/12/22</h3>
|
||||
So, in the morning, I went on a freezing as fuck run, my hands where numb, and the grass was white, it wasn't snow, but FROST, kinda odd, well not really, I just don't leave the house often haha, I had to wear gloves for a third of it lol. I did some of Wraithfate today and that's pretty cool. I do't know what else to say tbh, I tried to get an sftp package working for Emacs cause I can't use it when connecting to remote file:(<br/>
|
||||
cya, woldn't wanna beya
|
||||
<hr/>
|
||||
<h3>09/12/22</h3>
|
||||
I think I've pretty much given up on the advent of code, they are too hard, and I'm not a very good coder, mayber next year I will be better, I mean look at the progress I've made this year, not much haha, I'm trying to get windows 10running on a virtual box nad am downloading the iso file right nw, and oh yeah it's the weekend, hooray!!! I will maybe do advent of code still but not keeping up with the days and just do them whenever you know, I got wine working and have Trackmania, and Notepad++plus more working, so that's pretty awesome, I'm downloading WoW right now, bring the addiction back on >:) hhaa<br/>
|
||||
That's all for today amigos cya! (I need to make a unique signing off phrase)
|
||||
<hr/>
|
||||
<h3>08/12/22</h3>
|
||||
Not much today, it was christmas jumper day, didn't wear one, don't have one haha, I guess that's okay though, I have speant most of this evening re-writing day-8 of advent of code, and it is WAY better! nmot much else to say, oh I bindge watched r/technicallythetruth and it's so funny!!!<br/>
|
||||
Ok cya peeps (never saying that again)
|
||||
<hr/>
|
||||
<h3>07/11/22</h3>
|
||||
My brain feels metaphoricaly like mushy peas, I did intense coding (not really) today I tried to do the 7th day on adventofcode.com and I'm almost there, but I didn't get it, I also started making my TUC web game, it's okay, but not that good XD, other than those, I haven't done anything much, I played a bit of Minecraft and I carried on building my Massive Maze.<br/>
|
||||
I'd say that's it fuck, text editor is worse that Notepad!
|
||||
<hr/>
|
||||
<h3>05-06/11/22</h3>
|
||||
I think I forgot to post yesterday whoops, oh yeah, I got back home at about nine so had no time to blog, had to update this other thing and do homework, the 5ths advent was really hard, I finished it today as I had not much time yesterday, but todays was significalntly easier! Also, I saw a YT video, aparently the Tom Scott junction was fixed, I mean, it's good, but I was kinda planning to visit it, so that's a bummer! also, wow killer theme sog, boulevard of broken dreams, okay I forgot what I was gonna say, just listening to Spotifty haha, errrm, I yeah, it's gone lol, okay I guess thats uggg what was it! okay tta's it<br/>
|
||||
See you human beings upon a diff oh yeha, I got this awesome app where you can view the whole sky and zoom in on stuff it's epic, okay bye.
|
||||
<hr/>
|
||||
<h3>04/11/22</h3>
|
||||
I didn't do that much today, except oh yeah, I fucking completed all the advent of codes (up to now) that I hadn't already done, that's like 5! so that was a busy morning lmao! I reorganised my desktop so that it shows longer icons on my taskbar and I also have a sidebar and also added a clock onto my desktop haha it took a while and was quite annoying, but I managed to do it! and a bunch of other cool "desklets" so yeah, preeety neat, I had a bit of a problemwith rightclicking the taskbar, but that's gone now, I also made a mega base in mindustry so yeah, it looks pretty good and there is 62K watts per pylon haha!!! it is mental big like wtf!<br/>
|
||||
Ok, that's today done, byeee
|
||||
<hr/>
|
||||
<h3>01-03/11/22</h3>
|
||||
OMG, I'm so sorry, so on Thurday, I was at the theatre watching The Inspector Calls sp I obviously couldn't update as I got back at half eleven, then on Friday, I found this cool new game called Mindustry and it's so cool! I was playing that late into Friday, and was preoccupied, so couldn't update ._. good explanation... Ok, so Inspector Calls was good, The house fell over at the end so that was odd, and they had to shout at The Inspector from their balconey, it was a bit weird, oh and at one bit, someone collapsed in the audience and they had to stop the play it was scary!, so that's it for today, hope you all had a good end-of-the-week and are looking forward to the Advent Of Code<br/>
|
||||
Goodbye.
|
||||
<hr/>
|
||||
<h3>30/11/22</h3>
|
||||
Not that much hapened today, I just found out I can update my site without using the hostinger file manager, it is pretty cool, ugghh what else happened, I got the Spotify 2022 review and I listened to Killers the most, was in the top 0.01% of listeners haha.<br/>
|
||||
Ok cya.
|
||||
<hr/>
|
||||
<h3>27-29/11/22</h3>
|
||||
A lot has happened in the last 3 days, I couldn'tt update the blog, and you'll see why:<br/>
|
||||
Day 1:<br/>
|
||||
I went to Harry Potter World today!!! I didn't buy anything but it was so good, I saw the nightbus, and since last time they have added the greenhouses and a fountain! it's really cool! I also had some butter beer and some fries, I went on the hogwarts express and said 'up' to a broom, it was pretty fun! I was wearing my green Slytherin Jumper and when I went on the green screen bit, my top half was invisible XDXD it was really stupid, it looked like I had an invisibility cloak though ahaha I was tempted to buy a choclate frog! We left at like 10PM and we were THE last people to leave XD (apaert from employees ofc) we got back at about 12:15 and it's the next day...<br/>
|
||||
Day 2:<br/>
|
||||
Now it's the midnight right after last log, so I am eating noodles and I decidd to install Linux haha, wow yeah random, but it looks pretty good ok gonna go to bed now, so I woke up and finished installing Linux and it's good, After school, disaster! my PC wont boot up!!! aggaga I can't even get to BIOS nooo, so I took out my D drive and it worked, had to go through a few hoops, but I got Linux working :D I can't use my D drive now grrrr. that was a stressful day!<br/>
|
||||
Day 3:<br/>
|
||||
So I've got Linux working now, right, well for a bit yes, but I tried opening Windows and shock, now it doesn't work, so after school I take out D drive again and it works I also my password isn't working, have to do some hacky wacky to get it back, seems insecure hmm, so that's annoying, I get started on downloading apps for myself, and logging into things, basically getting everything sorted and stuff, I have spotify and Google Maps Pro now! whhooo, okay that's it for today goodbye.
|
||||
<hr/>
|
||||
<h3>25-26/11/22</h3>
|
||||
I've done ALOT today, firstly, last night I made a Notepad++ file that has every JSFiddle file I've been sent, for future use. This morning though, I have continued making my new Dungeon Crawler better, Oh shit, I didn't do blog yesterday, ok, so yesterday I started making a Dungeon Crawler and today as I said, maid it better, but I didn't blog yesterday as I was watching Haryy Potter, specifically seven part two, so that was fun, love the ending, I'm going to Harry Potter World on Sunday (London One) and I'm hyped haha, so today, I continued Dungeon Crawler (has no name) and it's going okay, I have also updated the home page, made it more sleek, though still pretty bad >:( I have also made a new Git Hub repository for useful code and have made an <a href="allPages.html"> all pages page</a> and it looks good, it's a catalouge of all the pages in the primary directory, so yay,I did ParkRun and got a 29:48 so that was good for me :) I watched a ton on Batman 1966-68 series and also some Mr Bean, it's so funny haha, (live action > animated change my mind) and yeah damn I'd thought I'd done more, this always happens in an action packed day >:( oh yeah, I added a bunch of photos to <a href="photosStuff">Photos page</a> and yeah, so I also made a new sub domain, never done that, and found out that you can enter an email into a browser and it gets annoyed XD. ah yeah, I chnaged the color of the scroll bar, didn't know you could do that XD<br/>
|
||||
Ok cya, this has been a fun day, oh yeah it's a 1.5* weekend :D
|
||||
<hr/>
|
||||
<h3>23-24/11/22</h3>
|
||||
Hey, I didn't do one of these yesterday, as I went swimming, but I got prescription goggles and IT@S AMAZING!!! I can see so far, before I could see like 1 metre in each direcetion as my goggles didn't have lens in them, but now they do (fyi I've had glasses for years) It's so cool!!! I love it! So the main thing (other than goggles) I've been making a flappy bird clon and itt's mostly finished! There's one annoying thing, it doesn't seem to be loading the new version of it on FireFox, but works on Edge, so IDK what's happening! Go check it out (even though it doesn't work) grrrr Meybe when you're reading this it's been fisnished years ago, before I bought the internet... jk of course.<br/>
|
||||
Ok byeee it's a 1.5x weekend babyyy!
|
||||
<hr/>
|
||||
<h3>22/11/22</h3>
|
||||
Today, I got VIM which is an IDE for web development, I think it is pretty fun, but the learning curve is VERY steep so it's very difficult to start off with, though it is still pretty fun! I have continued to implement a better version of writing to the Wraithfate page, idrk what the term would be, idk what else there is to say about today...<br/>
|
||||
Sorry these have been short recently, :(
|
||||
<hr/>
|
||||
<h3>21/11/22</h3>
|
||||
Today I have started implementing a better version of Wraithfate where it doesn't delete everything, I have also discovered a fun game called OSRS guessr and you have to basically play GeoGuessr but with OSRS and it's so fun! I have Personal Best of Time: 59sec & Score: 20770 so I'm not that good but okay I guess. That's it for today, I haven't really done that much today, except got to go to Police Cadets and do some coding :D<br/>
|
||||
Okay goodbye!
|
||||
<hr/>
|
||||
<h3>19-20/11/22</h3>
|
||||
So I didn't post yesterday again, I had a lot of family over so I didn't have time, I have worked a lot on WraithFate and I added a boss to the game, in fact every boss I had planned is now in the game, they alos all have drops and they are pretty fun, I have added: Brightside, Boulevard, Neon Tiger, Kiki, Bouba, Cemetary Gates, Pompeii and FrostBite, they also all have drops: bright sword, lonely rope, neon fang, kiki spike, bouba bat, stone sythe, lava gloves and ice spike. The lava gloves auto cook fish you caught, so that's pretty fun! That's pretty much all I've done the last few days apart fromeat cakes.<br/>
|
||||
Goodbye all.
|
||||
<hr/>
|
||||
<h3>18/11/22</h3>
|
||||
Today I discovered a site called <a href="https://libraryofbabel.info/" >Library of Babylon</a> and it's pretty cool as it contains every possible combination of characters, so you can search a thing (up to 3200 characters) and it will find it, haha, it's really cool, I found the bee movie script XD. On Wraithfate v2, I have implemented a bossing system and it actually took quite a while, so, try it out if you want, errrm I don't know what else happened today. Oh, it is actually the death anniversary of someone in my family, so that's really sad :( fo++ = 1<br/>
|
||||
Goodbye, I didn't domuch today actually...
|
||||
<hr/>
|
||||
<h3>16-17/11/22</h3>
|
||||
Shit, it's late, and I have to write for two days! okay yesterday:<br/>
|
||||
Last night I found out about this literal template thing in JS and I love it, so useful! ok so this morning, errm Oh I posted chapter 2 okay, check it out if you want, I also added quite a lot to Wraithfate v2 and there is a fighting, eating, cooking and health system thats really useful! (I don't remember all that much from yesterday) Okay, so then I waent to swimming (why I coyuldn't write this yesterday) and there awas a massive traffic jam! we where a bit late XD, but I did thirty lengths so I'm defo improving, I go swimming every Wednesday<br/>
|
||||
Okay so Today:<br/>
|
||||
I was suposed to take a Work Experience form into the place I'm gonna go tofay, but I couldn't get one! looks like it will have to be Friday lol, so I actualy added the fighting, cooking, eating and health systems today, but I didn't remember whta I added yesterday, so I wrote that haha, My new perscription goggles arrived and I made a new Discord (and all other) profile piccture, I will update a bunch of stuff, so yeah, errrr, not much else happened toda I dont't think, oh actually, I started watching the Santa Clause new show on Disney Plus and it's pretty good, It thought some of the times seemed inconsistent and yeah, but I though it was really self aware in the way they where mocking PC a bit, but not offensively, I'm really confli - hand cramp - cted about it, so I'm really not sure haha, ok that's today.<br/>
|
||||
Goodybe!
|
||||
<hr/>
|
||||
<h3>15/11/22</h3>
|
||||
I've improved the whole system with displaying arrays as images and it's a lot better, it's not totaly done, but it seems well, but I'm writing this as I ask the forums how to fix my problem so yeaaah I have also added a it to chapter two, sop I hope there isn't too long left, I know that it's taking a while, but I don't think anyone really cares tbh, ermmm I didn't do much else I suppose, week days are pretty boring haha, I don't really know what to say, oh ok, I realised that I haven't been playing any video games as of late, I still play a bit, but I spend my time a lot more productively, although I still just sit oon the computer haha.<br/>
|
||||
Ok bye, that's all for today, look out for chapter 2 soon
|
||||
<hr/>
|
||||
<h3>14/11/22</h3>
|
||||
Ugh, I'm late today, I joined Seamus Gormans patreon today, and am binging his videos, I also finished watching Fawlty Towers too and it's really good not much else really happened today though, I had to look for fake guns and knives in Police Cadets and am still waiting for my Batman comic >:( errrr, yeah I don't know what else has happened today ahha I mena, I coontinued to make WraithFate better, but I haven't had much freetime today soooo.<br/>
|
||||
Goddbye, I guess
|
||||
<hr/>
|
||||
<h3>13/11/22</h3>
|
||||
I haven't done that much today, I got a Fawlty Towers series 1 and it's funny as ever haha, after that I started watching Clone Wars (again) and it's really fun, I'm currently on series 1 episode 10 Lair of Grievous. I also got a new pencil case for scholl, cause my last one was falling apart, haha, WraithFate it coming along great, still nowhere near done though, I also played a bit of GeoGuessr and have to waith between each round >:(, When I play GeoGuessr, I like to use Google, although I have to get within 10' for it to count as a success, so it's still difficult, just I'm allowed to look up locations as if Iw as dropped randomly and have a phone/laptop/internet weilding device, so yeah, Iplay it differently, but it's not like it's a multiplayer game (when I play). Other than that, I just programmed Wraithfate v2 more haha.<br/>
|
||||
That's it for today cya.
|
||||
<hr/>
|
||||
<h3>12/11/22</h3>
|
||||
Woah! I did a lot today!!! Firstly, I forgot to mention that I was going to Comic Con, and it was really good! I got some LOTR figures, one of a Nazgul and one of a Rider of Rohan, They where £5 and £6 respectively, I also got a small metal figure of Steve from Minecraft, and also a Star Trek TOS of the engineer, so it's red, I also already have a science officer blue one and they are the same type, so They are really similar except the bits that are meant to be different. I got some sweets too they are called "Taffies" and they are pretty good haha, there are so many colors or flavours XD. I saw Emporer Zurg, Davros, Daleks, Loads of Vaders and tons more, it was really good, there where also so amny posters which i would've gotten if I had the money :'( Oh yeah, I also saw a massive TARDIS which was nce, there where loads of Dr. Who figures including Rose, the Brigadeer, Mickey and more, I saw a mouse pad that was really cool as it was the map of Middle Earth and I really wanted it but it was £29.95 soooo yea. Before Comic Con though I did a 5K and that was pretty good, got not much to say about that I do it every Saturday, after Comcic Con hough I have just been working of Wraithfate v2 more and made proper button textures so that's cool! I also published a video of YouTube where I show some of the features I've made so far! it's pretty awesome! Go watch it on my channel, and I think that's it...<br/>
|
||||
Ok cya dudes!
|
||||
<hr/>
|
||||
<h3>11/11/22</h3><img width="20" src="https://freepngimg.com/thumb/symbol/92148-flower-red-remembrance-poppy-day-armistice.png" alt="Image of Poppy"/><br/>
|
||||
I've improved Wraithfate version 2 masively today, and seeing as it is the weekend now, I will hopefully improve it even more, warning though it takes far longer to program that v1 so it won't grow as quickly, but should be higher quality. Today was the eleventh of November so we had the minute silence and it was pretty cool, I didn't actually realiose it was going to happen so the bell rang (to say it was the silence) and I thought it was the end of the lesson XD so I got up before I realised it was the silence, it was sort of embarassing, but I don't think people saw haha. I returned my library book about Java Script even though it was due on the 1st of December. You can see, I added an image of a Poppy here, I think i will continue to do this on importand days as to show what day it is when quickly scrolling, and just to remind you XD. Ermm I don't actually know what to talk about haha so I guess I will leave it there.<br/>
|
||||
Ok Goodbyeee!!!
|
||||
<hr/>
|
||||
<h3>10/11/22</h3>
|
||||
Ok, I've done a bit today, firstly, I started on version two of Wraithfate, the original is still playable, but now I've started making one that is a lot better, firstly, it uses mostly buttons so that you don't have to ttype for everything, it's a lot cleaner. I also plan to have images and stuff in it more, but I haven't added much yet as I've been doing it for only a few hours, man coding is slooow, I'm watchng a video about making stuff in Scratch 1.4 and it's pretty cool, I also finished Derry Girls and it was pretty good I hope more episodes are coming out! I carried on watching Star Trek Next Gen and it's going good, okay, now I'm watching a video about ranking all Diary of the Wimpy kid books ooo. Ok, so the Wraithfate, yeah it's going good and now I don't know what to say sooo oh yeah I added a bunch to chapter 2 and I think it will come out in a few days or so.<br/>
|
||||
Ok bye, I thouigh I had more to talk about XD but aparently not :(
|
||||
<hr/>
|
||||
<h3>09/11/22</h3>
|
||||
I had three tests today!!! I had RE, it was pretty boring as it was just essays and stuff, I did sciece, which I got 20/30 in and it was just a checkup, and in Maths, I had a big exam, it was fairly important and I think I did okay, I have some extra time because we had a lockdown drill in the middle of it XD it was pretty annoying but it gave everyone the chance to exchange the answers. After school though, I noticed that Seamus Gorman had a stream planned, so I set out to watch it, I saw most of it, I started about 25 miutes in and at one poitn, I had to go eat so yeah, but the stream was really good, and I subbed to Seamus Gorman, he dyed his hair blue in this stream, it was pretty funny. While watching the stream I played RuneScape and got about 10 gold nuggets to go towards the prospector trousers in the MotherLoad Mine, but still need a lot for the full set >:( aaaanyways, as it was Wednesday, I went out swimming at half seven and I think I've improved a bit, I did eleven lengths in fifteen minutes so I though that was decent (for me anyways). uggh I don't know waht to talk about, errm , ok I will continue on chhapter two, yes I'm stil working on it and no it's not very good haha<br/>
|
||||
Ok goodbye all
|
||||
<hr/>
|
||||
<h3>08/11/22</h3>
|
||||
I've actually done quite a bit today, well not in the morning, then I just added a bit to theunderland.co.uk but after I got back from school I just played about with Excel and it's really fun! I made a ton of graphs! ooo they're so fun, I made like 20 ahah, I finished watching The Dark Crystal last night btw and it was really good hehe, I then started watching the prequel series again, oh oh at school I started on my GCSE coursework, we were meant to do 1-1.5 pages about how we were gonna respond to our breif but I did 4 pages haha, ok I know I'm jumping around a lot I just did quite a bit and I'm in a bog rush... ok so in Dark Crystal it's really good, i forgot about the funny Podlings XD and yeah, it's pretty creepy, wow skeksis's are wird looking, especially since they are puppets. I played around with all the office apps, because my antivirus is a bit weird it thinks the individual apps are some kind of virus maybe I'm not too sure, but they haven't worked since I got it, but office app still works, unfortunaly those ones arent as good as the normal ones as they are the same ones as the browser ones >:( so I redownloaded the office apps and messed around with them and the shortcut ect.. for a while and got them working, well all but Word, which is annoying aas it's pretty good, I still have Notepad++ though and I think that's sometimes better due to the language options for coding and stuff, although in Word, you have a really well made autocorrect system so I guess they're pretty different. I got all the other ones workig though for the most parts, I don't actually know how to use any of them except power pont and Excel so that's why I was playing on Excel graphs for ages today ahahha<br/>
|
||||
I've actually written quite a bit today ok so bye
|
||||
<hr/>
|
||||
<h3>07/11/22</h3>
|
||||
Okay, I just uploaded v.2 of <a href="http://theunderland.co.uk">theunderland.co.uk</a> and now I just need to finish off all the character descriptions ect... I found out that in HTML, you can change the colour of highlighting using ::selection and it's cool! I'm watching a video about wheather Mr Bean could kill Superman and I mean it's definatly a stretch but it's really funny, caliming Mr Bean is an alien and stuuf (the animated series isn't cannon >:( grr) errrm ok what else? oh yeah, I went on patrol with Police Cadets and collected money for Poppy Day haha it was fun, collected a bit of money too, wowww!!! I just saw a super disturbing picture of Manny (diary of a wimpy kids) oh sorry, that came out of nowhere, ok so I'm watching Dark Crystal on Amazon and it's really fun, I've watched the prequel, I don't know if I've seen all of it though as my NETFLIX ACCOUNT WAS DELETED >:(((( uggghh it was so annoying!!! I got the Force Unleashed on Steam, I've already played it on PS4 Now but I've not played it on PC and it's good, better than I remember, I feel so OP haha, wow SCP-3812 is OP just heard about it in this video haha<br/>
|
||||
Ok that's it for today goodbye!
|
||||
<hr/>
|
||||
<h3>06/11/22</h3>
|
||||
Hey, I saw the fireworks display today, and they started 14 minutes and 21 seconds late! seriously, I hate when people are late to these kinds of events >:( on the plus side, the display was amazing, there were all sorts of colours and shapes filling up the sky. Also, another positive is I discovered that if you do: <img width="200" src="../../images/underlandReturnButton.png" onclick="history.back()"/<, you can make an image returnyou to the last page you were on, how awesome is that, never knew you could do that in HTML, don't know why I'm surprised though aha, I just installed an extention to FireFox which makes it look wooden and is basically like a texture pack, and I really like it, I did more work on my Underland Wiki today, and made a lot of progress ahaha! Wilson just IDED in Friday night dinner!!! WOW weird! I mean, I've already watched this part but it's still really sad am I right. errrm, right I'm gonna go carry on with my underland website ok<br/>
|
||||
CYCYYAYAAAA byeyeye
|
||||
<hr/>
|
||||
<h3>05/11/22</h3>
|
||||
Well, it actually IS Bonfire Night today, we didn't see any of course, I mean, obviously the bonfires are tommorow, you know the poem, remember remember the day after the fifth of november aha. I leveled up my mining level from 61-63 and I finished the James Bond film! guess what, SPOILERS: James Bond dies, I mean, you probably know that, but still. I realised that I never expressed my views on the newest Doctor Who episode, so here it is: I thought the start was unexplained and a bit weird, the grapics in thee train scene where also pretty shit, okay and the story was alos rather shit, I mean why does The Master need this super complex and random, why is he Rasputin too! okay, so why did The Master regenerate into the Doctor if it was still his body, an evil Jodie Whitikar would've been really cool! But, all the companion cameos where really fun! At the end you even see Ian, the doctors first companion (along with Barbara and Susan) also, Ace and What's her name where cool I suppose, Graham and Ace had good chemistry. I thought it was weird that the Dalkes where there as you could just replace them with CyberMen and you wouldn't notice! I thought the scene where the Master dance to Rasputin by Boney M was funny and also cringy! This episode was VERY fan-servicey, and I loved it, the story was bad and randomly complicated but other than that I suprisingly liked it and the David Tennent at the end was so shockinbg I jumped up in my seat, well sofa, and then the teaser trailer for the next special was so epic!<br/>
|
||||
Ok, I just got a prospector hat and goodbye
|
||||
<hr/>
|
||||
<h3>04/11/22</h3>
|
||||
I watched James Bond for the first time, I haven't finished it, but it is really good! It's the most recent one called "No Time to Die" and that's why I'm actually writing this on the 5th Happy not yet Bonfire night!<br/>
|
||||
Remember, remember, the 5th of November,<br/>
|
||||
Gunpowder, treason and plot.<br/>
|
||||
I see no reason<br/>
|
||||
Why gunpowder treason<br/>
|
||||
Should ever be forgot.<br/>
|
||||
Guy Fawkes, Guy Fawkes, 'twas his intent<br/>
|
||||
To blow up the King and the Parliament<br/>
|
||||
Three score barrels of powder below<br/>
|
||||
Poor old England to overthrow<br/>
|
||||
By God's providence he was catch'd<br/>
|
||||
With a dark lantern and burning match<br/>
|
||||
Holler boys, holler boys, let the bells ring<br/>
|
||||
Holler boys, holler boys<br/>
|
||||
God save the King!<br/>
|
||||
Totes not just copied amd pasted that ahaha, Ok I don't really remember what else happened so ya<br/>
|
||||
cya
|
||||
<hr/>
|
||||
<h3>03/11/22</h3>
|
||||
I decided to change my filng format to dd,mm,yy rather than my old ddmmyy which is annoying. Ok so tis morning, I got locked into my house, so was really stressed, I got 15 minutes late to school :'( aggghhh, it was so stressful!!! and on top of that... I ate a ferraro roché and didn't eat it perfectly, you know what I'm talking about! I went round the Library and tried to log onto the computer there, turns out you need to book it, so I just decided to do my Computer Science homework, I found a book about Java Script, there's a CD-ROM disk in the back of it and my anti virus detencted some viruses in it like whhaaat, it was an official book, it's weird, idk why haha, I'm gonna tell the library when I return it. I'm watching the inbetweeners right now and I'm on episode 6 of season one, that "cool" guy just said he'd rip out Will's throut aha<br/>
|
||||
I think that's all for today, goodbya
|
||||
<hr/>
|
||||
<h3>02/11/22</h3>
|
||||
I wasn't able to write this log yesterday, as I was going swimming and forgot to do it earlier, then I went to sleep after swimming as it was late, I am going to write this from the perspective of me yesterday so I'll still say "today" meaning tommorow. So today, I really didn't know what to play, Minecraft? GTA? RuneScape? I dn't know, I endied up just playing all of them XD, GTA seems to have a really slow response time so that's f*cking annoying! I press 'd' and turn like 50m after the place I'm supposed to turn >>>:::((( aggrgagrg, so I couldn't play much of thta, also RuneScape, oh wait before I forget to say, I am working on chapter 2 of the book, just reallly slowwly ahaha it'll release eventually, Ok ReuneScape, so I played a bit, got a load of XP then left, I have no longer got members, as it ran out, I wont refresh it until I need it haha. Minecraft, I playd a bit but again couldn't reallyt enjoy it for some reaseon :(. So I had Orthodontist today, so I only went in for half the day :D 3 periods! epic, I'm running out of time here, ermmm I went swimming at about half 8 as lanes were open then yay, I think I sort of hae the hang of this whole swimming nonsense XD<br/>
|
||||
Ok that's it, I running out of time, =this is kinda rushed, ok byeeee
|
||||
<hr/>
|
||||
<h3>01/11/22</h3>
|
||||
Got a new moniter yay, now I can use both moniters for PC haha, erm I got Srusador Kings two on steam and it's pretty fun I guess, wow, Ive not done much today >:(, I'm watching avideo about why Kung Fu Panda is so good, and I kind of agree to be hosest lmao, ok so that's basically it, didn't do much today<br/>
|
||||
Byeeee
|
||||
<hr/>
|
||||
<h3>31/20/22</h3>
|
||||
Ok, this is gonna be kinda rushed but, HAPPY HALLOWE'EN!!! Yay, I guess, I mean the only hallowe'eney thing we did was eat sweets, and they had this "spooky" wrapping, I got GTA5 on my PC and it is really fun! The graphics are not too much for my PC surprisingly, no even any lag. I hosted a Lord of the Rings quiz and some of the questions where really hard actually, I think if I wasn't the host and actually participated, I would of gotten somewhere between 20 and 25 out of 30, so I would f done OK, but not that good for a LOTR fanatic XD, I don't know if I've ever actually mentioned that tbh lol, I love LOTR. I'm watching Lateral by Tom Scott and it's pretty fun and stuff.<br/>
|
||||
Ok, that's iut for today, cyas
|
||||
<hr/>
|
||||
<h3>29-30/10/22</h3>
|
||||
I forgot to post yesterday :( probably cause not much happened, today though, I started playing GTA online and it's really fun! unfortunatly, my display port wire is broken >:((( and I hatee it means I can't play PC game if I want to watch YouTube/Netflix/Iplayer/Disneyplus/erm other thingy<br/>
|
||||
Whoops, that's it for today (dunno why I said whoops lol) k bye!
|
||||
<hr/>
|
||||
<h3>28/10/22</h3>
|
||||
I didn't do much again today, man I love half terms XD, I went swimming and did front crawl or whatever haha. I played Halo, and a LOT of GTA5, I finished the main campain I think, there was like a credits thing haha, I'm watching PeepShow right now and I just got onto season nine. I also really want to finish chapter two, but keep forgetting >:( ugh, what to talk about, what to talk about??? Erm, I played Halo, I already said that, oh right, I had a pizza and chips and they where really nice, it was a pizza express oven thing, from chilled, gas mark seven haha, that's the life, K I'm gonna go write chapter two, and maybe play a bit of Halo<br/>
|
||||
GOOODBYEYEEAHW
|
||||
<hr/>
|
||||
<h3>27/10/22</h3>
|
||||
Ugh, I didn't do much today XD, I just played GTA5 all day aha, I also watched Star Trek and am almost on series 3 (Next Gen) GTA is on sale on steam, so I think I'm gonna cop it lolit's only £12 and I should be able to use MODS yay, you can't do that on PS4 ahah, I forgot to remove auto renew on WoW, so that's annoying :( as I've stopped playing it recently, and RuneScape, I'm kinda inbetween games at the moment >:( but I'm enjoying GTA on PS$ so on PC it might be good, I might also try COD.<br/>
|
||||
Ok, that's it for today, I ate chips nice ok bye
|
||||
<hr/>
|
||||
<h3>26/10/22</h3>
|
||||
I went to Warwick, as I previously mentioned, and went on a walk/tour of the place, there was a bridge over the River Avon and you could see a view of the the castle, whoops write "the" twice XD, it was labeled as the "best view in England" which, while it was EPIC, I wouldn't totally agree with, the view from the top of the Shard was also really good, also, there is a hill in the Lake District which a=has a very good view of Windermere! The tour said to go into the horse & carrige drive way, but we couldn't as it was closed sooo... ha, instead we just went around it and skipped that part, we also saw the leycester hospital, where people live now, it was also pretty cool with timber structure and a large wooden doorway. There was a pizza express... Someone had a garden open right next to the castle, like metres away, and it was such a good view, maybe that's the best one ahaha, it was only £3 aswell! I went to a charity shop and saw the extended editions to Two Towers AND Return of the King, now I've already seen both of them, but these have TONS of extended features and documentaries, there are two disks for documentarys for each film (so 4 total) and each disk contains HOURS of content! I've been watching it since 6 (10 now) and still haven't finished the first of four disks! I'm so hyped wtf!!! I'm tring to get the worldbox acheivement so will leave it on overnight :) but today I mostly played GTA on my PS4 and I shot down a freaking plane to get it's carge haha.<br/>
|
||||
ah well I guess that;s it for today :) hope you all have a good time, goodbye!
|
||||
<hr/>
|
||||
<h3>25/10/22</h3>
|
||||
I went swimming today, I haven't been for ages so I'm a bit rusty, I had to re-learn breathstroke haha, I think I'm getting better ;) I forgot to do this blog thing earlier so I don't have much time D: I unlocked all thye traits for the trait editor in WorldBox using Workshop worlds which can help unlock them, I gave them an upvote! I also tried to get a few acheivements and I am trying to get "Life is a sim" but it requires me to leave the game on for 24 hours :') haha, I'm actually playing right now, lots of battle and wars yeaaah, man I love the fammily tree mod. I also played a ton of Minecraft today and made a villager... erm thingy basicaly a prison where all they can do is trade with me and breed ermmm, yeah that's normal hehe. I have a villager with Mending, the best enchantment, but the first time i attempted that I accidently made it depth strider rather than Mending so now I have 2 depth strider book XD welp, that's it for now I guess, gonna play a bit of WorldBox then sleep zZZZZ...<br/>
|
||||
Byeeee!!!
|
||||
<hr/>
|
||||
<h3>24/10/22</h3>
|
||||
I played a ton of WorldBox today, I got a new mod called FamilyTreeMod and it's soooo good!!! You can see an entire family tree, so if you start with just one character, everyone else descends from that one person (World Box people reproduce Asuxually.) I also Played Minecraft, I made a new wordl with the seed "DeaDvey" and there is a mountain right next my house, I built a watch tower right on top of it XD, right now I'm dual weilding Notepad++ (text editor for my blog) and finding Chickens in Minecraft haha, also btw I will give my review of Doctor Who newest episode next Sunday, so everyone can watch it. I also played Trackmania, but didn't manage to beat my record on A0-7 so :( I did however manage to connect my PS4 controller up to Trackmania nd play with that so yay, I watched a YouTube video about the full history of Halloween (film franchise not paegan festival) even though I've never seen any of them. I can feel my index finger skin peeling off as I write this haha, I think that's an exadgeration but it does hurt so who knows hehe owwwwww. I am finally continuing to watch Star Trek Next Gen and am on S1E22, so I was watching Star TRek through ages ago but stopped and am now continueing, I didn't watch 22 episodes in a day (I wish) Rishi Sunak was made PM today, I think he'll be better than Liz Truss (our now shortest ruling PM) but still Tory so bleh, also fun fact now is the first timne since 1952 that we haven't been ruled by an Elizebeth as Liz is short for Elizebeth and we used to have Queen Elizebeth (RIP) wow, I've used a lot of Brackets today haha.<br/>
|
||||
Thta's it for todayz haha, Live long and Prosper
|
||||
<hr/>
|
||||
<h3>23/10/22</h3>
|
||||
New Doctor Who episode aired today but before I get to that, I spent practcally all day playing Trackmania and I got a 27:46 on A0-7 and I'm now 440th on the leaderboard I think aha, I didn't play any Minecraft but now have like 25 hours on Trackmania, I've been watching a lot of Wirtual. So I set an alarm for 7:20pm so I could watch Doctor Who and I remembered anyways, I tried to get it on the telly but I had a weak or no signal, played around a bit and couldn't fix it! I figured out I could watch it on BBC Iplayer so that's all dandy, I was sooo good, I don't want to spoil it thopugh so watch it here: <a href="https://www.bbc.co.uk/iplayer">Iplayer</a> After I watched Dr. Who I realised my alarm had been going off for an hour and a half XD, not much else actually happened today so ya, Doctor Who goood, Trackmania goood, err, oh yeah Youtube isn't working on FireFox so I had to watch on Edge, so FireFox baaad.<br/>
|
||||
Goodbye all have a good time!
|
||||
<hr/>
|
||||
<h3>22/10/22</h3>
|
||||
Today I went to Worcester but first I went on a run, 5k (3m) and I got a decent time, I think it's my 72nd time going to Parkrun, I'm exited for the 100 shirt, but that'll be a while still on the way to and fro the park I listened to the Undertale soundtrack on CD. After this I played a bit of Trackmania and then went to town on the bus, I took the train to Worcester and when we got there, someone put something in the bin and the bin said "Cheers mate!" and I was like whaaata, the bin speaks lmao, I got some chips and panini at a café called Poppins and also had a cherry pancake and it was pretty nice, I then went to the comic books hopp, but before I got there I saw a CEX and went in, I got a solitare game for my DSL and it plays pretty well, I then went in the comic shop, I saw some Doctor who Big Finish Production CDs, but unfortunatly they were rather pricey so I didn't get any, on top of this, I saw The Dalek World, which I recognised as I have a poster of it in my room, it was £75, I didn't get it. I then looked up where WaterStones is and was shocked to find that it was just over the road XD I am so blind, I went in and as they where rearanging, the genres wher mixed up, books about stalin in cooking haha, anyways I found an awesome book about tolkein and it's basically a super in depth encyclopeadia about Tolkeins Legendarium , it was £25 and I got it, It. Is. AWESEOMNEMEME!!! Then I went to the Commandery which is a Civil war museum, I could really rant about that but I don't have much ime so: They had a typewriter, a cool medieval painted roof, a super old foundation, a cannon, a parlimentarain dress up thing and a super old rug. I went back to the train station whilst picking up a Sooubway and binned something to hear the talking bins it said "Thanks!". On the return journey, I played solitare and then went home, I played a few hours of trackmania and got an author medal so yeayyy!<br/>
|
||||
That abou brings you up to date Cheers Mates!
|
||||
<hr/>
|
||||
<h3>21/10/22</h3>
|
||||
Yeeee! It's half term now! getting closer to Hallowe'en! I'm exited, I hear Hallowe'en is a lot bigger in the US but idk, we get about 10 trick or treaters on Hallowe'en night! Ok, I'm gonna research it now, I'm watching a YouTube video about it, I'll finish it off when I've finished the video. Ok while I'm watching; I am making a maze in Minecraft and i've almost finished the layout, I still have to mkae it 3-4 blocks high (Haven't decided) After school, my friend had to do some French thing for 5 and I waited, we walked back together, I split off to go to the library and refreshed my library card so I can take out books in the future, while writing this I can hear a zombie dying and it's kinda disracting XD. Ok anyway after I got home I looked for some revision cards for a science test after half term so yayyay (not) There were'nt any so I went ot (in the rain) to get some, I found some in WHSmiths for £4! so I got those, but I didn't actually know if I had that much haha so I had to go home to check, then back out once I knew I did, but I checked other shops like ASDA, Wilko's, The Works and Poundland. Ok so apparently USA just goes bigger out on all holidays so liek CHristmas and probably Easter too, that makes sense, they do be a bit crazy (disclaimer, Americans are not crazy (disclaimer, I think)) It's been raining all day ughh, at least it's cozier inside when it's wet haha.<br/>
|
||||
That's it for today I think g'day mate
|
||||
<hr/>
|
||||
<h3>20/10/22</h3>
|
||||
I had the same breakfast as yesterday :D and it was nice as ever lmao. There was a fire alarm at school and it was raining so we had to stand out in the cold rain haha, I wasn't actually that bad, although I didn't have a coat, it wasn't too wet, I arrived at school just as the whistle blew so that was lucky, I always leave home at just the right time, and today it was perfect!!! It's been a while, we didn't have assembly so that was good, I hate those, just end up talking about knife crime and stuff, which is important, but like pretty boring too, we always do that, I swear! I played D&D and we almost got to the big boss, but we were fighting the Trogolodytes, there were 10! that took most of the session XD after school I went to the local library and finished Gregor and the Prophecy of Bane and so I was finishing that off, I guess it's onto Curse of the Warmbloods now, the ending to Prophecy of Bane was good as ever, but I though he told Mrs Cormaci about the underland at the end of that one, but it must be at the end of Curse of the warmbloods, that'd make sense I guess, I'm planning on making a labyrinth or maze type thing in Minecraft, and actually whilst I'm saying this it sounds like it's influenced by the labyrinth in TUC but it's actually not haha! I just realised this lol, I ate chips with a copious amount of salt and vinegar, sooo nice also curry sauce, that was delice, how do you spell it, lemmie look that up. Ohg (just saw this mispell) it's spelt "Delish" that makes sense" ok I think that it for today haha<br/>
|
||||
Goodbye all! see you tommorow! (I tried to do ctrl+1 there)
|
||||
<hr/>
|
||||
<h3>19/10/22</h3>
|
||||
In the morining I ate: nutela toast, apple slices and some apple juice (Apple reigns supreme >:). At school I, no the whole class got Rickrolled by the teacher and it was hilarious, I think those first six notes strike the most fear into any sane person. duh duh duh duh dun dun duuuu oh wait no that's seven lmao. Some people in science had a big argument around me and I just sat there haha it was kind of scary... I didn't play much Minecraft today, I got a new game which I don't totaly understand called "World History Sim" I also played a game that I saw on Drew Durnil called "Ages of Conflict" and that one is really fun, you basically add loads of kingdoms to a world and they grow and fight to take over the world and it's really fun haha. I might play it now but I'm about to go to sleep, I updated the TUC fan-site a bit but haven't put it public yet, it's getting close though. "Ages of Conflict" is similar to WorldBox but more modern and you can't see the individual troops just an overview. I also made a Minecraft server but it's not that good hehe.<br/>
|
||||
Ok that's it today cya people!
|
||||
<hr/>
|
||||
<h3>18/10/22</h3>
|
||||
I didn't do much today, nothing is coming to mind, Just watched YouTube and Blackadder, welp, this is depressing. I finished a cool tower in Minecraft and carried on using LOD so it looks pretty good. saves a lot of resources<br/>
|
||||
Wow, I have nothing more to say, cya!
|
||||
<hr/>
|
||||
<h3>17/10/22</h3>
|
||||
Because it is Intensitive week now I didn't go to my regular Police Cadets and that meant I had more time to do my French Homework and watch Blackadder, I also watched a youtube series where someone reacted to MapMen videos, which I love, and that means I can watch all the MapMen episodes every day. HAHA I forgot how funny Percy was lmao, I'm on Blackadder ii btw, although it was my least favourite one of the four, I still really like it! Stephen Fry is also really funny, I think I first saw him on QI, and now it's Sandy so yeah, that's sad :( On top of all that, I got a Minecraft mod that takes advantage of LOD and that means you can load far more chunks, still with the same performance, thay do this by not showing the full texture of things further away, meaning your game isn't loading every single individal pixel on every texture, which is very memory intensive, actually most games do this which is why you can see much further without lagging in games like GTA or Breath of the Wild, I'm surprised Minecraft doesn't do this alreaddy, it would be a great improvement to the base game, I think. btw, I highly recommend, when binging TV shows, which is most of what I do, watch it on 1.5x speed, so you can watch a 20 minute episode in 15 minutes. That's it for today peeps (never said peeps before XD) goodbye!
|
||||
<hr/>
|
||||
<h3>16/10/22</h3>
|
||||
i started having to use FireFox, in advance of Manifest v.3 and it's quite nice, looks very different to Oprah, cause Oprah uses the same API as Chrome I think. Anyways I started re-watching Blackadder, and the Theme Song rocks as ever, Blaaackaddder blaccckk addder, he ridddes a pittch black hoooorse! Yeah it's really good! I dug out an entire chunk in Minecraft and started making a lake-side house. I made a new Regalia in Minecraft called Regalia v.2 and I have tons of additional ores now for more immersion, idk if I mentioned it actually, also I removed Xaero's map and used JourneyMap instead as I prefer it, you can look at it in a browser.<br/>
|
||||
I think that's it for today haha cya
|
||||
<hr/>
|
||||
<h3>14/10/22-15/10/22</h3>
|
||||
Ooooh, this is quite overdue! I was very busy, but you may be pleased to know that I got the commenting system working late last night and it's super cool! It works across computers, I hope it doesn't get bot spammed though :( Ok, I just found an unlisted London Unfinished episode, it's really cool! THIS IS LIFECHANGING!!!! Anyways, I made a Minecraft world called Regalia and it's basically where I live in a cave and have to be self sufficient and not go up to he surface like the Underlanders, I haveto kill spiders for beds >:( I also have a mod that adds ores and things to the game for more underground imersion haha!, and ways I think that's mostly it for the last two days, it's sort of hard to remember haha!
|
||||
<hr/>
|
||||
<h3>13/10/22</h3>
|
||||
I haven't played Fortnite Save the World in ages, I'm going to help someone on my server do pre quests for MSK, so Im pretty pumped, It's Fortnitemares and I'm going to save up for Gravedigger as people say it's pretty good, although I already have the Mythic weapons so yeeeahhh idk, wow the Mythics are so OP! accept the hammer lmao. Ok so I wrote that last bit before the game and now it's half hour later, so I kept freezing >:( and then I lagged out, I forgot that used to always happen haha, but I got to play with my mythic toys again, and save some survivours of course. I bought the Undertale Soundtrack as I wanted a download copy haha, idk why but, even though I have them on Spotify, it's so much nicer having the digital copies lol. As you know, I played some Fortnite which was nice as well as some Minecraft and, no WoW surprisingly (Yes I've started abreviating it) I made a favourites folder too. I finished reading TUC Gregor The Overlander and moved onto The Phrophecy of Bane and it's good! My favourite is Code of Claw for sure though! Well it's getting late I have to go goodbye folks!
|
||||
<hr/>
|
||||
<h3>12/10/22</h3>
|
||||
Well... Alot more happened today than yesterday, you'll be pleased to know haha. Firstly, I was just chilling playing Minecraft when, disaster! I noticed it was half past eight and I had to leave now, I rushed up to get changed and had no time to brush my teeth so just rushed out the door, luckily I wasn't late so that was good, but phoor I was scared. I only actually went in for two periods as I had a doctors appointment, so at break time I just signed out and left, it was so fun haha, I was playing Minecraft whilst everyone else was doing Maths lmao. Aaaanyway after the appointment I carried on playing Minecraft and started a new building, I also played some World of Warcrfat but only for a few minutes so yeah, I redownloaded Battlefront ii EA and it still didn't work, It's so annoying :( I still don't know what the problem is >:(. Wow! I felt like a lot more happened today but I can't think what to write aha, Right now I'm watching a documentry about Netflix and it's pretty interesting, there're story is full of ups and downs, Wow Blockbuster really flopped huh, I remember it, and it's still a phrase to say "Blockbuster film" so lol. Ok That's it for today, I gotta go now cya!
|
||||
<hr/>
|
||||
<h3>11/10/22</h3>
|
||||
Well practiaclly nothing happened today, how where you, haha. I made pancakes they where pretty nice I had two, with lemon and sugar and also I... cut the lemon, yeah interenting. I played Minecraft and finished my tree farm it's pretty great, took ages to make haha. I got a few new mods on my new installation, AppleSkin, Fullbright and Just Enough Items, haha they're pretty great, FullBright is greeaaat! I did my homework, OMG today was so boring nothing happened, I think I'm gonna start writing chapter two of my thing so yeah cya.
|
||||
<hr/>
|
||||
<h3>10/10/22</h3>
|
||||
Today Was quite stressfull XD I couldn't do my homework so I did it after school and hope my teacher doesn't care. We did a bleep test and we had to get to level 5.2, I was the only one who got to it haha I was surprised especially as I was wearing a backpack that was kind of heavy, I was proud with myself, I think once I got to level 13.3 so I wasn't too worried, although that was using a different sized field and different bleep system, you could just walk on the first couple XD. Anyways I didn't play any World of Warcraft today but I did play Minecraft actually right now, it's really lagging though so am kind of afk hehe, I published my story at <a href="https://www.fanfiction.net/s/14146567/1/Gregor-and-The-Prophecy-of-Sand">The-Prophecy-of-Sand</a> and no one has actually read it yet, though I did put it on the Underland Subreddit haha getting it out there, It's not that good but it is my first one and I'm not that good at writing haha I did a lot of homework tonight so I didn't really play much video games 'cept maybe an hour of Minecraft and Plauge Inc (combined) so yeah, less than usual, Plauge inc is doing good, I unlocked Virus as well as a few genes to use to help with the game, I really want this one gene that decreases chances of mutation as that's actually pretty useful for my stratagy haha, I think I'm gonna go now though there's not much else that happened today<br/> cya!
|
||||
<hr/>
|
||||
<h3>09/10/22</h3>
|
||||
Ooooh cool writing this in UTF-8 aparently, hehe, I finished Rick and Morty, how tf did it only take three days??? (binge watcher am I right???) Anywayyy I started continueing watching To-Ra-Do-Ra and I'm on episode 16 not much to say about it right now though it looks pretty good, I havn't really continued writing the fan-fic, maybe I'll do that right after this haha. Oh I started playing Minecraft after a looong Hietus, Playing CubedMC and a lot has changed maybe I'll carry on making Youtube videos on it :) taht'll be fun I suppose. Also just FYI I removed the Games and Anime pages on this site about a week ago, the pages still exist you just can't link there, they're kind of pointless as I can just put all that on this page. I got Plauge Inc. and killed the ENTIRE world, it's really fun, you're basically a disease and you start with one infection and you have to kill the world, the tactic is to just spread to everyone without them noticing then eveovle stuff like totla organ failiure and shit haha everyone suddenly just dies in like a week (in game time) it's really fun! Ok I'm gonna carry on playing Minecraft nowww byywywwy
|
||||
<hr/>
|
||||
<h3>08/10/22</h3>
|
||||
Well today has not been the best, firstly I went on a run which was ok then I played World of Warcraft a bit, turns out there's a WoW film! It doesn't seem that good, I'm on the episode of Rick and Morty where there's just a random-ass dragon. Ok the bad bit, My Steam stopped working :(((( I can't play any games, I think I have to reset my pc >:((( I have tried everything but cannot figure it out, I tried re-installing it and everything, I'm sad, I have already backed up my PC so I can reset it at any time, I'm just looking for help now. So I was running this cool ant simulator and they referenced it in a different ant simulator youtube video, what's the chances?!?! actually pretty high, the ant evolution simulator isn't a giant fandom so yeaeeeah I guesss. Well I guess that's it for today really byeee.
|
||||
<hr/>
|
||||
<h3>07/10/22</h3>
|
||||
So I started watching Rick and Morty and it's pretty funny, I think Jerry is my favourite character, I just got to season two episode 3 and they're just bording this random ship haha ok now Jerry is looking for a weed wacker wtf. I also started playing Elder Scrolls Online and it's pretty fun from what I've played so far, and the map is massive, I played a bit of World of Warcraft too and got to level 29, finally!<br/>
|
||||
Also I watched this show called A - something idrk, it was ok but a bit weird. I got this new water bottle and it has a filter thing in it, so I put a lemon on it ;)<br/>
|
||||
I guess that's it for today not much really happened today so that's it for now cya!
|
||||
<hr/>
|
||||
<h3>06/10/22</h3>
|
||||
Sorry I forgot to update it yesterday so I'm updating this the next day, I played a lot of World of Warcraft and did some questing :) I also watched some and that's why I couldn't update it yesterday, I had some cereal so thats yum, and crunchy corner. see here's the problem with updating it the next day: I can't really remember much of what happened so this is where I leave it for today sorry!
|
||||
<hr/>
|
||||
<h3>05/10/22</h3>
|
||||
Well today I didn't play any World of Warcraft, woah weird right? well anyway I started writing that fanfiction I said about and I quite like how it's going at the moment I'm doing chapter one at the moment and am on Paragraph 4 (ish) so it's going well, I started re-watching The Office (UK) and It's so funny haha. I did a quiz about Lord of the Rings and got them all right lmao. Right now I'm listening to Cemetary Gates by The Smiths and ooooh it goood I also started a new save on Cookie clicker I already have 34 million cookies, ayyyy I'm enslaving loads of Grandmas, I have a cookies per second rate of 30K so that's nice. I won a game of Backgammon yeaaaah and I started adding a Boss feature to Wraithfate, the first one is called Brightside as in the Killers song, they're all named after songs haha (gonna get copyrighted ;))<br/>
|
||||
Well that's it for now goodbye all :)
|
||||
<hr/>
|
||||
<h3>04/10/22</h3>
|
||||
Hey, I started using Notepad++ rather than Notepad to write my Blogs and this is the first time using it for this purpose, I've used it for programing server side on my other website inside Filezilla so it's useful for that, I'll let you know how it goes, it's a bit like Notepadbut it is better, it supports stuuf like coding and it's just a lot better in general, for instance I don't have to hit enter every time I want to go onto a new line, the formating is just tons easier and it has way more feautures lmao<br/>
|
||||
I finished rewatching How I Met Your Mother (for the third time) and now I'm watching a clip of every bit on HIMYM content that took place in the future! It's so nostalgic for some reason haha! apparently the latest bit of content is in 2038 even though Ted's telling the story in 2030 lmfa. The ending to HIMYM is so good, I wont spoil it but How Your Mother Met Me is sooooooo gooood!!!!<br/>
|
||||
I didn't play much World of Warcraft but I did get that tabard, it's white with green bits on it. I think I might release some fanfictions on my <a href="https://www.fanfiction.net/u/15593995/">Fanfiction.net</a> account so keep tuned for that, although tbh I might not am not very organised!<br/>
|
||||
I think that's it for now, goodnight everyone time for noodles
|
||||
<hr/>
|
||||
<h3>03/10/22</h3>
|
||||
Last night before I slept I started re-reading The Underland Chronicles and it's so good you should
|
||||
read it. It's about a boy called Gregor who falls to this place under Manhattan called 'The
|
||||
Underland' and he has to complete these Prophocies to help the people of the Underland
|
||||
(Underlanders) and fight against giant rats (Gnawers) with the giant bats (flyers) and giant
|
||||
cockroaches (crawlers), the ending is a big cliff hanger so there is actually a lot of fan-fiction
|
||||
even though the book isn't super popular, it's also written by the same authour as The Hunger Games
|
||||
but was written first, I think I'm on every single public Discord server based on the books lmao.
|
||||
<br/>
|
||||
I got to level 28 with Druid and I got Entangling Roots rank three and Rejuvenation rank five, I
|
||||
also did The Stockade with some people from my Guild and a friend, I completed some Stockade quests
|
||||
and got a ton of exp, I also was fully accepted into Dusk (Guild) and got 5G and a tabard which is
|
||||
pretty cool.
|
||||
<br/>
|
||||
I think that's really all for today, it's getting a bit late though so cya! Sorry it was a bit short
|
||||
today :(
|
||||
|
||||
<hr/>
|
||||
<h3>02/10/22</h3>
|
||||
Today I played more World of Warcraft on both my main and new alt account, on my alt I didn't level up
|
||||
at all but I did train my dagger skills some more and as I was so low I got a lot of levels as I was
|
||||
fightng reletivley high enemies, so I got like a level per hit, my chat box was mad haha!<br/>
|
||||
On my alt I reached level seven and did a few quests, I got summon food as an ability, wow mages are
|
||||
so cool, I think I prefer it to druid beacuse we can summon stuff, remember the log from 29/09/22? I
|
||||
refered to my top three super powers, creation was third and shapeshifting was first, but seeing as
|
||||
the druids shapeshifting power isn't super diverse I think I might prefer the mage to druid, but I
|
||||
will also try out preist, I've made a priest on WoW retail so I sorta know what it's like<br/>
|
||||
I started rewatching Ghosts from the start and also watched a bit more of How I Met Your Mother and
|
||||
I'm now on season nine, I always forget how great the Mother reveal in season eight is.<br/>
|
||||
Anyways goodbye, am going to eat unhealthy cereal and use my new brace brushes to clean my braces cya!
|
||||
<hr/>
|
||||
<h3>01/10/22</h3>
|
||||
Well I got level 27 in World of Warcraft and I started playing this game on
|
||||
Steam called <a href="https://store.steampowered.com/app/1468260/Leaf_Blower_Revolution__Idle_Game/">Leaf Blower Revolution</a>
|
||||
And it's pretty fun, it's and idle game and I'm literally playing as I... type?
|
||||
Yeha, so it's pretty fun, you basically collect leaves and unlock new leaves and
|
||||
speeds and other upgrades and It's kinda addictive ^v^ lmao. In WoW I did a lot
|
||||
of questing, I didn't do any dungeons like usual, But I added this one guy and
|
||||
we killed lots of skellies and ghouls, got a lot of xp haha, I unlocked starfire
|
||||
rank two I also worked out that my best attack is moonfire (dmg/mana) but it
|
||||
doesn't stack so that's a bummer :( I also started a new character who is a
|
||||
human mage and I got a few levels, I helped a guy download Questie, I felt
|
||||
incredibly proud! I watched episodes 1-2 of ghosts season four on Iplayer and
|
||||
it's looking great so far the second one was quite funny. I made a confidential
|
||||
folder just for fun and I'ts legen - wait for it - dary, I added the killer joke
|
||||
from Monty Python to it so no-one can find it ;) It's hilarious I almost died,
|
||||
oh I just though about it again, oh hahah anbiiuo omggg!!! foiagbiayygiiubioung
|
||||
gguhggg<br/>
|
||||
sorry this log wasn't as long as usual, also who loved the ending am I right anyway it's late cya
|
||||
<hr/>
|
||||
<h3>30/09/22</h3>
|
||||
•1.85555<br/>
|
||||
•2.2567676767<br/>
|
||||
Those are my calculations for my HP/Mana for different heal spells in World of Warcraft, I did a pretty
|
||||
tense dungeon, took just over two hours with this pretty awesome group of guys. It was Blackfathom Deeps
|
||||
(I was doing it for the Staff)and it was legen - wait for it - dary. The first boss was Ghamoo-ra, that
|
||||
turtle was pretty easy, but had high armour, I healed the tank, the next was Lady Sarevess, the way in was
|
||||
hard, tons of mermaids and stuff but once we got to the Lady it was smooth sailing. After that we took on
|
||||
Argent Guard Thaelrid, but the teamhad taken him down before I got there, I'm guessing he was pretty easy so
|
||||
That wasn't a big deal but I did turn in a quest by right clicking his corpe so thats a positive haha! We
|
||||
then rounded the corner, came back and fought Gelihast, the room was full of fishmen so it was a bit before
|
||||
we got to it, I healed yadayada we beat it ect... We walked to the next room and. Got. Wrecked. We
|
||||
accidently pulled half the room and it was a disaster, the whole party died when we got back we where a bit
|
||||
more careful XD and we beat it, not without a few more dying along the way but we where revived so that was
|
||||
fine, after taking down Old Serra'kis, who was surpriisingly easy lmao we went on to the star of the show,
|
||||
Twilight Lord Kelris, now for context a few days previously I tried to do this dungeon with just one other
|
||||
guy to try get this staff and we where destroyed, we had to quit, so this was important, the boss was fairly
|
||||
easy but the important bit was the Dice Roll, I was on the edge of my seat and you know what! I won, I rolled
|
||||
a 65 and I beat the Preist who was also rolling need so I was cheerful, contented, delighted, man these
|
||||
synonyms from <a href="https://www.thesaurus.com">Thesaurus . com</a> are not right, I was super happy ok got
|
||||
it. We then went to Aku'mai's lair and it looked like a freaking great Dragon fight it was EPIC! The tank
|
||||
rushed forward and I saved his life multiple times, the boss did a lot of damage! but we beat it and it was
|
||||
cool, then we ported back to Darnassus and I turned in some quests. Other than that nothing particually
|
||||
awesome happened in my REAL life lmao, but it is the weekend so that is pretty cool I love the weekend I
|
||||
might play some D&D idk. Well that's it for today I suppose.<br/>
|
||||
goodbye for now and goodnight!
|
||||
<hr/>
|
||||
<h3>29/09/22</h3>
|
||||
Woohoo, I got level 25 in WoW, half way (level speaking) to 50! Next I just need level 30 and I will get
|
||||
the travel form, also did I mention that I unlocked the aquatic form not too long ago, but I'm really
|
||||
exited for the land travel form as It's more useful, I mean, their isn't land everywhere! But also the
|
||||
Dire Bear form sounds pretty cool, also the Travel Form is pretty useful as it's like a mount but you can
|
||||
unlock it at level 30 rather than 40! Well a mount is better but it's still pretty cool, this is why I
|
||||
love th Druid class, also just shapeshifting in general is the best, it's in my top three superpowers
|
||||
I would have if I could have any powers!<br/>
|
||||
•Shapeshifting<br/>
|
||||
•Telepathy<br/>
|
||||
•Creation<br/>
|
||||
If I had shapeshifting and could become any creature, I would totally become a Pereguin Falcon as they
|
||||
are super quick, also fleas as they're super strong and high stamina and they are really small so you
|
||||
could sneak about and knick stuff. Not that I'd rob (I'd totally take the Crown Jewels, not to get the
|
||||
money just to prank the Queen, I mean King now I guess, woah we have a King... weird. yeah so I'd knick
|
||||
it and then give it back and they'd be like woaaaah) haha. welp anyway I'm getting distacted, but I was
|
||||
thinking the other day that if you have Telepathy you can kind of create anything like with Creation, I
|
||||
mean you'd have to know the chemical formula and it's formation, and the elemnts would have to be in the
|
||||
eniroment, so it would be a bit worse but still kind of a cheat sheet am I right? So if I had Creation,
|
||||
I'd create like a massive sword just before fighting a dragon and it would be so cool, cause I could
|
||||
sharpen it with the Telepathy so it's super OP. Well I got to go now so cya folks have a good one!
|
||||
Also this blog is a lot longer than the last I'm trying to lenghten them ;)
|
||||
<hr/>
|
||||
<h3>28/09/22</h3>
|
||||
I'm writing this on the next morning as I was out until late, I went out to the Theatre to see South
|
||||
Pacific and it was pretty good. It was about an American nurse and a French murderer falling in love on
|
||||
an Island in the <a href="https://en.wikipedia.org/wiki/South_Pacific_(musical)" >South Pacific</a>, the French guy almost dies at one point. I also did more questing in
|
||||
World of Warcraft, and I can't remember much else that happened
|
||||
<hr/>
|
||||
<h3>27/09/22</h3>
|
||||
Not much happened today, I made a nice music peice that has a pretty dramatic tune and I think the teacher liked
|
||||
it, said it sounded like a Star Wars track, wonder where I got that from :} Pretty cool for just a two bar loop
|
||||
and a few measly instuments on the board lmao. I got level twenty-four in World of Warcraft (WoW) and I unlocked
|
||||
the next rank in thorns as well as a dispel enchantment and a couple others, I also did the Stockade dungeon and
|
||||
attempted the Blackfathom Deep dungeon, someone was carring me, and completly flopped it XD I was trying to get the
|
||||
good staff as a drop from one of the bosses but didn't manage to get there :(. I started rewatching the Lord of the
|
||||
Rings the Fellowship of the Ring and I forgot how amazing the soundtrack was!
|
||||
Gonna go listen to How I Met Your Music and Spotify so cya later!
|
||||
<hr/>
|
||||
<h3>26/09/22</h3>
|
||||
Whoops!!! So on Friday I left my PE kit in form so today I was going to pick it up from form, all good right so I
|
||||
picked it up in AM form and it was all going well until; disaster struck, like a bolt of ferocious lightning, as I
|
||||
was walking to Music I realised I didn't have it! but I had it during second Science so It was either in second
|
||||
Science or Computer science, after form I went to Computer Science (oh I forgot to mention, I had a club after
|
||||
school I always attend, okay you're back up to speed) I walked past said club on the way to Computer Science, and it
|
||||
wasn't there, so I went to Science, and it was there, but by this point I was walking <u>away</u> from said club and I
|
||||
just carried walking, I forgot to go to the club!!! Well that's a story phew. At least I got the PE kit. I did some
|
||||
more dungeoning on World of Warcraft (Deadmines and Stockade) didn't level up anymore sadly, but I got about 1 [and
|
||||
maybe a half]? gold peices, so that's good. A new season of Ghosts dropped on Iplayer so am going to be watching that
|
||||
for sure! I joined a new guild on World of Warcraft, called Dusk, it's pretty neat.
|
||||
Now, time for crackers and milk I suppose, goodnight!
|
||||
<hr/>
|
||||
<h3>25/09/22</h3>
|
||||
I got to season three in How I Met Your Mother and I saw the bit where ted gets a butterfly tatto I always am
|
||||
surprised at how important it was, I also did some dungeoning with some people I met in The Dagger Hills North of
|
||||
Moonbrook, it was the Deadmines and I got 2 gold peices from it so that was rather profitable from just one run. I
|
||||
also got to level 23 on my main druid account so I'm one level closer to the fabled level 40, am exited to get the
|
||||
mount skill and get a mount, god traveling will be so fast! I was AFKing in Melvor Idle (Great game you should totaly
|
||||
get it) it's basically a text based RuneScape and I got to level 88 in woodcutting, the xp curve is really steep, even
|
||||
steeper than in RuneScape, if I reach level 90 I can cut a new type of tree, idk what tree it is though. I finished
|
||||
watching Lord of the Rings the Return of the King and it was greater than I remembered, my sister cried at the ending
|
||||
which was funny and is now sending me random Lord of the Rings memes lmao, but the Fruit Pastels was delish.
|
||||
Guess this is it for tonight, will play a bit more World of Warcraft before I go to sleep and eat Pot Noodles.
|
||||
;) goodnight...
|
||||
|
||||
Afterthought: Just watched a scene where Ted was playing World of Warcraft lmao.
|
||||
<hr/>
|
||||
<h3>24/09/22</h3>
|
||||
Well, it's been one hell of a day! didn't have to go running firstly as I lost my trainers so that's a plus :) (love
|
||||
not exercising ;)) I did my Maths and French homework and watched three hours of Lod of the Rings The Return of the
|
||||
King (extended edition) and that was pretty nice, my god the Oliphant scene (Chef's kiss) oh and I got to level 22
|
||||
in World of Warcraft classic and that's pretty great I leveled up my wrath ability, moved a sofa around and it looks
|
||||
so different now, it's trippy `o` woah.
|
||||
Well anyways I'll leave it here tonight it's 22:20 here so I'll be going to sleep now goodbye ;)
|
||||
<hr/>
|
||||
<h3>25/07/22-23/09/22</h3>
|
||||
phewwwweeeee!!! been two months, I guess I've been busy, well didn't really do much during the six month holiday
|
||||
but near the end of it I went to Brighton to visit family and we went up the British Airways i360, the view was
|
||||
stunning I could see the wind farms out in the channel and there was a really cool ranbow car outside a small
|
||||
park, I visited a Waterstones and didn't get anything haha, then I went to CEX (Entertainment Exchange) and got
|
||||
Nintendogs nad I made a dog called 'Dave' and I sometimes take him (her?) on walks round the virtual neighborhood
|
||||
:D. Then I went sailing which was 𝔥𝔬𝔯𝔯𝔦𝔟𝔩𝔢 (<\-- that says 'horrible' but the UTF-8 cannot read it, but I'm keeping it
|
||||
anyway as it looks cool in the editor) I ended up just going home as I felt sick from seasickness and couldn't
|
||||
sleep so I was exhausted, eh. Then on the 7th of September something truly dreadful happened. School started back
|
||||
up D: I know right! dreadful. nah it's fine really, the maths is just challenging enough to still be fun and
|
||||
computer science is also really fun! Iah woah! a popup just appeared on my screen lol as I was saying, I have
|
||||
vowed to update this page daily! like I used to, now lets see how long it takes to break it! Oh and I rewatched
|
||||
all of How I Met Your Mother again and it was so good! I'm just gonna say this, and I know it's controversal but,
|
||||
the ending is actually growing on me! (Also I'm writing this in notepad so It's a slightly different format)
|
||||
I'm going to go watch Lord Of the Rings so cya I guess this is it
|
||||
<hr/>
|
||||
<h3>23/06/22-24/07/22</h3>
|
||||
So, errr, I decided to update this page monthly (roughly) and a lot has gone down in the past month that I'm sure you're not interested in...
|
||||
<br/>firstly! I started following the Batman and the Detective Comics line of DC comics from <a href="https://forbiddenplanet.com">Forbidden Planet</a> But their service is down
|
||||
<br/>right now as their updating the payment methods or whatnot, so if you're are visiting this in real time, it wont work, but their services are good, on the subject of comics...
|
||||
<br/>I looked on <a href="https://www.comicshoplocator.com">The COmic shop locator</a> and found out theres a comic shop just one mile away... but turns out that was just a office
|
||||
<br/>, and the true shop was just on the internet, so that's annoying >:(, they are quite new too!
|
||||
<br/>On another subject, I had my Birthday recently, and got a DS Lite which is fun, I played MarioKart a lot and also this cool crossword game too! The DSL is really fun and I even
|
||||
<br/> played with my friend a bit, which was neat, I got really good at RainBow road as I did the time trial lots! lolz, I started a Minecraft world with my firend and we got the Ender
|
||||
<br/>Dragon the other day soooo... take that I also got <b>6 Months</b> of RuneScape membershi, so I'm set!
|
||||
<br/>I bought the original Call Of Duty, Mini Motorways and Melvor Idle with my Steam gift card. I ordered Pokemon Saphire off of EBay and it will arive on Wednesday, so I'm exited
|
||||
<br/>for that! and I'm also awaiting the next issue of Batman and Detective Comics, both of which release on Wednesday too!
|
||||
<br/>That's it for me, I'm signing off, cya, wouldn't wanna be ya!
|
||||
<hr/>
|
||||
<h3>15-22/06/22</h3>
|
||||
ummmmmmm, so my PC boke, that's why I haven't been posting for agggggges! I had to have my entire hardrive which is annoying, but some stuff is on the
|
||||
<br/>OneDrive so it's not allll bad, I have to redownload all my games which is a pain, aparently my Windows was corrupted sooooo haha, I can continue working
|
||||
<br/>on WraithFate now that my PC is back so I am planning on adding a save game feature :D.
|
||||
<hr/>
|
||||
<h3>12-14/06/22</h3>
|
||||
Over the weekend, literally did NOTHING! On Monday I went to Manga club and we made bookmarks and watched Manga, which was fun
|
||||
<br/>(It was Saki. K) yay, gonna continue working on WraithFate :)
|
||||
<hr/>
|
||||
<h3>06-11/06/22</h3>
|
||||
whoooooooo! I keep putting this post on hold, as I'm learning JavaScript (and grinding RuneScape) so I havn't had much
|
||||
<br/>time basically, I'm making a text-based-RuneScape-like game in js, when it's done I will add it to the menu on
|
||||
<br/><a href="index.html">the home page</a> I havn't made loads of prgress, maybe expect it sometime in the next month
|
||||
<br/>(If I actually finish it hahaha), so I've decided I might do this sort of longer but less frequent kind of post
|
||||
<br/>It's just more enjoyable to write, as often my days are pretty boring lmao, I got membership in RuneScape, as someone
|
||||
<br/>gave me a bond which was very nice of them, if you're reading this, thank you! I am grinding magic skill with sand
|
||||
<br/>crabs and am already level 50, nice.
|
||||
<br/>I also took apart my old <a href="#mouse">mouse</a> (the one that wasn't working) and it looks cool, I'll post a new
|
||||
<br/>photo on the <a href="photos.html">Photos page</a> for you to see, the crazy thing is, it still works
|
||||
<hr/>
|
||||
<h3>02-05/06/22</h3>
|
||||
OK! so the reason I havn't been on in AGGGGGGEEEEESSSS is because I went to Londoon! Then I went to holiday in the Lake District! it was fun!
|
||||
<br/>So firstly, in London I did the Doctor Who Immersive expeirience which was soooo fun! I would suggest it, I also got a few Batman comics and
|
||||
<br/>issue 2 of My Hero Acedemia
|
||||
<br/>In the lake district I did some walks and ate some chips at a pub haha we walked up to this cool tower at one point which was nice, it was built
|
||||
<br/>in the 18th century and so it wasn't that big, but good for that day and age lmao, we had alot of fires in the house and I tended to the flame
|
||||
<br/>which was nice and heated the cottage, thats it for this... collection of days? ummmm
|
||||
<br/>cya I guess?
|
||||
<hr/>
|
||||
<h3>01/06/22</h3>
|
||||
Hello June! today I am going to go to London to see the Doctor Who Interactive Experiece which sounds fun! I will probably get some comics
|
||||
<br/>while there, but I wont be able to do much of an entry as I wont be back till late so this is the last of me to day D:
|
||||
<br/>Gonna go play WoW now bye.
|
||||
<hr/>
|
||||
<h3>31/05/22</h3>
|
||||
Started making a game using html, it's damn hard!
|
||||
<hr/>
|
||||
<h3>30/05/22</h3>
|
||||
HAHA I'm writing <b>this</b> post seconds after the last one lmao, finished part one of Stranger Things season 4 cause apparently
|
||||
<br/>it is split in two... so anywayyyy I'm planning on making some kind of Bell Bollard page where you can plot where you've seen
|
||||
<br/>them but first I need to learn Node.JS hahahI wouldn't be surprised if it doesn't come to fruition... It's still in the planning
|
||||
<br/>phase lul
|
||||
<hr/>
|
||||
<h3>29/05/22</h3>
|
||||
<b>I did it again!</b> I'm writing this post a day late, nothing of interest happened on the 29th, just minor bug fixes :)
|
||||
<hr/>
|
||||
<h3>28/05/22</h3>
|
||||
I often write my posts a day late, and I'm doing the same thing, but I have a better reason than pure laziness this time haha "today" I went to
|
||||
<br/>the Killer Concert in Coventry and it was very good! but very load lmao I will post an image on the <a href="photos.html">Photos page</a>
|
||||
<br/>so you can see :) not much else happened, ate a doghnut haha
|
||||
<br/>-Dea
|
||||
<hr/>
|
||||
<h3>27/05/22</h3>
|
||||
LAST DAY OF HALF TERM! We are now officialy in half term, one whole week of Minecraft and Pokemon! well actually I'm going on holiday on Wednesday
|
||||
<br/>so can only play for 4 days lol and tommorow I'm going to a Killers concert! So it's not LOADS of free time but still glad I got no school
|
||||
<br/>I'm trying to organise another D&D game with my friends so I hope that happens well, Stranger Things season 4 dropped! It's going well so far
|
||||
<br/>pretty creepy ._. anyways cya will report back tommorow
|
||||
<br/>P.S. I'm thinking about shutting down the word of the day page, just not feeling it sorry.
|
||||
<hr/>
|
||||
<h3>26/05/22</h3>
|
||||
Played D&D today, now I'm just waiting for half term ;)
|
||||
<hr/>
|
||||
<h3>25/05/22</h3>
|
||||
Hey,
|
||||
<br/>so today my PE teacher allowed me to go in the fitness room, which is where the treadmills and stuff are, instead of playing Cricketwhich I hate
|
||||
<br/>so that was sick haha, I just did rowing and stuff lol, I am workining on upgrading the photos page and adding a updates bit on <a href="index.html">The home page</a>
|
||||
<br/>if you have any suggestions on what to add to the site, please get in contact, details on home page, to suggest them :) it would be appreciated haha.
|
||||
<br/>I started learning Japanese and it's fun, new YouTube video will release today ;)
|
||||
<hr/>
|
||||
<h3>24/05/22</h3>
|
||||
Finished watching Spirited Away... yup
|
||||
<br/>cya
|
||||
<hr/>
|
||||
<h3>23/05/22</h3>
|
||||
Hey, so today we did clay in school which was fun I guess, I started reading <a href="https://en.wikipedia.org/wiki/The_Hitchhiker%27s_Guide_to_the_Galaxy">The Hitchhikers Guide to the Galaxy</a>
|
||||
<br/>again and I got to the 42 bit haha, we did archery in police cadets and I got a total score of 19 which was
|
||||
<br/>pretty terrible haha, we also played basketball and dodgeball, not much to tell about that haha I am about to
|
||||
<br/>eat tea then I'm gonna record another video, so keep you eyes peeled for that lmao
|
||||
<br/>anyways cya, wouldn't wanna be ya...
|
||||
<hr/>
|
||||
<h3>22/05/22</h3>
|
||||
Not too much happened today, mostly just updated the website alot, which you can probably tell haha, I recorded a new
|
||||
<br/>video for my <a href="https://www.youtube.com/channel/UCx-qXye3XcvdZinl-_8m4xQ/">YouTube channel</a>, just me building<br/>anyway cya tommorow
|
||||
<hr/>
|
||||
<h3>21/05/22</h3>
|
||||
Sorry for the late update D: (for us cool UTC kids) But a lot has happened today! first I went on the first run I've gone on in
|
||||
<br/><i>ages</i> and... I did terribly, the reason I havn't gone on a run is I had an operation so wasn't supposed to ;) before
|
||||
<br/>the run some milk was spilt on my <a id="mouse">mouse</a> so I had to get a new one... I got a second hand one which didn't work very well D:
|
||||
<br/>so... we retured it and got a new, better one which was a pain as they took ages to give us our money back D: the new works fine!
|
||||
<br/>I also went out and played table tennis and pool, spilt more fluids on my self hahaha, anyway... sorry for the rush but GTG
|
||||
<br/>cya!
|
||||
<hr/>
|
||||
|
||||
<h3>20/05/22</h3>
|
||||
Not much happened today... like literally nothing... just went to school hahaha
|
||||
<hr/>
|
||||
<h3>19/05/22</h3>
|
||||
hmmmmm, not much happened today, I played darts and poker and won 2 games of poker and lost 1
|
||||
<br/>so yeah, we never finished the darts game D: I had French which was cool as we were doing
|
||||
<br/>would tenses, today'sbeen pretty boring, cya I guess haha
|
||||
<hr/>
|
||||
<h3>18/05/22</h3>
|
||||
I had to do PE today :'( so annoying I couldn't for the last 1.5 months as I had appendicitis which is a pain but means I get to
|
||||
<br/>miss PE haha (I don't like PE if you couldn't tell haha) so yeah, we played Volleyball and we did trash lmao came 3rd... out
|
||||
<br/>out of 4 XD But when I went to form I left my school bag in the changing room and it was so embarrassing going back to pick it
|
||||
<br/>up again as I think football club was going on haha or ome other sport lol. I got it back though so that's good, I elbowed someone
|
||||
<br/>in the face at lunch. I updated <a href="thTehhChrons.html">The Tehh Kaur Chronicles page</a> so check that out haha, I added link things
|
||||
<br/>for words you may be unclear on and I finally added the Tehh Kaur Chrons comic page it's just in <a href="comics.html">Comics page</a>
|
||||
<br/>So it's reperposed which is good as I don't really use it, I don't know why haha check it out lol.
|
||||
<br/>That's all for today folks, cya :D
|
||||
<hr/>
|
||||
<h3>17/05/22</h3>
|
||||
I went to manga club hahaha also D&D club is starting sometime next week so i'll update you about that ;) We first played charades and we won
|
||||
<br/>by far as there was two teams competing, we got tonnes of grub like lollies, pocky, fortune cookies ect... then we watched Spirited Away
|
||||
<br/>which was nice, got halfway through, at the bit where the water spirit just flew away after a bath... spoiler?
|
||||
<br/>uhhhhhh
|
||||
<br/> I'm watching Naruto nice
|
||||
<br/>ooooh, check out the <a href="wotd.html">word of the day page</a> for todays word of the day, just got added, nice hahaha
|
||||
<br/>*sigh* can't wait for the weekend D:
|
||||
<br/>I started a Minecraft world with my brother a few days ago which was nice as I rarely play with him :(
|
||||
<br/>That's all for today folks check out <a href="games.html"> games page</a> for a base screenshot of the new world
|
||||
<hr/>
|
||||
|
||||
<h3>16/05/22</h3>
|
||||
Today I went to Polic cadets and we ate pizza, also the Royal British Navy popped in and tried to recruit us lmao.
|
||||
<br/>Apparently it's good pay and they pay for your university funds which is cool, still not joining xd.
|
||||
<br/>We got to make some flares out of paper and launch them to the sky, ours was sh*t lol, someones went like 30 metres!
|
||||
<br/> it was amazing! I also began using RuneLite rather than normal RuneScape client, it's so much better with all the extra
|
||||
<br/>plugins
|
||||
<hr/>
|
||||
|
||||
<h3>15/05/22</h3>
|
||||
played loads of OSRS today and got level 43 mining,
|
||||
I also began playing Shogun Total War, it's actually quite fun! I'm doing quite well. I added an extension to my Minecraft house and
|
||||
<br/>and now I'm eating out :D, planning on starting a word of the day thing haven't yet though keep a look out :D.
|
||||
<hr/>
|
||||
<h3>14/05/22</h3>
|
||||
Went out today and got My Hero Academia poster for £4.99 and some dvd video games:
|
||||
<li>The Hobbit (£1)</li>
|
||||
<li>Shogun: Mongul Invasion expansion (50p) </li>
|
||||
<li>Pharoh (50p)</li>
|
||||
<li>Monopoly (50p)</li>
|
||||
I'm actually writing this on the 15th, ik horrific! forgot to then :( anyway, cya.<hr/>
|
||||
<h3>13/05/22</h3>
|
||||
Welp, finished this week of school, soooo tiring! I am happy it is the weekend :D I will have plently of time to edit and update my internet web page :)
|
||||
<br/>I will probably update <a href="thTehhChrons.html">The Tehh Kaur Chronicles thing</a> a lot as I will have more free time, don't expect loads though ;) I will
|
||||
<br/>play loads of Minecraft still XD and expect the comic version to drop sometime this weekend, or maybe today! anyway... I'm on episode 11 of Naruto.
|
||||
<br/>the sound track rocks! I also plan to play more RuneScape as I want to get level 99 on everything (I seriously dought this though lol XD), I got some really
|
||||
<br/> strong magnets as shown on <a href="photos.html">the photos page ;)</a>, sorry, love links hahhahaha anyway, think that is todays rant over, cya tommorow
|
||||
<br/> folks :D
|
||||
<hr/>
|
||||
|
||||
<h3>12/05/22</h3>
|
||||
I started the graphic novel version The Tehh Kaur Chronicles :D, I'll be releasning it later. Not much has happened today (out of the regular) <br/>
|
||||
started watching this random YTer who does cool tech videos, forgot his name though, Mostly just playing Minecraft, got this irregular octogon building
|
||||
<br/>planned, so stay tuned on <a href="games.html">the games page</a> for that :D, it's in this big area of trees so I'm currently chopping trees like
|
||||
<br/>a madman ;) I've also reached ep18 of Naruto :D, today I plan to make more sprites, figure out CSS and continue the graphicised version of
|
||||
<br/><a href="thTehhChrons.html">The Tehh Kaur Chronicles thing</a>
|
||||
<br/>
|
||||
<hr/>
|
||||
<h3>11/05/22</h3>
|
||||
Hi, not too much has happened, but I continued trying to set my computer drawing tablet and I havn't
|
||||
<br/>gotten ver far XD also if you want go to <a href="thTehhChrons.html">The Tehh Kaur Chronicles page</a> to follow the story unfolding
|
||||
<br/>(It's pretty short thus far) I won't spoil any of it though, I'm planning on also doing a graphic novel version of it, but I'm not
|
||||
<br/>good at drawing lmao, also I don't have PE due to my operation so that's good! ok well, cya!
|
||||
<hr/>
|
||||
<h3>10/05/22</h3>
|
||||
I've had alot of time to play Minecraft this morning as I had to wake up my sister at
|
||||
<br/>6am so I woke up at 5:30am to be ready and it's currently 7:25am...
|
||||
<br/> I'm watching Naruto (dubbed) as I'm typing I'm on episode 7 - The Assassin of the Mist!
|
||||
<br/>Quite alot has happened as far and I'm not even 10 episodes in :D
|
||||
<br/>I have all my homework done for today so I can relax right now ;)
|
||||
<br/>ooo, I have a good idea...
|
||||
<a href ="https://www.youtube.com/watch?v=dQw4w9WgXcQ">super cute puppy!!!</a>
|
||||
<br/>ahahaha, hope you fell for that! anyway I got nothing else to say so... cya, wouldn't wanna be ya
|
||||
<br/> Update: I got <big>3 vaccines</big> today
|
||||
<br/>
|
||||
<li>meningitis </li>
|
||||
<li>polio</li>
|
||||
<li>diphtheria</li>
|
||||
<li>tetnus</li>
|
||||
<li>HPV</li>
|
||||
<br/>
|
||||
<hr/>
|
||||
<h3>09/05/22</h3>
|
||||
I've finally gotten my website up and running! hope you people enjoy ;), I followed a youtube tutorial to learn html, by a guy called
|
||||
<a href="https://www.youtube.com/c/Freecodecamp">freeCodeCamp</a>
|
||||
<br/>He's decent, there's probably similar tutorials out there if any of you want to learn html, but I'm getting side tracked
|
||||
<br/> I went to the comic book shop and they were handing out free comics, so that was cool, I got
|
||||
<li>1 batman comic</li>
|
||||
<li>1 thor teens book</li>
|
||||
<li>1 Xman book</li>
|
||||
<li>a captain underpants teaser book</li>
|
||||
<li>a Dr. Who teaser book</li>
|
||||
<li>A legends of Rama teaser book</li>
|
||||
<li>and a sonic the hedgehog teaser book</li>
|
||||
<br/> all the teaser books were free soooo... anyway, gtg, cya, goodbye... and he was never seen again, ok I'm going crazy now, I'm going to school D:
|
||||
<hr/>
|
||||
<img width=150 src="idle2.png" />
|
||||
</section>
|
||||
</article>
|
||||
</body>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</html>
|
70
blog/blogs.js
Executable file
70
blog/blogs.js
Executable file
File diff suppressed because one or more lines are too long
21
blog/blogs.js.back
Executable file
21
blog/blogs.js.back
Executable file
File diff suppressed because one or more lines are too long
62
blog/blogs/0.html
Executable file
62
blog/blogs/0.html
Executable file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Sun, 10 Dec 2023 12:00:00</h3>
|
||||
<h1 class="blog-title">Test post</h1>
|
||||
<p class="blog-content">Testy test!</p>
|
||||
<div class="blog-images">
|
||||
|
||||
</div><br/>
|
||||
<sub><i><small>Test</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="0">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="0 indent" id="comments"><b>Man</b>: <i>Do I love apple Juice!</i><br/><b>test1</b>: <i>test</i><br/><b>test2</b>: <i>TEST! :O <b>hello</b></i><br/><b>test</b>: <i>console.log("alert")</i><br/><b></b>: <i>test</i><br/><b>etst</b>: <i></i><br/><b>deadvey</b>: <i>I want people to comment random stuff here to see if anything breaks.</i><br/><b></b>: <i></i><br/><b>:</b>: <i>:</i><br/><b>deadvey</b>: <i><script>console.log("test")</script></i><br/><b>test</b>: <i>hello</i><br/><b>Shanee</b>: <i>Hello. XD</i><br/><b></b>: <i>&lt;b&gt;Test&lt;/b&gt;</i><br/><b>deadvey</b>: <i>Hi Shanee</i><br/><b>Shanee</b>: <i>Hi Deadvey!</i><br/><b>deadvey</b>: <i>Sus</i><br/><b>:</b>: <i>:</i><br/><b>Shanee</b>: <i>Test</i><br/><b>deadvey</b>: <i>test</i><br/><b>Not using Javascript</b>: <i>Yay</i><br/><b>&lt;b&gt;Test&lt;/b&gt;</b>: <i>Test</i><br/><b>test</b>: <i>test</i><br/><b>hello</b>: <i>hello</i><br/><b>hello</b>: <i>HEY</i><br/><b>test</b>: <i>&amp;lt;&amp;lt;</i><br/><b>^</b>: <i>Stupid</i><br/><b>:</b>: <i>:</i><br/><b>:</b>: <i>:</i><br/><b>:</b>: <i>:</i><br/><b>:</b>: <i>:</i><br/><b>:</b>: <i>:</i><br/><b>:</b>: <i>:</i><br/><b>:</b>: <i>:</i><br/><b>:</b>: <i>:</i><br/><b>:</b>: <i>:</i><br/><b>:</b>: <i>:</i><br/><b>:</b>: <i>:</i><br/><b>:</b>: <i>:</i><br/><b>:</b>: <i>:</i><br/><b>:</b>: <i>:</i><br/><b>:</b>: <i>:</i><br/><b>:</b>: <i>:</i><br/><b>:</b>: <i>:</i><br/><b>:</b>: <i>:</i><br/><b>sussy</b>: <i>baka</i><br/><b>☃️☃️☃️☃️</b>: <i>☃️</i><br/><b>🏨</b>: <i>🏨</i><br/><b>test</b>: <i>testtest</i><br/><b>Comment</b>: <i>This is</i><br/><b>test</b>: <i>testtest﷽﷽</i><br/><b>hello</b>: <i>test</i><br/><b>deadvey</b>: <i>test</i><br/></div></div><p class="next"><a href="1.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/1.html
Executable file
62
blog/blogs/1.html
Executable file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Sun, 10 Dec 2023 12:00:00</h3>
|
||||
<h1 class="blog-title">Test post2</h1>
|
||||
<p class="blog-content">Testicy Test</p>
|
||||
<div class="blog-images">
|
||||
|
||||
</div><br/>
|
||||
<sub><i><small>Test</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="1">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="1 indent" id="comments"><b>☃️</b>: <i>☃️</i><br/><b>😂</b>: <i>😂</i><br/><b>🏨</b>: <i>🏨</i><br/><b>hello</b>: <i>test</i><br/><b>deadvey</b>: <i>test</i><br/><b>deadvey test2</b>: <i>test2</i><br/><b>deadvey</b>: <i>hello motd!</i><br/><b>deadvey</b>: <i>Will motd see this?</i><br/><b>deadvey</b>: <i>hey!</i><br/></div></div><p class="previous"><a href="0.html"><-- Previous</a></p><p class="next"><a href="2.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/10.html
Normal file
62
blog/blogs/10.html
Normal file
File diff suppressed because one or more lines are too long
62
blog/blogs/11.html
Normal file
62
blog/blogs/11.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Tue, 30 Jan 2024 23:47:37</h3>
|
||||
<h1 class="blog-title">Naught to say</h1>
|
||||
<p class="blog-content">I havent really done much other than set up my server in my bedroom now and attempted to automate something in selenium, didn't work but eh. I've been mostly revising so not much to say, oh and a kind of surround sound system for my PS2 I guess<br/>Fly You High - DeaDvey</p>
|
||||
<div class="blog-images">
|
||||
|
||||
</div><br/>
|
||||
<sub><i><small>PS2,surround sound,bored,but nothing happened,the merciless iced east winds that knive us,condensation polymerisation,Beneath his hands which did not tremble then, though seem to now,Lnew = (Loriginal*D^2original)/D^2new</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="11">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="11 indent" id="comments"></div></div><p class="previous"><a href="10.html"><-- Previous</a></p><p class="next"><a href="12.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/12.html
Normal file
62
blog/blogs/12.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Sun, 3 Mar 2024 22:41:25</h3>
|
||||
<h1 class="blog-title">Mocks next week and sorry for no updates!</h1>
|
||||
<p class="blog-content">I've been revising (and procrastinating) a LOT over the last month or two and I got mock exams next week in preperation for the May exams so that's why I've not updated this page much, I saw a football game, that was fun, I also watched a lot of films and reviews on Letterboxd, like Dune part 2 which came out a few days ago,would reccoment. I also started reading Agnes Grey yesterday, it's interesting, I like it so far! anyway, I gotta sleep now, it's freezing, my boiler broke :(<br/>Fly You High - DeaDvey</p>
|
||||
<div class="blog-images">
|
||||
|
||||
</div><br/>
|
||||
<sub><i><small>mocks,football,bored,revision,agnes grey</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="12">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="12 indent" id="comments"></div></div><p class="previous"><a href="11.html"><-- Previous</a></p><p class="next"><a href="13.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/13.html
Normal file
62
blog/blogs/13.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Mon, 11 Mar 2024 10:32:05</h3>
|
||||
<h1 class="blog-title">Mocks over, only GCSE's to go...</h1>
|
||||
<p class="blog-content">Just finshed my mocks so will take a day or two off revision, I think I did pretty well, I got 9s in the sciences, I cleaned up my room and organised my cables which was fun, now I'm just listening to music and writing this I guess. I tried setting up stableLM the other day and failed :(. Today I had an issue with focusing in kde6 where when I clicked a window in the overview, focus was not shifted to that, I fixed this by changing focus behaviour to 'Focus under mouse' and that worked, now I have a gnome-like window management in kde6 which I like, I also tried to get jellyfin-mpv-shim to pass the media information through to kde so I can control it from the media controls which would be nice, and I could see the album covers, I couldn't figure it out, and the only clients that seem to support client casting is the official client and webclient, which pisses me off because I like the look of Tauon Box but it doesn't let me play and control music on the mpv-shim >:(. I also played a lot of Fifa 19 and got promoted to the premier leauge so that's nice. I rewatched (and reread) V for Vendetta, now I'm rewatching Dark Crystal the original film one, not the awful Netflix series, anyway, you can see my reviews for them on letterboxd I suppose, I'm planning on making my blog auto upload my letterboxd reviews, that would be cool. I think that's all for today ig<br/>Fly You High - DeaDvey</p>
|
||||
<div class="blog-images">
|
||||
|
||||
</div><br/>
|
||||
<sub><i><small>dark crystal,letterboxd,v for vendetta,stablelm,jellyfin,tidy</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="13">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="13 indent" id="comments"></div></div><p class="previous"><a href="12.html"><-- Previous</a></p><p class="next"><a href="14.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/14.html
Normal file
62
blog/blogs/14.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Sat, 4 May 2024 17:20:57</h3>
|
||||
<h1 class="blog-title">Seven Psychopaths - 3.5/5</h1>
|
||||
<p class="blog-content">I just watched Seven Psychopaths and I thought it was pretty good, I liked how it was structured as the film being the film he is writing (kind of?) and I wrote a short review of it on letterboxd: Actually very good, the final shootout was sick and the film was pretty funny even though quite brutal.<br/>3.5 Stars<br/>Fly You High - DeaDvey</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/7psycos.jpg" alt="7psycos.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,film,seven psychopaths,3.5/5</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="14">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="14 indent" id="comments"></div></div><p class="previous"><a href="13.html"><-- Previous</a></p><p class="next"><a href="15.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/15.html
Normal file
62
blog/blogs/15.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Thu, 8 May 2024 16:43:28</h3>
|
||||
<h1 class="blog-title">Exam Stress</h1>
|
||||
<p class="blog-content">Going into my first written GCSE tommorow (RE Islam) and am quite stressed, heck, I should be doing revision as I type this but I am not because I can't really be bothered. I began making a 2D minecraft and dwarf fortress inspired game, I've got the world generation done, I'll upload it to gitlab later probably, I also am trying out Fedora currently, I think it's pretty decent, some annoyances however, no YaST for one and protonvpn just does not work at all so I haven't played GTAV in a few days. Today was my first day before exams so a lot of people were stressed and me likewise, I guess it will be over in just over a month so D: Anyway I should do a pastpaper now, maybe go over mitosis, oh god this is so boring! Also, my neighbour wished me luck on my <u>O Levels</u><br/>Fly You High - DeaDvey</p>
|
||||
<div class="blog-images">
|
||||
|
||||
</div><br/>
|
||||
<sub><i><small>gcse,exam,fedora,minedwarves</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="15">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="15 indent" id="comments"></div></div><p class="previous"><a href="14.html"><-- Previous</a></p><p class="next"><a href="16.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/16.html
Normal file
62
blog/blogs/16.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Sun, 12 May 2024 12:52:14</h3>
|
||||
<h1 class="blog-title">Kingdom of the Planet of the Apes - 3/5</h1>
|
||||
<p class="blog-content">The film had a slow start but I really liked the whole half an hour or so with the orangutang, I thought that was very interesting how different groups had different interpretations on what Ceasers message was. I don't think I fully understood the ending however, I must watch it again to fully understand it.<br/>Fly You High - DeaDvey</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/kotpota.jpg" alt="kotpota.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,film,cinema watch,family watch,3/5</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="16">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="16 indent" id="comments"></div></div><p class="previous"><a href="15.html"><-- Previous</a></p><p class="next"><a href="17.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/17.html
Normal file
62
blog/blogs/17.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Sun, 12 May 2024 10:00:04</h3>
|
||||
<h1 class="blog-title">Macbeth, Macbeth, where art thou Macbeth?</h1>
|
||||
<p class="blog-content">I hate Macbeth, I got English Lit exam tommorow on him and then I will NEVER have to think about that bloke every again! Also Christmas Carol but that isn't as bad as Shakespeare *shudder* the exam will be hellish though so >:( yeah ok, this was a short one,, just a rant I suppose<br/>Fly You High - DeaDvey</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/macbeth.png" alt="macbeth.png" />
|
||||
</div><br/>
|
||||
<sub><i><small>macbeth,english,exam,gcse</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="17">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="17 indent" id="comments"></div></div><p class="previous"><a href="16.html"><-- Previous</a></p><p class="next"><a href="18.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/18.html
Normal file
62
blog/blogs/18.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Mon, 13 May 2024 00:00:00</h3>
|
||||
<h1 class="blog-title">The Twelve Tasks of Asterix - 2.5/5</h1>
|
||||
<p class="blog-content">I have had the book of the film forever and only just got around to watching it,It's alright, I really don't have much to say about it other than that hearing the characters voices is REALLY weird having only read them (other than Asterix and the Middle Kingdom which I've tried to block out of my brain) so that was interesting. It defo was better than Asterix and the Middle Kingdom. The bit with the permits was funny af though and it still has a lot of the humour from the comics which translated better than I expected! If I rated this purely based on nostalgia from the book it would be an easy 4 stars.</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/asterix.jpg" alt="asterix.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,film,twelve tasks of asterix,2.5/5,1976</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="18">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="18 indent" id="comments"><b>DeaDVey</b>: <i>HEY GUYS!</i><br/></div></div><p class="previous"><a href="17.html"><-- Previous</a></p><p class="next"><a href="19.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/19.html
Normal file
62
blog/blogs/19.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Sun, 26 May 2024 07:54:31</h3>
|
||||
<h1 class="blog-title">Half Term</h1>
|
||||
<p class="blog-content">Now that Half Term is here and most of my exams are done (only 6 left), I feel like I can relax a bit, I'm going to be working on the website a bit more hopefully, I also forgot to push to github in a while so I did that lol errr yeah - Basically just Maths revision as I think I'm mostly fine on Science, but who knows until August ¯\_(ツ)_/¯<br/>Fly You High - DeaDvey</p>
|
||||
<div class="blog-images">
|
||||
|
||||
</div><br/>
|
||||
<sub><i><small>update,exam,gcse,website</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="19">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="19 indent" id="comments"><b>sussy</b>: <i>baka</i><br/><b>max</b>: <i>Hello guys!</i><br/><b>not_deadvey</b>: <i>I totally agree, and DeaDvey is SO cool and awesome btw!!!</i><br/><b>deadvey</b>: <i>Aww, thanks so much not_deadvey!</i><br/><b>not_deadvey</b>: <i>OMFG A CELEBRITY SPOKE TO ME!!!!!!!! :O</i><br/></div></div><p class="previous"><a href="18.html"><-- Previous</a></p><p class="next"><a href="20.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/2.html
Executable file
62
blog/blogs/2.html
Executable file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Mon, 11 Dec 2023 12:00:00</h3>
|
||||
<h1 class="blog-title">I didn't like Wordpress</h1>
|
||||
<p class="blog-content">So... Yeah, I didn't like wordpress very much, it's pretty clunky and I don't have much control over the webpage, and it's kinda not that fun to use, I'm glad I tried it out though because I kind of know how to use it know I suppose, I might copy over the wordpress back over to this so I can use it myself for fun I suppose.</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/wordpress.png" alt="wordpress.png" />
|
||||
</div><br/>
|
||||
<sub><i><small>Wordpress,html,control</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="2">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="2 indent" id="comments"></div></div><p class="previous"><a href="1.html"><-- Previous</a></p><p class="next"><a href="3.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/20.html
Normal file
62
blog/blogs/20.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Thu, 30 May 2024 01:02:36</h3>
|
||||
<h1 class="blog-title">Website update: Comments</h1>
|
||||
<p class="blog-content">I err added comments to the bottom of blog posst which should work fine (hopefully) so yeah and also I got ridof the comics section becauce I didn't like it umm oh yeah so the comments thingy I made the website use node rather than apache (with a lot of help) and um then I use the submitted data to write to a file wwhich is then used to reference to show the comments and stuff so yeah gn I'm tired<br/>Fly You High - DeaDvey</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/comments-screenshot.png" alt="comments-screenshot.png" />
|
||||
</div><br/>
|
||||
<sub><i><small>update,comments,nodejs</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="20">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="20 indent" id="comments"><b>deadvey</b>: <i>ok, here's the comments</i><br/><b>deadvey</b>: <i>From w3m!</i><br/><b>deadvey</b>: <i>third</i><br/><b>deadvey</b>: <i>forth</i><br/></div></div><p class="previous"><a href="19.html"><-- Previous</a></p><p class="next"><a href="21.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/21.html
Normal file
62
blog/blogs/21.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Sat, 8 Jun 2024 2:06:15</h3>
|
||||
<h1 class="blog-title">Weird: The Al Yankovic Story - 4/5</h1>
|
||||
<p class="blog-content">My favourite bit was when Alfred assassinated famous drug lord Pablo Escobar by shurikening him in the face!</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/weird.jpg" alt="weird.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,film,4/5,shuriken,kinda weird ngl,2022</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="21">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="21 indent" id="comments"><b>deadvey</b>: <i>weird film</i><br/></div></div><p class="previous"><a href="20.html"><-- Previous</a></p><p class="next"><a href="22.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/22.html
Normal file
62
blog/blogs/22.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Wed, 12 Jun 2024 12:00:07</h3>
|
||||
<h1 class="blog-title">One exam left!</h1>
|
||||
<p class="blog-content">Well, now I've only got one exam left on Friday, Physics Paper 2 so after that I should be a bit more active hopefully idk, I still want to add automatic syncing with Letterboxd hopefully, I can try do that on the weekend at some point.</p>
|
||||
<div class="blog-images">
|
||||
|
||||
</div><br/>
|
||||
<sub><i><small>exams,gcse,letterboxd,physics</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="22">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="22 indent" id="comments"><b>deadvey</b>: <i>Can&#039;t wait!</i><br/></div></div><p class="previous"><a href="21.html"><-- Previous</a></p><p class="next"><a href="23.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/23.html
Normal file
62
blog/blogs/23.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Wed, 12 Jun 2024 12:57:55</h3>
|
||||
<h1 class="blog-title">Clancy (Twenty One Pilots) - 3.5/4</h1>
|
||||
<p class="blog-content">Good album but Scaled and Icy is better, I got the CD! I think Overcompensate and The Craving (Jennas version) are the best songs, I have Overcompensate stuck in my head.</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/clancy.jpg" alt="clancy.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,album,3.5/4,2024</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="23">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="23 indent" id="comments"></div></div><p class="previous"><a href="22.html"><-- Previous</a></p><p class="next"><a href="24.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/24.html
Normal file
62
blog/blogs/24.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Sun, 16 Jun 2024 11:10:07</h3>
|
||||
<h1 class="blog-title">Inside Out 2 - 2.5/5</h1>
|
||||
<p class="blog-content">It was alright but I think it would've been better if the story ended on the fade to white when she passed the puck to her team-mate because the story is more about her development rather than weather she scores the goal or not.</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/insideout2.jpg" alt="insideout2.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,film,2.5/5,cinema watch,family watch,2024</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="24">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="24 indent" id="comments"><b>deadvey</b>: <i>it;s alright</i><br/></div></div><p class="previous"><a href="23.html"><-- Previous</a></p><p class="next"><a href="25.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/25.html
Normal file
62
blog/blogs/25.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Wed, 3 Jul 2024 01:48:14</h3>
|
||||
<h1 class="blog-title">LOTR Conquest - 4/5 ❤️</h1>
|
||||
<p class="blog-content">I finally got LOTR conquest and it's so flipping good, It's like Battlefront 2 (the orignal one) but it's Lord of the Rings, great combination! I've been playing it non stop for the last few days since I got the disk, unfortunatley multiplayer is no longer supported but there seems to be a community presence with modding and there is a way to pretend to be on the same lan as others so you can play like that using Radmin VPN, unfortunatley, Radmin does no work on Linux :( even through Wine which is annoying, guess I'll just play singleplayer, still very enjoyable however!</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/lotrc.jpg" alt="lotrc.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,game,4/5,2024</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="25">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="25 indent" id="comments"></div></div><p class="previous"><a href="24.html"><-- Previous</a></p><p class="next"><a href="26.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/26.html
Normal file
62
blog/blogs/26.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Wed, 3 Jul 2024 01:59:32</h3>
|
||||
<h1 class="blog-title">Slingshot - 3.5/5</h1>
|
||||
<p class="blog-content">VERY simple game I found on <a href='https://flathub.org/apps/com.github.ryanakca.slingshot'>Flathub</a> where you have to defeat the eneemy by shooting a missile out of a spaceship but there are planets that have gravity so you have to take that into account as well, it's multiplayer as well, really easy to host a server (port 3999) however the multiplayer seems very buggy with invisible planets and what not, it was last updated 6 years ago so that probably wont get fixed, the game is still very fun though and I played it for a while!</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/slingshot.webp" alt="slingshot.webp" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,game,3.5/5,2024</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="26">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="26 indent" id="comments"><b>deadvey</b>: <i>Couldn&#039;t find official art work for this so that is a screenshot.</i><br/></div></div><p class="previous"><a href="25.html"><-- Previous</a></p><p class="next"><a href="27.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/27.html
Normal file
62
blog/blogs/27.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Fri, 5 Jul 2024 19:08:11</h3>
|
||||
<h1 class="blog-title">Deus Ex play begun</h1>
|
||||
<p class="blog-content">I've began playing Deus Ex and it seems fun so far, however it's VERY hard, even on easy difficulty I've been stuck on the first mission for about 3 hours so yeah.</p>
|
||||
<div class="blog-images">
|
||||
|
||||
</div><br/>
|
||||
<sub><i><small>deus ex,game,update</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="27">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="27 indent" id="comments"></div></div><p class="previous"><a href="26.html"><-- Previous</a></p><p class="next"><a href="28.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/28.html
Normal file
62
blog/blogs/28.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Sun, 7 Jul 2024 13:25:10</h3>
|
||||
<h1 class="blog-title">The Dictator - 3/5</h1>
|
||||
<p class="blog-content">I found this film funny but the story is a bit short and the jokes sometimes were a bit forced, I also think it fails as it's all much more scripted than Ali G or Borat (played by Sacha Baron Cohen) also I liked how he pretended to be liking democracy at the end but then just made himself always be voted in.</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/thedictator.jpg" alt="thedictator.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,film,3/5,sacha baron cohen,comedy,home watch</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="28">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="28 indent" id="comments"></div></div><p class="previous"><a href="27.html"><-- Previous</a></p><p class="next"><a href="29.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/29.html
Normal file
62
blog/blogs/29.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Mon, 8 Jul 2024 00:48:47</h3>
|
||||
<h1 class="blog-title">Borat - 3.5/5</h1>
|
||||
<p class="blog-content">Very funny and very chaotic, can't believe they had a naked fight in a hotel ._. Like wtf, I wonder how much of this is scripted</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/borat.jpg" alt="borat.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,film,3.5/5,sacha baron cohen,comedy,home watch</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="29">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="29 indent" id="comments"></div></div><p class="previous"><a href="28.html"><-- Previous</a></p><p class="next"><a href="30.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/3.html
Executable file
62
blog/blogs/3.html
Executable file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Thu, 21 Dec 2023 12:00:00</h3>
|
||||
<h1 class="blog-title">Late December Update Before Christmas</h1>
|
||||
<p class="blog-content">Hey guys, so I have been trying out Nextcloud since I did the last blog and I really like it, it's very good, the calendar especially, I think I definately prefer it to Proton Drive and Calendar because it's way better intergreated in to apps and stuff, there's also apps for it on the Ubuntu Touch store, which lacks Proton apps, the notes are also great as is the RSS reader that I can sync. Secondly, I have also began watching Attack on Titan again as my freind has been going on about it, I'm readig the Manga but it is so slow, so I'll probably keep watching the Animé which I like. Christmas is in a few days and we break up tommorow which is pretty exiting and I'll see some family, I think I'm getting the <a href='https://www.raspberrypi.com/products/raspberry-pi-5/'>Raspberry Pi 5</a> which is cool. Finally, I got the <a href='https://store.steampowered.com/app/582160/Assassins_Creed_Origins/'>Assassins Creed Origins game</a> which I already had on PS4 but now I have on Steam because it was on sale, but I can't get it to work so I'll have to figure that out over the weekend, anyway, that is probably it for today.<br/>Fly You High - DeaDvey<br/><img src='https://searx.be/image_proxy?url=https%3A%2F%2Fi.pinimg.com%2F236x%2Fc5%2F7f%2Fe1%2Fc57fe1d506c6a3aa53bd953199b7ea9f.jpg&h=60634c3b8432ca80d66386441593891a87a58ae6ec4810c40a64a665b0e677fc' height='200' alt='An image of Assassins Creed Origins' /><img src='https://upload.wikimedia.org/wikipedia/commons/9/98/23551-Raspberry-Pi-5-8G-feature.jpg' height='200' alt='An image of a Raspberry Pi 5'/></p>
|
||||
<div class="blog-images">
|
||||
|
||||
</div><br/>
|
||||
<sub><i><small>Christmas,Raspberry,pi,Nextcloud</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="3">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="3 indent" id="comments"></div></div><p class="previous"><a href="2.html"><-- Previous</a></p><p class="next"><a href="4.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/30.html
Normal file
62
blog/blogs/30.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Mon, 8 Jul 2024 00:53:07</h3>
|
||||
<h1 class="blog-title">Star Wars Battlefront 2 (2005) - 4.5/5 ❤️</h1>
|
||||
<p class="blog-content">FUN, bruv I can't say anything more, it's just so FUN</br><a href='https://www.igdb.com/games/star-wars-battlefront-ii'>IGDB</a></p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/bf2.jpg" alt="bf2.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,game,4.5/5,star wars,favourites,fun,pandemic</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="30">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="30 indent" id="comments"></div></div><p class="previous"><a href="29.html"><-- Previous</a></p><p class="next"><a href="31.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/31.html
Normal file
62
blog/blogs/31.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Thu, 11 Jul 2024 18:19:58</h3>
|
||||
<h1 class="blog-title">#stopchatcontrol and Deus Ex</h1>
|
||||
<p class="blog-content">Firstly, I read an article about chat control coming to the EU which is where all messages and emails (encrypted or not) are scanned indiscriminately if you live in the EU or are sending mesasges to someone in the EU, sounds like a really bad idea, read more here: <a href='https://chatcontrol.eu'>chatcontrol.eu</a>. Secondly, I've been playing Deus Ex loads more and it is very hard but I've just<details><summary>Spoiler:</summary>Reached Hong Kong after escaping the UNATCO HQ, I kind of wanted JC to just stay in UNATCO and be the bad guy, but that's just me :|</details>Anyway, I think that's it, not much other than building a shed in the garden has happened this last few days!<br/>Fly You High - DeaDvey</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/chatcontrol.png" alt="chatcontrol.png" /><img class="blog-image" height="200" src="/images/jc.png" alt="jc.png" />
|
||||
</div><br/>
|
||||
<sub><i><small>deus ex,jc denton,unatco,chatcontrol,shed,eu,encryption,privacy,unatco</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="31">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="31 indent" id="comments"><b>deadvey</b>: <i>there&#039;s also a change.org petition for stopping the chat control</i><br/></div></div><p class="previous"><a href="30.html"><-- Previous</a></p><p class="next"><a href="32.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/32.html
Normal file
62
blog/blogs/32.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Fri, 12 Jul 2024 02:47:43</h3>
|
||||
<h1 class="blog-title">Twin terminal WM</h1>
|
||||
<p class="blog-content">I'm currently trying out TwinWM as a tty based (No X or Wayland) window manager and it's pretty cool, of course there are no graphical apps, but have been trying out Aerc again, although not without it's bugs lmfao<br/>Fly You High - DeaDvey</p>
|
||||
<div class="blog-images">
|
||||
|
||||
</div><br/>
|
||||
<sub><i><small>twin,wm,bugs,aerc,tui,tty</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="32">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="32 indent" id="comments"></div></div><p class="previous"><a href="31.html"><-- Previous</a></p><p class="next"><a href="33.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/33.html
Normal file
62
blog/blogs/33.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Thu, 17 Jul 2024 19:25:22</h3>
|
||||
<h1 class="blog-title">Bean - 3/5</h1>
|
||||
<p class="blog-content">Pretty funny at times but not as good as the TV show, I recorded this because I thought it looked like a good time and it was, never an amazing film but a good time nonetheless.<details><summary>Spoiler:</summary>My favourite bits were when the security guard shat himself (and showed up at the end) and also when Mr Bean became a surgeon on accident.</details><br/>Fly You High - DeaDvey</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/bean.jpg" alt="bean.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,film,3/5,bean,comedy,ok,home watch</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="33">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="33 indent" id="comments"><b>deadvey</b>: <i>Also the son is annoying.</i><br/></div></div><p class="previous"><a href="32.html"><-- Previous</a></p><p class="next"><a href="34.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/34.html
Normal file
62
blog/blogs/34.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Thu , 18 Jul 2024 11:05:42</h3>
|
||||
<h1 class="blog-title">Shazam - 3.5/5</h1>
|
||||
<p class="blog-content">A funny and lighthearted superhero film, I think the bad buy could've been more evil because I didn't find that much intrinsic reason to hate him. I remember seeing this film in adverts back whenever it came out and thought it looked kind of boring so I was pleasantly surprised at how good it was, and the ending scene was pretty cool too. Do american schools really have security guards lol? Or was that just made up for the film?</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/shazam.jpg" alt="shazam.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,film,3.5/5,comedy,home watch</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="34">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="34 indent" id="comments"></div></div><p class="previous"><a href="33.html"><-- Previous</a></p><p class="next"><a href="35.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/35.html
Normal file
62
blog/blogs/35.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Sun, 21 Jul 2024 15:00:00</h3>
|
||||
<h1 class="blog-title">Blur: To the End - 2.5/5</h1>
|
||||
<p class="blog-content">My parents saw this in Wembley and said I was very good, so we saw this and it was a pretty enjoyable day out, there is a post credits scene that was about 15 minutes long which was a bit surprising lol, guess everything has to that now. My favourite thing was how the camera kept zooming in on Damon's tatoo that said 'I am a cunt' also everyone in the cinema laughed when he said that people beat him up because they thought he was a cunt, so dead pan and well delivered!</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/blur.jpg" alt="blur.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,film,2.5/5,reality,cinema watch,family watch</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="35">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="35 indent" id="comments"></div></div><p class="previous"><a href="34.html"><-- Previous</a></p><p class="next"><a href="36.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/36.html
Normal file
62
blog/blogs/36.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Wed, 24 Jul 2024 11:00:00</h3>
|
||||
<h1 class="blog-title">Twisters - 3/5</h1>
|
||||
<p class="blog-content">Pretty fun action film, with some wild and stressfull scenes and I-wish-was-accurate science<details><summary>Spoiler:</summary> I really thought Tyler was gonna be a bad guy and he really sold the cocky jerk but he ended up being nice, and so did Javi, everyone was good, other than Ben. Unfortunatley I did not see the 4D version so the cinema screen didn't get actually ripped from the room :( would've improved the immersiveness.</details></p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/twisters.jpg" alt="twisters.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,film,3/5,action,family watch,cinema watch</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="36">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="36 indent" id="comments"></div></div><p class="previous"><a href="35.html"><-- Previous</a></p><p class="next"><a href="37.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/37.html
Normal file
62
blog/blogs/37.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Wed, 7 Aug 2024 02:11:58</h3>
|
||||
<h1 class="blog-title">My profile picture evolution</h1>
|
||||
<p class="blog-content">I have had 8 major profile pictures over the last 5-6 years, firstly, I had a nabstablook profile picture which was just the character nabstablook from Undertale that was my image for quite a while, then, in around 2019 I wanted to have a profile picture that I'd made myself so I drew out a guy in a green hoodie (me) because I wore a green hoodie a lot at the time, it had purple eyes that was meant to be enderman eyes and a tardis in the background because I like doctor who, then I wanted to add in more things from media that I like, the one ring around the neck for lord of the rings a siver crown with blue silmarillions from The Silmarillion (from the same universe of the Lord of the Rings) and finally the amongus running on my shoulder, this was my profile picture for a while until I updated it with similar transparent png version with headphones which I actually made my taking a photo of myself and tracing the image around me, unfortunatley I have long the original image so that is only in my memory. A few months after this I remade the green jumper image again but with the tardis background again, this one was a bit more cartooy than the original and had a hard black outline, this one also had a jar of marmite on my shoulder because I like marmite and my arm was up at my face in a thinking pose. I had two more variants that used the gruvbox theme which I used for a short period of time, one that had a grey jumper and one that had a green jumper, both of these were more pixelated because I wanted to more dynamically change colours on the image, they also had a wrist warmer which I sometimes wear. After a few months (and only about a week ago) I wanted a clean start so I took a picture of a crochet dinosaur that someone I know made for me that is on top of my PC right now, I cut out the background making it a tranparent pn which is my current profile picture on most places although not everywhere, I should make a list of places to change my profile picture lol. Anyway, I'll put the 7 ones that I do have below (the lost one is between 3 and 4)</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/pfp0.jpg" alt="pfp0.jpg" /><img class="blog-image" height="200" src="/images/pfp1.png" alt="pfp1.png" /><img class="blog-image" height="200" src="/images/pfp2.png" alt="pfp2.png" /><img class="blog-image" height="200" src="/images/pfp3.png" alt="pfp3.png" /><img class="blog-image" height="200" src="/images/pfp4.png" alt="pfp4.png" /><img class="blog-image" height="200" src="/images/pfp5.png" alt="pfp5.png" /><img class="blog-image" height="200" src="/images/pfp6.png" alt="pfp6.png" />
|
||||
</div><br/>
|
||||
<sub><i><small>profile,pictures,story,evolution</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="37">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="37 indent" id="comments"></div></div><p class="previous"><a href="36.html"><-- Previous</a></p><p class="next"><a href="38.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/38.html
Normal file
62
blog/blogs/38.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Sat, 17 Aug 2024 00:52:33</h3>
|
||||
<h1 class="blog-title">Why the inactivity?</h1>
|
||||
<p class="blog-content">I was on holiday, I'm back now, will do a NixOS blog at some point</p>
|
||||
<div class="blog-images">
|
||||
|
||||
</div><br/>
|
||||
<sub><i><small>holiday,im back</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="38">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="38 indent" id="comments"></div></div><p class="previous"><a href="37.html"><-- Previous</a></p><p class="next"><a href="39.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/39.html
Normal file
62
blog/blogs/39.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Sat, 18 Aug 2024 16:41:06</h3>
|
||||
<h1 class="blog-title">NixOS is SO cool - 4.5/5 ❤️</h1>
|
||||
<p class="blog-content">I've started using NixOS (my third time trying(I used to use <a href='https://deadvey.com/blog/blogs/43.html'>Tumbleweed</a>)) and I finally understand why it's so cool, I have my nix config <a href='https://gitlab.com/deadvey/nixos'>here on Gitlab</a> and I have configured my whole system from that file, I have even my home manager here as I think I prefer if everything is in one file, I also made a script to auto push successfull edits to gitlab, the only thing I haven't done yet it make curved edges to my waybar that matches the window curvature of everything else, I'll get on that after this blog haha. The main issue is some apps wont boot like GIMP. I also have the colouring (Gruvbox) and other things as variables at the top eg corner radius and gaps, I just really like it anyways yeah, this is pretty short because I want to get back to editting NixOS, Byeee<br/>Fly You High - DeaDvey</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/nixos.png" alt="nixos.png" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,distro,nixos,config,home,manager,gitlab,4.5/5</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="39">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="39 indent" id="comments"></div></div><p class="previous"><a href="38.html"><-- Previous</a></p><p class="next"><a href="40.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/4.html
Executable file
62
blog/blogs/4.html
Executable file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Sun, 24 Dec 2023 00:01:23</h3>
|
||||
<h1 class="blog-title">RSS feeds and Star Wars Squadrons</h1>
|
||||
<p class="blog-content">Hey people (person(me)), I just updated my website to have an <a href='https://en.wikipedia.org/wiki/RSS'>RSS Feed</a> so that I can read them in Fluent Reader or Nextcloud News, the two RSS readers I use mostly, I cannot get them all to show up in Nextcloud News however, only the most recent one, maybe an issue with the formating? Ah well, I'll try troubleshoot that I guess. Secondly, I recently got the game <a href='https://store.steampowered.com/app/1222730/STAR_WARS_Squadrons/'>Star Wars Squadrons</a> on my PC after already having played it on my PS4 and I was surprised at the poor reviews, I always found the game really fun and the integrated HUD really fun to use, guess I just am different lol, anyway<br/> Fly You High - DeaDvey<br/><img src='https://cdn.cloudflare.steamstatic.com/steam/apps/1222730/header.jpg?t=1662047498' /></p>
|
||||
<div class="blog-images">
|
||||
|
||||
</div><br/>
|
||||
<sub><i><small>RSS,Sqaudrons,Star Wars,News</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="4">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="4 indent" id="comments"></div></div><p class="previous"><a href="3.html"><-- Previous</a></p><p class="next"><a href="5.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/40.html
Normal file
62
blog/blogs/40.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Sat, 17 Aug 2024 22:36:21</h3>
|
||||
<h1 class="blog-title">Taylor Swift: The Eras Tour - 3.5/5</h1>
|
||||
<p class="blog-content">I'm not a massive taylor swift fan (I have a few of her songs) but my god this concert was impressive, my siter was watching it and my attention was not fully on it, for a concert this is top notch performance. Not really a film but I suppose I'll put it under film review anyway (I watched this on Wednesday while on holiday)</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/eras.jpg" alt="eras.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,film,concert,taylor,swift,3.5/5</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="40">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="40 indent" id="comments"></div></div><p class="previous"><a href="39.html"><-- Previous</a></p><p class="next"><a href="41.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/41.html
Normal file
62
blog/blogs/41.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Sat, 17 Aug 2024 10:45:01</h3>
|
||||
<h1 class="blog-title">GTA IV - 4/5 ❤️</h1>
|
||||
<p class="blog-content">Wow, I've been playing this with my dad a bit and I think it's a lot better than GTA V (other than graphics), the gameplay is more fun, the story is more interesting and the missions are more enjoyable (and more challenging), the only thing I can say it that the police are a bit too dumb, good work on this Rockstar, I can understand why it's <a href='https://www.metacritic.com/browse/game/'>3rd best game of all time</a>, now I just need to try Ocarina of time and SoulCalibur haha</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/gtaiv.jpg" alt="gtaiv.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,game,gta,niko,roman,police,4/5,favourites</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="41">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="41 indent" id="comments"><b>deadvey</b>: <i>You need an N64 for ocarina of time :(</i><br/></div></div><p class="previous"><a href="40.html"><-- Previous</a></p><p class="next"><a href="42.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/42.html
Normal file
62
blog/blogs/42.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Sat, 17 Aug 2024 23:25:47</h3>
|
||||
<h1 class="blog-title">Teenage Dirtbag (Wheatus) - 4.5/5 ❤️</h1>
|
||||
<p class="blog-content">I really like this song, Wheatus really hit the nail on the head with this one, from the classic intro music to the great ending, top notch.</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/teenagedirtbag.jpg" alt="teenagedirtbag.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,song,4.5/5,wheatus,noelle,classic</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="42">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="42 indent" id="comments"></div></div><p class="previous"><a href="41.html"><-- Previous</a></p><p class="next"><a href="43.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/43.html
Normal file
62
blog/blogs/43.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Sun, 18 Aug 2024 22:33:06</h3>
|
||||
<h1 class="blog-title">OpenSUSE Tumbleweed - 4/5 ❤️</h1>
|
||||
<p class="blog-content">I ony just recently hopped off of using Tumbleweed as my main distro (now I'm using NixOS), but I still really like it. Firstly, the mascot is really, cute (That's not a very important point, but I'll mention it nonetheless, most distros don't have oficial mascots unfortunatley). I also REALLY like Yast, but I do think the nix config is better even if it's less easy to use. Finally, I like how I can get recent packages and it's also stable, so winwin. Basically it's NixOS but worse, I have now realised. haha.</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/opensuse.png" alt="opensuse.png" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,distro,opensuse,yast,chameleon,mascot,green,tumbleweed,favourites,4/5</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="43">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="43 indent" id="comments"><b>javalsai</b>: <i>Wow, this is great, DeaDvey is SO cool!!!</i><br/><b>javalsai(fake)</b>: <i>Naw, bro's impersonating me</i><br/><b>javalsai(fake)</b>: <i>Imagine bad html encoding 😬</i><br/><b>deadvey</b>: <i>Whoops, idk how to fix that can't lie.</i><br/></div></div><p class="previous"><a href="42.html"><-- Previous</a></p><p class="next"><a href="44.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/44.html
Normal file
62
blog/blogs/44.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Mon, 19 Aug 2024 02:14:52</h3>
|
||||
<h1 class="blog-title">Good Ridance (Green Day) - 4.5/5 ❤️</h1>
|
||||
<p class="blog-content">Along with Boulevard of Broken Dreams, this is my favourite Green Day song, the lyrics are so lovely and I like the melody, it feels stragley nostalgic as well. I saw this in a car advert during the Euros and started singing it aloud, such a fun song</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/good_ridance.jpg" alt="good_ridance.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,song,favourites,4.5/5,green day,good ridance,nimrod</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="44">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="44 indent" id="comments"></div></div><p class="previous"><a href="43.html"><-- Previous</a></p><p class="next"><a href="45.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/45.html
Normal file
62
blog/blogs/45.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Mon, 19 Aug 2024 02:23:57</h3>
|
||||
<h1 class="blog-title">SONG Marshall versus the Machines - 2.5/5</h1>
|
||||
<p class="blog-content">Not super into folk music but this is pretty good, it definitley helps that it's comedic, I love the comedy/parody music in HIMYM (and in general), though not the best of the HIMYM songs, Feels very random. Barney's suits song is much better in my opinion.</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/marshallvsmachines.webp" alt="marshallvsmachines.webp" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,song,2.5/5,marshall erikson,jason segel,comedy,folk</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="45">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="45 indent" id="comments"></div></div><p class="previous"><a href="44.html"><-- Previous</a></p><p class="next"><a href="46.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/46.html
Normal file
62
blog/blogs/46.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Mon, 19 Aug 2024 02:28:56</h3>
|
||||
<h1 class="blog-title">FILM Civil War (2024) - 4.5/5 ❤️</h1>
|
||||
<p class="blog-content">This film actually made me scared even though I'm not American, it's a reminder of how quickly and disastrously a comfy life can de ravel into chaos. <details><summary>Spoiler</summary>The whole scene with that guy in red sunglasses was so good and so scary, he was just insane, killing anyone if they said something he slightly didn't like, I don't even know what side he was on! The whole final act with the Western Forces storming the white-house was so good and the final shot of the soldiers ruthlessly killing the president was amazing. I also loved how the film didn't just pick a side of the conflict and root for them the whole time, instead it just shows some War Photographers witnessing this mess.</details> I'm so glad I saw this film, I got the DVD as soon as it released</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/civilwar.jpg" alt="civilwar.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,film,civil war,4.5/5,favourites,alex garland,kirsten dunst,cinema watch,i have the dvd</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="46">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="46 indent" id="comments"></div></div><p class="previous"><a href="45.html"><-- Previous</a></p><p class="next"><a href="47.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/47.html
Normal file
62
blog/blogs/47.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Mon, 19 Aug 2024 02:36:31</h3>
|
||||
<h1 class="blog-title">Review section update</h1>
|
||||
<p class="blog-content">So, because I had so many review categories (<a href='https://deadvey.com/blog/reviews/'>See the reviews page</a>) I made <a href='https://deadvey.com/blog/reviews/'>a single page for all of them</a>, the main ones are film, video game and song reviews, I might add some more, like software and food, but for now I have 7 categories of things to review (Even though I have no shows reviewed haha).I've been reviewing a lot of things lately.<br/>Fly You High - DeaDvey</p>
|
||||
<div class="blog-images">
|
||||
|
||||
</div><br/>
|
||||
<sub><i><small>update,reviews</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="47">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="47 indent" id="comments"></div></div><p class="previous"><a href="46.html"><-- Previous</a></p><p class="next"><a href="48.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/48.html
Normal file
62
blog/blogs/48.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Mon, 19 Aug 2024 16:01:23</h3>
|
||||
<h1 class="blog-title">SONG Ever Fallen in Love (Buzzcocks) - 3.5/5</h1>
|
||||
<p class="blog-content">Classic and catchy chorus, a real singalong song. I also really like the line 'And if I start a commotion/I run the risk of losing you, and that's worse' I think this encapsulates Toxic relationships where one member doesn't critisize the other because they are afraid of the implications</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/everfalleninlove.jpg" alt="everfalleninlove.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>review,song,buzzcocks,love bites,ever fallen in love,1978,3.5/5</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="48">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="48 indent" id="comments"></div></div><p class="previous"><a href="47.html"><-- Previous</a></p><p class="next"><a href="49.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/49.html
Normal file
62
blog/blogs/49.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Mon, 19 Aug 2024 19:30:24</h3>
|
||||
<h1 class="blog-title">FILM Despicable Me - 3/5</h1>
|
||||
<p class="blog-content">This is obviously the best Despicable Me film, and I only today realised that Gru is voiced by Steve Carell and Vector (Direction and Magnitude) is voiced by Jason Segel, weirdly, just yesterday I reviewed <a href='https://deadvey.com/blog/blogs/45.html'>Marshall versus the Machines</a> which is also Jason Segel. Anyways, the review haha... Funny premise of a super villain stealing the moon and also looking after his three adopted kids! I think Gru would've been more successful if he befriended Vector at the start rather than freezing his head because then they wouldn't have been squabbling and couldn't stolen the moon easier... idk. I think Edith is my favourite of the children and I like Gru's mental car.</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/despicableme.jpg" alt="despicableme.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>despicable me,review,film,jason segel,steve carell,gru,minions,3/5,edith</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="49">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="49 indent" id="comments"></div></div><p class="previous"><a href="48.html"><-- Previous</a></p><p class="next"><a href="50.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/5.html
Executable file
62
blog/blogs/5.html
Executable file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Mon, 25 Dec 2023 18:52:08</h3>
|
||||
<h1 class="blog-title">Merry Christmas!</h1>
|
||||
<p class="blog-content">Merry Christmas everyone! Hope everyone is having a great day :), I had an interesting day, I got a Raspberry Pi 4 (4G version) and it's really cool, I already got <a href='https://supertuxkart.net/Main_Page'>Super Tux Kart</a> which is fun, I've also connected it to wifi and that's about it, I got a new keyboard which is way better than my old cheap stiff one, it seems to have helped my wpm, I got a massive power bank which has been charging for 3 hours now and has gone up 18% on the bank, meaning there is A LOT of total power in there :D Finally, I've gotton a new monitor for a grand total of 3 which is nice, I can have firefox on one, music on the other and a game on the third, I love it. I also got a Tux sticker which is super nice and a mug whcih says 'number #0 programmer' lol.<br/>Fly You High - DeaDvey<br/><img src='https://i.pinimg.com/originals/3c/b3/91/3cb39177fe9f33771c961835ac85c754.png' height='200' alt='image of tux' /><img src='/images/supertuxkart.png' alt='Image of supertux kart' height='200'/></p>
|
||||
<div class="blog-images">
|
||||
|
||||
</div><br/>
|
||||
<sub><i><small>Christmas,monitor,keyboard,sticker,mug,power bank</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="5">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="5 indent" id="comments"></div></div><p class="previous"><a href="4.html"><-- Previous</a></p><p class="next"><a href="6.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/50.html
Normal file
62
blog/blogs/50.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Tue, 20 Aug 2024 17:55:39</h3>
|
||||
<h1 class="blog-title">SONG Tears Dry on their Own (Amy Winehouse) - 4/5 ❤️</h1>
|
||||
<p class="blog-content">Amy Winehouse is a great artist, it's so sad that she died so young, this is probably my favourite of her songs though. The lines 'I wish I could say no regrets / And no emotional debts' is quite a powerful one I think, shows she wishes she didn't care that 'He' walked away, but in fact, he did. Such a talented singer!</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/tearsdry.jpg" alt="tearsdry.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>amy winehouse,tears dry on their own,back to black,song,review,4/5,favourites,sad</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="50">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="50 indent" id="comments"><b>deadvey</b>: <i>test</i><br/></div></div><p class="previous"><a href="49.html"><-- Previous</a></p><p class="next"><a href="51.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/51.html
Normal file
62
blog/blogs/51.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Tue, 20 Aug 2024 23:45:14</h3>
|
||||
<h1 class="blog-title">BOOK Why Don't Penguins Feet Freeze? (NewScientist) - 3.5/5</h1>
|
||||
<p class="blog-content">My grandmother gave this to me, it was my late grandfathers and it's pretty interesting, it's just interesting questions being answered by NewScientist readers. As for why <a href='https://deadvey.com/blog/blogs/5.html'>penguins (Tux reference?)</a> feet don't freeze, it seems that the arteries that go to their feet are in pairs one hot, and one cold, so the heat is transfered to the cooler artery rather than the floor! Yeah, just an interesting book</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/newscientist.jpg" alt="newscientist.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>book,review,3.5/5,why don't penguins feet freeze,newscientist,penguins</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="51">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="51 indent" id="comments"></div></div><p class="previous"><a href="50.html"><-- Previous</a></p><p class="next"><a href="52.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/52.html
Normal file
62
blog/blogs/52.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Wed, 21 Aug 2024 23:59:55</h3>
|
||||
<h1 class="blog-title">FILM Citizen Kane - 3.5/5</h1>
|
||||
<p class="blog-content">I did a review on this <a href='https://letterboxd.com/deadvey/film/citizen-kane/'>on Letterboxd</a> a while ago and gave it three stars, here is that review: <i>Idk, I know it’s super popular, but I think it’s not really for me, the story is a bit slow and oddly paced and the ending is the best but by far, most of it is kind if bland.</i><br/>My opinion hasn't changed that much, but I do think it's a little bit better on second viewing, perhaps I just understood the plot a bit better. Our painter did say it was the best film of all time, which I wouldn't quite agree with, but it is good none the less, less bland and less slow-feeling that my original review. I watched it with my friend who <a href='https://letterboxd.com/lexi_lexi/film/citizen-kane/'>found it funny</a> but gave it 2 stars. I still like the ending where <details><summary>Spoiler</summary>Rosebud is revealed to be his childhood sled, indicating that it was the last time in his life that he was happy was with his sled and before he became rich! deep</details></p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/citizenkane.jpg" alt="citizenkane.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>watched with friend,film,review,3.5/5,citizen kane,orson welles,newspaper tycoon,rewatch</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="52">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="52 indent" id="comments"></div></div><p class="previous"><a href="51.html"><-- Previous</a></p><p class="next"><a href="53.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/53.html
Normal file
62
blog/blogs/53.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Mon, 26 Aug 2024 00:49:06</h3>
|
||||
<h1 class="blog-title">GCSE results</h1>
|
||||
<p class="blog-content">As you may (if you live in england) the <a href=''https://deadvey.com/blog/blogs/15.html'>GCSE</a> results released on Thurday, which was a stressful day for me (especially as my dad seemed more exited than I) I went in to collect my results at 9am and then went straight back home to open them. For those who don't live in the UK, here's what the grades mean 9 is the best grade and U is the worst, in tiered exams (Higher/Foundation) you can not get any grade (Higher is 3 - 9 and Foundation is U - 5 (U being like a 0)) SO here's what I got...<ul><li>Computer Science - 9</li><li>Maths - 9</li><li>Physics - 9</li><li>Biology - 8</li><li>Chemistry - 8</li><li>RE - 8 *</li><li>English Language - 6</li><English Literature - 5</li><li>French - 5 †</li><li>Music Technology - Level 2 Merit ††</li></ul><br/>I'm pretty happy with my results, I knew I wouldn't do very well in English even though I got better grades in the <a href='https://deadvey.com/blog/blogs/13.html'>mocks</a>, and I was also hoping for 9's in Bio and Chem, but alas. I am planning on doing Physics, Maths and Computer Science at college so that's a good thing I got 9's in those subjects! Idk why I didn't make this page earlier, but I was writing <a href='https://deadvey.com/blog/blogs/45.html'>random ass reviews</a> last week<br/>Fly You High - DeaDvey<br/>Update, I've now <a href='https://deadvey.com/blog/blogs/57.html'>enroled</a><br/><br/><small>* RE is being remarked so could be a 9<br/>† French Foundation</br>†† About equivalent to a 5/6</small></p>
|
||||
<div class="blog-images">
|
||||
|
||||
</div><br/>
|
||||
<sub><i><small>gcses,exams,grades,college,results</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="53">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="53 indent" id="comments"></div></div><p class="previous"><a href="52.html"><-- Previous</a></p><p class="next"><a href="54.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/54.html
Normal file
62
blog/blogs/54.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Tue, 27 Aug 2024 16:53:59</h3>
|
||||
<h1 class="blog-title">Old laptop scrapped</h1>
|
||||
<p class="blog-content">My sister gave me her old <a href='https://www.huawei.com/uk/'>Huawei</a> laptop which had a broken charging port, I had no interest in getting it fixed (<a href='https://deadvey.com/blog/blogs/6.html'>especially as I have this laptop!</a>) so I unscrewed the back and took out the nvme storage and wifi adapter (my pc has no wireless support) but unfortunatley the card did not fit :(. I'm going to use the nvme for storage and I don't know what I'll do with the wifi card... I'll try get a picture up here if I can, my camera is playing up recently though.<br/>Fly You High - DeaDvey</p>
|
||||
<div class="blog-images">
|
||||
|
||||
</div><br/>
|
||||
<sub><i><small>laptop,scrap,nvme,wifi,fun,huawei</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="54">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="54 indent" id="comments"></div></div><p class="previous"><a href="53.html"><-- Previous</a></p><p class="next"><a href="55.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/55.html
Normal file
62
blog/blogs/55.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Tue, 27 Aug, 17:14:12</h3>
|
||||
<h1 class="blog-title">Batman! The batmobile is out of batteries!</h1>
|
||||
<p class="blog-content">What's a terry?</p>
|
||||
<div class="blog-images">
|
||||
|
||||
</div><br/>
|
||||
<sub><i><small>joke,batman,battery</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="55">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="55 indent" id="comments"></div></div><p class="previous"><a href="54.html"><-- Previous</a></p><p class="next"><a href="56.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/56.html
Normal file
62
blog/blogs/56.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Tue, 27 Aug 17:15:35</h3>
|
||||
<h1 class="blog-title">Crappy mp3 player from EBAY</h1>
|
||||
<p class="blog-content">I was looking on ebay for a portable mp3 player <a href='https://deadvey.com/blog/blogs/58.html'>since my iPod broke</a> and found a dirt cheat one that is a usb stick that you can plug into a computer, I thought why not, it's cheap, might not work, but it will be another linux USB drive if it doesn't work so win-win. Long story short... it didn't work. Long story long... the mp3 player has a micro SD card (TF) slot where the data is stored and then when you plug the mp3 player in you can see the contents of the micro sd card (I already had one(32GB)) so I wiped that and put a few songs on the tf card just to test if the player worked, of course, I had to put a <a href='https://deadvey.com/blog/blogs/55.html'>battery</a> in (AAA) and then I could power on the player. So the player has 3 modes, radio, music player and settings, the settings works fine, the Radio might work, but it has always picked up static when I've tried it... And the music player dones't work at ALL, I have tried so ext4, fat32, ntfs file systems and plenty different file formats to see if that was the issue, but the music player just doesn't open, let alone play music. Guess I'll be playing music from the computer only :(<br/>Fly You High - DeaDvey<br/>P.S check out <a href='https://deadvey.com/blog/blogs/54.html'>this post</a> (More troubleshooting)</p>
|
||||
<div class="blog-images">
|
||||
|
||||
</div><br/>
|
||||
<sub><i><small>mp3 player,ebay,troubleshooting,ipod,portable,angry!</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="56">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="56 indent" id="comments"></div></div><p class="previous"><a href="55.html"><-- Previous</a></p><p class="next"><a href="57.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/57.html
Normal file
62
blog/blogs/57.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Tue, 27 Aug 2024 17:28:25</h3>
|
||||
<h1 class="blog-title">College enrolement</h1>
|
||||
<p class="blog-content">I've enroled at college, I had to show them my <a href='https://deadvey.com/blog/blogs/53.html'>GCSE results</a> and my passport, it all went fairly smoothly, though there was no warning that they would take a photo so in my id card I look like a proper nonce.</p>
|
||||
<div class="blog-images">
|
||||
|
||||
</div><br/>
|
||||
<sub><i><small>college,photo,enrolement,gcse</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="57">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="57 indent" id="comments"></div></div><p class="previous"><a href="56.html"><-- Previous</a></p><p class="next"><a href="58.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/58.html
Normal file
62
blog/blogs/58.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Tue, 27 Aug 2024 17:45:25</h3>
|
||||
<h1 class="blog-title">iPod broke :(</h1>
|
||||
<p class="blog-content">My iPod which is like nearly 20 years old broke the other day, sad, I used to listen to all my music on that thing, it just wont turn on, no matter how much I charge it and stuff, probably an issue with the battery, I might try fix it but I doubt I'll have any luck actually... Knowing apple 🙄, in the meettime, <a href='https://deadvey.com/blog/blogs/56.html'>I've got a new mp3 player, which also doesn't work!</a></p>
|
||||
<div class="blog-images">
|
||||
|
||||
</div><br/>
|
||||
<sub><i><small>ipod,mp3 player,broke,troubleshoot</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="58">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="58 indent" id="comments"></div></div><p class="previous"><a href="57.html"><-- Previous</a></p><p class="next"><a href="59.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/59.html
Normal file
62
blog/blogs/59.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Sat, 7 Sep 2024 3:45:15</h3>
|
||||
<h1 class="blog-title">Terminator 2: Judgement Day - 3.5/5</h1>
|
||||
<p class="blog-content">Better than the first, gotta love Arnold!</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/terminator2.jpg" alt="terminator2.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>terminator,review,film,3.5/5,arnold</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="59">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="59 indent" id="comments"></div></div><p class="previous"><a href="58.html"><-- Previous</a></p><p class="next"><a href="60.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/6.html
Executable file
62
blog/blogs/6.html
Executable file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Thu, 28 Dec 2023 20:41:39</h3>
|
||||
<h1 class="blog-title">Homemade laptop, Nextcloud and possible updates to website</h1>
|
||||
<p class="blog-content">This week I used my raspberry pi to make a Homemade laptop, for the case I used a cardboard box with a hinge duck taped to the back so it doesn't flop around. I used a drawing tablet as a mouse as I had no spare mouse, the monitor is my phone conecting to the raspberry pi through <a href='https://en.wikipedia.org/wiki/Virtual_Network_Computing'>VNC</a> which is very janky and I used a massive portable charger to keep the phone and pi charged, the whole thing is really janky and I want to maybe get a 7 inch monitor for it which would work way better but, that's for the furture me. I've found a cool new feature on Nextcloud called face recognition, I have not gotton it working though so I'll try figure that out, I suck at troubleshooting, it took like a week to figure out how to use occ, it's in the nextcloud root directory ._., there's also a map fearture which uses <a href='https://www.openstreetmap.org'>Open Street Maps</a> to show where images where taken and when and also to plot addresses of your contacts which is very useful. Finally, I was thinking of added a comment system to my blog posts, but don't know if I should as it could be vunerable and shit like that and I also can't really be bothered seeing as no one would use it... On the plus side I got Jotit working on my UBT phone because it needed a bloody / at the end of the address, WHY??? idk it just does for some reason. Anyway, that's it for today.<br/> Fly You High - DeaDvey<br/></p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/custom_laptop.png" alt="custom_laptop.png" /><img class="blog-image" height="200" src="/images/nextcloud_maps.png" alt="nextcloud_maps.png" />
|
||||
</div><br/>
|
||||
<sub><i><small>Nextcloud,Website,VNC,Laptop,Maps</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="6">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="6 indent" id="comments"></div></div><p class="previous"><a href="5.html"><-- Previous</a></p><p class="next"><a href="7.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/60.html
Normal file
62
blog/blogs/60.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Sat, 7 Sep 2024 3:53:25</h3>
|
||||
<h1 class="blog-title">Beetlejuice - 2.5/5</h1>
|
||||
<p class="blog-content">Plot was hard to follow and a bit wild, but funny at times and I like the concept of a haunting from the perspective of the ghosts, adds a lot of comedy to the dynamic</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/beetlejuice.jpg" alt="beetlejuice.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>film,review,2.5/5,beetlejuice,family watch</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="60">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="60 indent" id="comments"></div></div><p class="previous"><a href="59.html"><-- Previous</a></p><p class="next"><a href="61.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/61.html
Normal file
62
blog/blogs/61.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Sat, 7 Sep 2024 22:59:20</h3>
|
||||
<h1 class="blog-title">Call of Duty 4 Modern Warfare - 4/5</h1>
|
||||
<p class="blog-content">I absolutley LOVED the sniper mission <details><summary>Spoiler</summary>Where you snipe Imran Zakhaev and then have to escape the enemies and get back onto the ship</details> Guess I gotta play MW2 now!</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/cod4.jpg" alt="cod4.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>game,review,cod4,4/5,soap,zakhaev,modern warfare</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="61">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="61 indent" id="comments"></div></div><p class="previous"><a href="60.html"><-- Previous</a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/7.html
Executable file
62
blog/blogs/7.html
Executable file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Wed, 3 Jan 2024 00:13:42</h3>
|
||||
<h1 class="blog-title">Happy New Year!!!!</h1>
|
||||
<p class="blog-content">Firstly, Happy new year everyone, I was planning on doing this yesterday, but got distracted, I don't know about any of you, but mine is 1080p, I don't like 4K because I find things like the cursor don't scale well on a 4K monitor in KDE and in a tty the text is super small on 4K! Email me your new years resolutions, I'd love to know: <a href='mailto:email@deadvey.xyz'>email@deadvey.xyz</a>. Secondly, I have discovered a new Terminal Emulator caleld <a href='https://github.com/borisfaure/terminology'>Terminology</a>, now it's quite heavy, so not really for anyone who likes lighter ones like Alacritty or Xterm, but it's really fancy and has optional backgrounds and overlays, and a cool bell that rings if you backspace too far back, I'm really liking it so far but we'll see, I also have installed a new font for my system which I'm using in Terminology called <a href='https://rubjo.github.io/victor-mono/'>Victor Mono</a> which is a monospaced font that has a nice subtle cursive style, I know that's kinda cursed but I really like it and Capital letters are non cursive so that they can be easier read. I have found a small (7 inch) screen that is designed for the Raspberry Pi which I might get in order to make a custom laptop for my Pi which will be cool as the VNC route is extremly unstable and laggy as it's over WiFi, I'll have a think about it though and I'll consider the 8 Inch version. My account has been accepted onto <a href='https://fossfarmers.company/a/deadvey8383'>Foss farmers Peertube Instance</a> so I'm now uploading to there, Check that out, though I am also uplaoding to <a href='/video'>My website</a>. I have made a <a href='https://github.com/DeaDvey/node'>Github repo for the node js of this website</a> and so this whole site is now public on Github I have made a commit today, I added previous and next links to the blog pages, it checks first if the post number is not equal to 0 (the first post) then if it is not, it adds a previous link, and if it is not the equal to the length of the array - 1 then it adds a next link, so I think I did it ok, that's in the makeblogs.js file. Finally, I have gotten back into the <i>spirit</i> of revision for the exams coming up since the christmas break where I gave myself a rest, I did some pastpapers and maths today which was <i>fun</i>. Okay, that's it for today, hope you have a good day!<br/>Fly You High - DeaDvey</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/fireworks.png" alt="fireworks.png" /><img class="blog-image" height="200" src="/images/terminology.png" alt="terminology.png" /><img class="blog-image" height="200" src="/images/farmtube.png" alt="farmtube.png" />
|
||||
</div><br/>
|
||||
<sub><i><small>new year,terminology,victor mono,resolution,pi,montior,7 inch,peertube,node js,github,previous,next,revision</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="7">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="7 indent" id="comments"></div></div><p class="previous"><a href="6.html"><-- Previous</a></p><p class="next"><a href="8.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/8.html
Executable file
62
blog/blogs/8.html
Executable file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Mon, 8 Jan 2024 16:39:59</h3>
|
||||
<h1 class="blog-title">Henry Stickmin completion</h1>
|
||||
<p class="blog-content">This week I have been playing a lot (and have 100%ed) of Henry Stickmin which has been really fun, I also bingewatched <a href='https://yewtu.be/watch?v=OcLU07tnfv4'>2 left thumbs' youtube series</a> about references in the remastered versions, I played the first few games a years ago when I watched DanTDM's series, and the new ones have a lot better graphics, but they're all great. I've also been re reeading a book series I used to be obsessed with called <a href='https://www.goodreads.com/series/43743-h-i-v-e'>H.I.V.E</a> which has been a blast and I'm exited as a new book released last year but I haven't read it. This week (I beleive) Hyprland overtook Sway in terms of stars on Github, which is exiting. I have not come to a decision about adding comments to my blog posts, but if I did, they would be pretty simple, no logins, just type your name and the comment, then I can respond to it if I see it; pretty simple. I'm going to be getting my braces out in about 6 weeks time and using retainers, so I'm looking forward to that :D. Yeah, there's not much to talk about really, I'm just anticipating the end of the Winter break tommorow (today is insect day) really.<br/>Fly You High - DeaDvey 🥱</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/henry-stickmin.jpg" alt="henry-stickmin.jpg" /><img class="blog-image" height="200" src="/images/hyprland-vs-sway.png" alt="hyprland-vs-sway.png" />
|
||||
</div><br/>
|
||||
<sub><i><small>henry stickmin,HIVE,comments,hyprland,sway,braces,bored</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="8">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="8 indent" id="comments"></div></div><p class="previous"><a href="7.html"><-- Previous</a></p><p class="next"><a href="9.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
62
blog/blogs/9.html
Normal file
62
blog/blogs/9.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
<div id="main">
|
||||
<h3 class="blog-date">Tue, 16 Jan 2024 15:49:40</h3>
|
||||
<h1 class="blog-title">Sorry for inactivity</h1>
|
||||
<p class="blog-content">As the title says, I haven't really had much to talk about as I've just been revising mostly, but I have been using more of my Raspberry Pi, I'm also on book 6/9 of <a href='https://www.goodreads.com/series/43743-h-i-v-e'>H.I.V.E (Higher Institute of Villainous Education)</a> which I'm re reading right now. I have built the rocket silo in <a href='https://factorio.com'>Factorio</a> but have not launched it. Oh yeah, and I began implementing comments, but they don't work yet so I guess that might work in the future, possibly... Other than that I've not done much<br/>Fly You High - DeaDvey</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/factorio.jpg" alt="factorio.jpg" /><img class="blog-image" height="200" src="/images/hive.jpg" alt="hive.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>HIVE,raspberry,pi,revision,factorio</small></i></sub><hr/>
|
||||
<h3>Comments section:</h3><br/>
|
||||
<form action="/blog/submit-comment" id="commentForm" method="post">
|
||||
<input name="name" class="form-control" id="name" placeholder="Enter your name"><br/>
|
||||
<input height="40px" name="comment" class="form-control input-comment" id="comment" placeholder="Enter your Comment...">
|
||||
<input type="hidden" name="pageID" value="9">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<div class="9 indent" id="comments"></div></div><p class="previous"><a href="8.html"><-- Previous</a></p><p class="next"><a href="10.html">Next --></a></p>
|
||||
<div id="links">
|
||||
</div><script src="/blog/comments.js"></script><script src="/blog/displayComments.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
540
blog/blogs/all.html
Executable file
540
blog/blogs/all.html
Executable file
File diff suppressed because one or more lines are too long
54
blog/blogs/latest.html
Executable file
54
blog/blogs/latest.html
Executable file
@ -0,0 +1,54 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>DeaDvey's Domain</title>
|
||||
<link rel="icon" href="/images/favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header main">
|
||||
<a href="https://chatcontrol.eu">#stopchatcontrol</a>
|
||||
<!--img src="/images/header-image.png" /--><br/>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> |
|
||||
<a href="/blog/index.html">Blogs</a> <a href="/blog/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> |
|
||||
<a href="/blog/reviews">Reviews</a> |
|
||||
<a href="/video/index.html">Videos</a> |
|
||||
<a href="/project/index.html">Projects</a> |
|
||||
<a href="https://gitlab.com/deadvey/htdocs">Gitlab <img height="15" src="/images/gitlab.png" alt="Link to gitlab page"/></a> |
|
||||
<a href="/search">Search blogs</a>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="main">
|
||||
|
||||
<h3 class="blog-date">Sat, 7 Sep 2024 22:59:20</h3>
|
||||
<h1 class="blog-title">Call of Duty 4 Modern Warfare - 4/5</h1>
|
||||
<p class="blog-content">I absolutley LOVED the sniper mission <details><summary>Spoiler</summary>Where you snipe Imran Zakhaev and then have to escape the enemies and get back onto the ship</details> Guess I gotta play MW2 now!</p>
|
||||
<div class="blog-images">
|
||||
<img class="blog-image" height="200" src="/images/cod4.jpg" alt="cod4.jpg" />
|
||||
</div><br/>
|
||||
<sub><i><small>game,review,cod4,4/5,soap,zakhaev,modern warfare</small></i></sub>
|
||||
<p class="previous"><a href="60.html"><-- Previous</a></p>
|
||||
<div id="links">
|
||||
</div><script src="https://code.jquery.com/jquery-3.6.1.min.js"></script><script src="/template.js"></script></div>
|
||||
<hr/>
|
||||
<div class="footer main">
|
||||
<ul>
|
||||
Internal pages:
|
||||
<li>• <a href="/experiments" >Experiments <img height="30" src="/images/experience-green-liquid.gif" /></a></li>
|
||||
<li>• <a href="/isthistheyearofthelinuxdesktop" >Is this the year of the Linux Desktop? <img src="/images/penguin-dance-pengu.gif" height="20" alt="penguin dancing" /></a></li>
|
||||
<li>• <a href="/theunderland" >theunderland wiki <img src="/images/flashlight.gif" alt="torch scanning" height="30" /></a></li>
|
||||
<br/>
|
||||
External sites:
|
||||
<li>• <a href="https://gitlab.com/deadvey" >Gitlab</a></li>
|
||||
<li>• <a href="https://mastodon.social/@DeaDvey" >Mastadon(.social)</a><a href="https://mastodon.social/@DeaDvey.rss"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://letterboxd.com/DeaDvey/" >Letterboxd (film reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
<li>• <a href="https://backloggd.com/u/DeaDvey/" >Backloggd (video game reviews)</a><a href="https://letterboxd.com/deadvey/rss/"><img src="/images/feedIcon.png" /></a></li>
|
||||
</ul><br/>
|
||||
<small width="300px">© DeaDvey 2023 - 2024<br/>This work is licensed under the terms of the <a href="/LICENSE">GNU General Public License, version 3.0</a>. You are free to copy, distribute, and modify this work under the terms of the <a href="/LICENSE">GPL 3.0 License</a>. Please see the full license text for details.</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
1
blog/comments-database.js
Normal file
1
blog/comments-database.js
Normal file
@ -0,0 +1 @@
|
||||
[[["Man","Do I love apple Juice!"],["test1","test"],["test2","TEST! :O <b>hello</b>"],["test","console.log(\"alert\")"],["","test"],["etst",""],["deadvey","I want people to comment random stuff here to see if anything breaks."],["",""],[":",":"],["deadvey","<script>console.log("test")</script>"],["test","hello"],["Shanee","Hello. XD"],["","&lt;b&gt;Test&lt;/b&gt;"],["deadvey","Hi Shanee"],["Shanee","Hi Deadvey!"],["deadvey","Sus"],[":",":"],["Shanee","Test"],["deadvey","test"],["Not using Javascript","Yay"],["&lt;b&gt;Test&lt;/b&gt;","Test"],["test","test"],["hello","hello"],["hello","HEY"],["test","&amp;lt;&amp;lt;"],["^","Stupid"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],["sussy","baka"],["☃️☃️☃️☃️","☃️"],["🏨","🏨"],["test","testtest"],["Comment","This is"],["test","testtest﷽﷽"],["hello","test"],["deadvey","test"]],[["☃️","☃️"],["😂","😂"],["🏨","🏨"],["hello","test"],["deadvey","test"],["deadvey test2","test2"],["deadvey","hello motd!"],["deadvey","Will motd see this?"],["deadvey","hey!"]],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[["DeaDVey","HEY GUYS!"]],[["sussy","baka"],["max","Hello guys!"],["not_deadvey","I totally agree, and DeaDvey is SO cool and awesome btw!!!"],["deadvey","Aww, thanks so much not_deadvey!"],["not_deadvey","OMFG A CELEBRITY SPOKE TO ME!!!!!!!! :O"]],[["deadvey","ok, here's the comments"],["deadvey","From w3m!"],["deadvey","third"],["deadvey","forth"]],[["deadvey","weird film"]],[["deadvey","Can&#039;t wait!"]],[],[["deadvey","it;s alright"]],[],[["deadvey","Couldn&#039;t find official art work for this so that is a screenshot."]],[],[],[],[],[["deadvey","there&#039;s also a change.org petition for stopping the chat control"]],[],[["deadvey","Also the son is annoying."]],[],[],[],[],[],[],[],[["deadvey","You need an N64 for ocarina of time :("]],[],[["javalsai","Wow, this is great, DeaDvey is SO cool!!!"],["javalsai(fake)","Naw, bro's impersonating me"],["javalsai(fake)","Imagine bad html encoding 😬"],["deadvey","Whoops, idk how to fix that can't lie."]],[],[],[],[],[],[],[["deadvey","test"]],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]]
|
5
blog/comments.js
Normal file
5
blog/comments.js
Normal file
@ -0,0 +1,5 @@
|
||||
comments=[[["Man","Do I love apple Juice!"],["test1","test"],["test2","TEST! :O <b>hello</b>"],["test","console.log(\"alert\")"],["","test"],["etst",""],["deadvey","I want people to comment random stuff here to see if anything breaks."],["",""],[":",":"],["deadvey","<script>console.log("test")</script>"],["test","hello"],["Shanee","Hello. XD"],["","&lt;b&gt;Test&lt;/b&gt;"],["deadvey","Hi Shanee"],["Shanee","Hi Deadvey!"],["deadvey","Sus"],[":",":"],["Shanee","Test"],["deadvey","test"],["Not using Javascript","Yay"],["&lt;b&gt;Test&lt;/b&gt;","Test"],["test","test"],["hello","hello"],["hello","HEY"],["test","&amp;lt;&amp;lt;"],["^","Stupid"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],[":",":"],["sussy","baka"],["☃️☃️☃️☃️","☃️"],["🏨","🏨"],["test","testtest"],["Comment","This is"],["test","testtest﷽﷽"],["hello","test"],["deadvey","test"]],[["☃️","☃️"],["😂","😂"],["🏨","🏨"],["hello","test"],["deadvey","test"],["deadvey test2","test2"],["deadvey","hello motd!"],["deadvey","Will motd see this?"],["deadvey","hey!"]],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[["DeaDVey","HEY GUYS!"]],[["sussy","baka"],["max","Hello guys!"],["not_deadvey","I totally agree, and DeaDvey is SO cool and awesome btw!!!"],["deadvey","Aww, thanks so much not_deadvey!"],["not_deadvey","OMFG A CELEBRITY SPOKE TO ME!!!!!!!! :O"]],[["deadvey","ok, here's the comments"],["deadvey","From w3m!"],["deadvey","third"],["deadvey","forth"]],[["deadvey","weird film"]],[["deadvey","Can&#039;t wait!"]],[],[["deadvey","it;s alright"]],[],[["deadvey","Couldn&#039;t find official art work for this so that is a screenshot."]],[],[],[],[],[["deadvey","there&#039;s also a change.org petition for stopping the chat control"]],[],[["deadvey","Also the son is annoying."]],[],[],[],[],[],[],[],[["deadvey","You need an N64 for ocarina of time :("]],[],[["javalsai","Wow, this is great, DeaDvey is SO cool!!!"],["javalsai(fake)","Naw, bro's impersonating me"],["javalsai(fake)","Imagine bad html encoding 😬"],["deadvey","Whoops, idk how to fix that can't lie."]],[],[],[],[],[],[],[["deadvey","test"]],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]]
|
||||
|
||||
if (typeof module !== "undefined" && module.exports) {
|
||||
module.exports = comments;
|
||||
}
|
7
blog/comments/0.js
Normal file
7
blog/comments/0.js
Normal file
@ -0,0 +1,7 @@
|
||||
comments = ["Hey", "Test", "First"]
|
||||
|
||||
comments = comments.reverse();
|
||||
|
||||
if (typeof module !== "undefined" && module.exports) {
|
||||
module.exports = comments;
|
||||
}
|
12
blog/displayComments.js
Normal file
12
blog/displayComments.js
Normal file
@ -0,0 +1,12 @@
|
||||
let div = document.getElementById("comments");
|
||||
let divText = div.innerHTML
|
||||
let length = div.className
|
||||
|
||||
console.log(divText,length)
|
||||
newPageHTML=""
|
||||
|
||||
for (let comment = 0; comment<comments[length].length; comment++) {
|
||||
newPageHTML+=`<b>${comments[length][comment][0]}</b>: <i>${comments[length][comment][1]}</i><b\
|
||||
r/>`
|
||||
}
|
||||
div.innerHTML = newPageHTML
|
444
blog/feed.xml
Executable file
444
blog/feed.xml
Executable file
File diff suppressed because one or more lines are too long
25
blog/index.html
Executable file
25
blog/index.html
Executable file
File diff suppressed because one or more lines are too long
148
blog/index.html.1
Normal file
148
blog/index.html.1
Normal file
@ -0,0 +1,148 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:letterboxd="https://letterboxd.com" xmlns:tmdb="https://themoviedb.org">
|
||||
<channel>
|
||||
<title>Letterboxd - Noneryor Biznis</title>
|
||||
<link>https://letterboxd.com/deadvey/</link>
|
||||
<description>Letterboxd - Noneryor Biznis</description>
|
||||
<atom:link rel="self" href="https://letterboxd.com/deadvey/rss/" type="application/rss+xml"/>
|
||||
|
||||
|
||||
<item> <title>V for Vendetta, 2005 - ★★★½</title> <link>https://letterboxd.com/deadvey/film/v-for-vendetta/</link> <guid isPermaLink="false">letterboxd-review-551997104</guid> <pubDate>Mon, 11 Mar 2024 11:24:32 +1300</pubDate> <letterboxd:watchedDate>2024-03-10</letterboxd:watchedDate> <letterboxd:rewatch>Yes</letterboxd:rewatch> <letterboxd:filmTitle>V for Vendetta</letterboxd:filmTitle> <letterboxd:filmYear>2005</letterboxd:filmYear> <letterboxd:memberRating>3.5</letterboxd:memberRating> <tmdb:movieId>752</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/5/1/4/0/0/51400-v-for-vendetta-0-600-0-900-crop.jpg?v=c962ca4bec"/></p> <p>No where near as good as the book, but still very impactful and sad. The final scene was pretty cool, and I love to hear Beethoven's 5th Symphony.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Jane Eyre, 2011 - ★★</title> <link>https://letterboxd.com/deadvey/film/jane-eyre-2011/</link> <guid isPermaLink="false">letterboxd-review-551824245</guid> <pubDate>Mon, 11 Mar 2024 08:26:47 +1300</pubDate> <letterboxd:watchedDate>2024-03-10</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>Jane Eyre</letterboxd:filmTitle> <letterboxd:filmYear>2011</letterboxd:filmYear> <letterboxd:memberRating>2.0</letterboxd:memberRating> <tmdb:movieId>38684</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/sm/upload/ds/qm/zb/e3/oC7wvdrBA0RgbXaJZwcxsl1zKBR.jpg-0-600-0-900-crop.jpg?v=485aa54abd"/></p> <p>Mr Rochester doesn't seem very nice.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Super 8, 2011 - ★★½</title> <link>https://letterboxd.com/deadvey/film/super-8/</link> <guid isPermaLink="false">letterboxd-review-550268328</guid> <pubDate>Sat, 9 Mar 2024 11:11:00 +1300</pubDate> <letterboxd:watchedDate>2024-03-08</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>Super 8</letterboxd:filmTitle> <letterboxd:filmYear>2011</letterboxd:filmYear> <letterboxd:memberRating>2.5</letterboxd:memberRating> <tmdb:movieId>37686</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/sm/upload/94/zp/vm/wr/b2FnFpBRuXa9buiYwctujn6zWrZ-0-600-0-900-crop.jpg?v=40c36ab160"/></p> <p>Randomly picked this up as a DVD at ASDA and was pleasantly surprised, it's not amazing, but it was a fun watch and some reallyy funny parts as well. Honestly the best post credits scene I've ever seen. Some pretty unrealistic bits like the train crash.<br />Like Stranger Things but before Stranger Things... also better than Stranger Things.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Dune: Part Two, 2024 - ★★★½ (contains spoilers)</title> <link>https://letterboxd.com/deadvey/film/dune-part-two/</link> <guid isPermaLink="false">letterboxd-review-545374566</guid> <pubDate>Sat, 2 Mar 2024 11:56:16 +1300</pubDate> <letterboxd:watchedDate>2024-03-01</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>Dune: Part Two</letterboxd:filmTitle> <letterboxd:filmYear>2024</letterboxd:filmYear> <letterboxd:memberRating>3.5</letterboxd:memberRating> <tmdb:movieId>693134</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/6/1/7/4/4/3/617443-dune-part-two-0-600-0-900-crop.jpg?v=cc533700f8"/></p> <p><em>This review may contain spoilers.</em></p> <p>Watched this today after 3 years o_o <br />I read the book over COVID so I knew what would happen, but from what I remember, there is a lot less exposition than this half of the book and Chani was way more intense, in the book I don't really think she really cared about the prophecy, but she seemed to HATE it in this which I thought added a lot more conflict in their relationship!<br />Also why was Paul's sister not born???<br />But I think the film was still good (even though the book is still better) and I thought part 2 was better than part 1 imo because NUKES<br />I'm defo gonna get the DVD when it drops... I want to watch again, I liked this very much so, wraps up the story well.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Schindler's List, 1993 - ★★★½</title> <link>https://letterboxd.com/deadvey/film/schindlers-list/</link> <guid isPermaLink="false">letterboxd-review-542853411</guid> <pubDate>Tue, 27 Feb 2024 09:10:12 +1300</pubDate> <letterboxd:watchedDate>2024-02-26</letterboxd:watchedDate> <letterboxd:rewatch>Yes</letterboxd:rewatch> <letterboxd:filmTitle>Schindler's List</letterboxd:filmTitle> <letterboxd:filmYear>1993</letterboxd:filmYear> <letterboxd:memberRating>3.5</letterboxd:memberRating> <tmdb:movieId>424</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/sm/upload/bz/1x/em/jr/yPisjyLweCl1tbgwgtzBCNCBle-0-600-0-900-crop.jpg?v=ca5215c5a9"/></p> <p>The ending was pretty sad but the film was way too long and drawn out. It was very good but I think very overrated. At first I thought the black and white style was pointless, but I think it was really good in the end, seeing the few bits of colour and the final moments of the film was all very well done.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>The Boy in the Striped Pyjamas, 2008 - ★★</title> <link>https://letterboxd.com/deadvey/film/the-boy-in-the-striped-pyjamas/</link> <guid isPermaLink="false">letterboxd-review-542043957</guid> <pubDate>Mon, 26 Feb 2024 08:10:21 +1300</pubDate> <letterboxd:watchedDate>2024-02-25</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>The Boy in the Striped Pyjamas</letterboxd:filmTitle> <letterboxd:filmYear>2008</letterboxd:filmYear> <letterboxd:memberRating>2.0</letterboxd:memberRating> <tmdb:movieId>14574</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/4/2/9/8/3/42983-the-boy-in-the-striped-pyjamas-0-600-0-900-crop.jpg?v=6e71b50937"/></p> <p>Pretty sad ending but the pacing was a bit slow and I wish we could've seen more Pavlo :(<br />Also, why is the sad part that te German boy died and not that 6 million jews died?!?!</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>WALL·E, 2008 - ★★★</title> <link>https://letterboxd.com/deadvey/film/walle/</link> <guid isPermaLink="false">letterboxd-review-541789352</guid> <pubDate>Sun, 25 Feb 2024 23:35:51 +1300</pubDate> <letterboxd:watchedDate>2024-02-25</letterboxd:watchedDate> <letterboxd:rewatch>Yes</letterboxd:rewatch> <letterboxd:filmTitle>WALL·E</letterboxd:filmTitle> <letterboxd:filmYear>2008</letterboxd:filmYear> <letterboxd:memberRating>3.0</letterboxd:memberRating> <tmdb:movieId>10681</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/4/5/9/9/4/45994-walle-0-600-0-900-crop.jpg?v=ad27f0ceac"/></p> <p>Rewatch.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Howl's Moving Castle, 2004 - ★★½</title> <link>https://letterboxd.com/deadvey/film/howls-moving-castle/</link> <guid isPermaLink="false">letterboxd-review-541789027</guid> <pubDate>Sun, 25 Feb 2024 23:34:49 +1300</pubDate> <letterboxd:watchedDate>2024-02-24</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>Howl's Moving Castle</letterboxd:filmTitle> <letterboxd:filmYear>2004</letterboxd:filmYear> <letterboxd:memberRating>2.5</letterboxd:memberRating> <tmdb:movieId>4935</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/4/9/0/6/2/49062-howl-s-moving-castle-0-600-0-900-crop.jpg?v=fde81bda52"/></p> <p>Weird premise but interesting, I liked Calcipher</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>King Kong, 1933 - ★½</title> <link>https://letterboxd.com/deadvey/film/king-kong/</link> <guid isPermaLink="false">letterboxd-review-539908584</guid> <pubDate>Fri, 23 Feb 2024 05:53:37 +1300</pubDate> <letterboxd:watchedDate>2024-02-22</letterboxd:watchedDate> <letterboxd:rewatch>Yes</letterboxd:rewatch> <letterboxd:filmTitle>King Kong</letterboxd:filmTitle> <letterboxd:filmYear>1933</letterboxd:filmYear> <letterboxd:memberRating>1.5</letterboxd:memberRating> <tmdb:movieId>244</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/sm/upload/oy/yt/bi/bi/vXInYahVp31uL8wZORckaoHq565-0-600-0-900-crop.jpg?v=ab693adabf"/></p> <p>"Anne, I guess I love you"<br />"Why Jack! You hate women"<br />"Yeah I know, but you ain't women"</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Chitty Chitty Bang Bang, 1968 - ★★½</title> <link>https://letterboxd.com/deadvey/film/chitty-chitty-bang-bang/</link> <guid isPermaLink="false">letterboxd-review-539898095</guid> <pubDate>Fri, 23 Feb 2024 05:28:08 +1300</pubDate> <letterboxd:watchedDate>2024-02-22</letterboxd:watchedDate> <letterboxd:rewatch>Yes</letterboxd:rewatch> <letterboxd:filmTitle>Chitty Chitty Bang Bang</letterboxd:filmTitle> <letterboxd:filmYear>1968</letterboxd:filmYear> <letterboxd:memberRating>2.5</letterboxd:memberRating> <tmdb:movieId>11708</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/4/5/0/4/6/45046-chitty-chitty-bang-bang-0-600-0-900-crop.jpg?v=e78fb21c90"/></p> <p>Very nostalgic but the soundtrack is not very good, except "chitty chitty bang bang".<br />The childcatcher used to give me nightmares lol.<br />How the fuck are they meant to be poor when he owns two houses and a fucking windmill?!?!?!</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Dune, 2021 - ★★★½</title> <link>https://letterboxd.com/deadvey/film/dune-2021/</link> <guid isPermaLink="false">letterboxd-review-538711958</guid> <pubDate>Wed, 21 Feb 2024 06:44:24 +1300</pubDate> <letterboxd:watchedDate>2024-02-20</letterboxd:watchedDate> <letterboxd:rewatch>Yes</letterboxd:rewatch> <letterboxd:filmTitle>Dune</letterboxd:filmTitle> <letterboxd:filmYear>2021</letterboxd:filmYear> <letterboxd:memberRating>3.5</letterboxd:memberRating> <tmdb:movieId>438631</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/sm/upload/nx/8b/vs/gc/cDbNAY0KM84cxXhmj8f0dLWza3t-0-600-0-900-crop.jpg?v=49eed12751"/></p> <p>I don't know why they didn't do it in 3 parts as the book is in 3 parts...<br />The acting is good and the story was great but it kind of didn't feel that inspiring to me, similar to the book. Although it's still good, I'm hopeful for part 2 to conclude the duology.<br />The special effects were stunning and the desert look amazing.<br />I'm conflicted between 3 and 3.5 stars - feels like 3.25 stars >:(<br />I liked the atmosphere too</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Threads, 1984 - ★★★</title> <link>https://letterboxd.com/deadvey/film/threads/</link> <guid isPermaLink="false">letterboxd-review-538206596</guid> <pubDate>Tue, 20 Feb 2024 11:11:08 +1300</pubDate> <letterboxd:watchedDate>2024-02-19</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>Threads</letterboxd:filmTitle> <letterboxd:filmYear>1984</letterboxd:filmYear> <letterboxd:memberRating>3.0</letterboxd:memberRating> <tmdb:movieId>17835</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/4/0/7/4/8/40748-threads-0-600-0-900-crop.jpg?v=6dd497145b"/></p> <p>A terrifying, disturbing and relentless depiction of how quickly our cmfrtable lives can be destroyed by things completely out of our control. <br />I think ill have nightmares</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Slumdog Millionaire, 2008 - ★★½</title> <link>https://letterboxd.com/deadvey/film/slumdog-millionaire/</link> <guid isPermaLink="false">letterboxd-review-537877955</guid> <pubDate>Mon, 19 Feb 2024 23:32:37 +1300</pubDate> <letterboxd:watchedDate>2024-02-19</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>Slumdog Millionaire</letterboxd:filmTitle> <letterboxd:filmYear>2008</letterboxd:filmYear> <letterboxd:memberRating>2.5</letterboxd:memberRating> <tmdb:movieId>12405</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/4/4/6/1/3/44613-slumdog-millionaire-0-600-0-900-crop.jpg?v=6cff9e413f"/></p> <p>Exiting and well paced.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Ted Lasso: The Missing Christmas Mustache, 2021 - ★★</title> <link>https://letterboxd.com/deadvey/film/ted-lasso-the-missing-christmas-mustache/</link> <guid isPermaLink="false">letterboxd-review-537181077</guid> <pubDate>Mon, 19 Feb 2024 06:17:42 +1300</pubDate> <letterboxd:watchedDate>2024-02-12</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>Ted Lasso: The Missing Christmas Mustache</letterboxd:filmTitle> <letterboxd:filmYear>2021</letterboxd:filmYear> <letterboxd:memberRating>2.0</letterboxd:memberRating> <tmdb:movieId>916760</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/8/2/2/7/2/6/822726-ted-lasso-the-missing-christmas-mustache-0-600-0-900-crop.jpg?v=d7d740b77f"/></p> <p>Mid episode cannot lie.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>The Sound of Music, 1965 - ★★★½</title> <link>https://letterboxd.com/deadvey/film/the-sound-of-music/</link> <guid isPermaLink="false">letterboxd-review-537178227</guid> <pubDate>Mon, 19 Feb 2024 06:13:13 +1300</pubDate> <letterboxd:watchedDate>2024-02-18</letterboxd:watchedDate> <letterboxd:rewatch>Yes</letterboxd:rewatch> <letterboxd:filmTitle>The Sound of Music</letterboxd:filmTitle> <letterboxd:filmYear>1965</letterboxd:filmYear> <letterboxd:memberRating>3.5</letterboxd:memberRating> <tmdb:movieId>15121</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/4/2/5/8/0/42580-the-sound-of-music-0-600-0-900-crop.jpg?v=743d70b886"/></p> <p>I'm yet to watch a musical that tops this.<br />Great story (if a bit fast paced)<br />Great soundtrack<br />Great Characters</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>The Thing, 1982 - ★★★</title> <link>https://letterboxd.com/deadvey/film/the-thing/</link> <guid isPermaLink="false">letterboxd-review-531725374</guid> <pubDate>Sun, 11 Feb 2024 07:25:12 +1300</pubDate> <letterboxd:watchedDate>2024-02-10</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>The Thing</letterboxd:filmTitle> <letterboxd:filmYear>1982</letterboxd:filmYear> <letterboxd:memberRating>3.0</letterboxd:memberRating> <tmdb:movieId>1091</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/sm/upload/t3/qn/vs/p5/s5fH3GqFcHbi2F0NSBSh4KRNTc0-0-600-0-900-crop.jpg?v=01880125bb"/></p> <p>Very good and I loved the alien being all weird and shit, the ending was sus...<br />The old guy with the hair is my favourite<br />I HATE WINDOWS!!!!</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Pirates of the Caribbean: Dead Man's Chest, 2006 - ★★★</title> <link>https://letterboxd.com/deadvey/film/pirates-of-the-caribbean-dead-mans-chest/</link> <guid isPermaLink="false">letterboxd-review-527184160</guid> <pubDate>Sun, 4 Feb 2024 09:37:13 +1300</pubDate> <letterboxd:watchedDate>2024-02-03</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>Pirates of the Caribbean: Dead Man's Chest</letterboxd:filmTitle> <letterboxd:filmYear>2006</letterboxd:filmYear> <letterboxd:memberRating>3.0</letterboxd:memberRating> <tmdb:movieId>58</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/5/1/9/8/9/51989-pirates-of-the-caribbean-dead-man-s-chest-0-600-0-900-crop.jpg?v=f9c46ae728"/></p> <p>WHY DOES EVERYONE LIKE JACK??? HES A DICK!!!</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>The Shawshank Redemption, 1994 - ★★★★½</title> <link>https://letterboxd.com/deadvey/film/the-shawshank-redemption/1/</link> <guid isPermaLink="false">letterboxd-review-527050763</guid> <pubDate>Sun, 4 Feb 2024 06:19:44 +1300</pubDate> <letterboxd:watchedDate>2024-02-03</letterboxd:watchedDate> <letterboxd:rewatch>Yes</letterboxd:rewatch> <letterboxd:filmTitle>The Shawshank Redemption</letterboxd:filmTitle> <letterboxd:filmYear>1994</letterboxd:filmYear> <letterboxd:memberRating>4.5</letterboxd:memberRating> <tmdb:movieId>278</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/sm/upload/7l/hn/46/uz/zGINvGjdlO6TJRu9wESQvWlOKVT-0-600-0-900-crop.jpg?v=8736d1c395"/></p> <p>Rewatched, still great, picked up on some stuff I hadn't noticed before.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Pirates of the Caribbean: The Curse of the Black Pearl, 2003 - ★★½</title> <link>https://letterboxd.com/deadvey/film/pirates-of-the-caribbean-the-curse-of-the-black-pearl/</link> <guid isPermaLink="false">letterboxd-review-522919684</guid> <pubDate>Mon, 29 Jan 2024 05:33:31 +1300</pubDate> <letterboxd:watchedDate>2024-01-27</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>Pirates of the Caribbean: The Curse of the Black Pearl</letterboxd:filmTitle> <letterboxd:filmYear>2003</letterboxd:filmYear> <letterboxd:memberRating>2.5</letterboxd:memberRating> <tmdb:movieId>22</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/2/6/9/5/2695-pirates-of-the-caribbean-the-curse-of-the-black-pearl-0-600-0-900-crop.jpg?v=272b36c0d8"/></p> <p>Squashbucklin'</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>The Hunger Games: The Ballad of Songbirds & Snakes, 2023 - ★★½</title> <link>https://letterboxd.com/deadvey/film/the-hunger-games-the-ballad-of-songbirds-snakes/</link> <guid isPermaLink="false">letterboxd-review-503528308</guid> <pubDate>Fri, 5 Jan 2024 09:45:57 +1300</pubDate> <letterboxd:watchedDate>2024-01-04</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>The Hunger Games: The Ballad of Songbirds & Snakes</letterboxd:filmTitle> <letterboxd:filmYear>2023</letterboxd:filmYear> <letterboxd:memberRating>2.5</letterboxd:memberRating> <tmdb:movieId>695721</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/6/1/9/5/1/0/619510-the-hunger-games-the-ballad-of-songbirds-snakes-0-600-0-900-crop.jpg?v=180f24b89f"/></p> <p>It was pretty good up until part 3, it just went on too long and felt like a separate film, Part 1 and 2 were ok but the singing bits were so cringe when LUCY GRAY sang in front of everyone, I felt the story and idea was good but the execution left a lot to be desired and it felt a bit uninspired.</p><p>Though it did get some good laughs like how there's two people called anus and how he kept shouting LUCY GRAY</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>One Life, 2023 - ★★★★</title> <link>https://letterboxd.com/deadvey/film/one-life-2023/</link> <guid isPermaLink="false">letterboxd-review-502839789</guid> <pubDate>Thu, 4 Jan 2024 13:11:06 +1300</pubDate> <letterboxd:watchedDate>2024-01-03</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>One Life</letterboxd:filmTitle> <letterboxd:filmYear>2023</letterboxd:filmYear> <letterboxd:memberRating>4.0</letterboxd:memberRating> <tmdb:movieId>760774</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/6/8/1/2/6/6/681266-one-life-0-600-0-900-crop.jpg?v=d5d1e7cb4f"/></p> <p>A very sad true story of Nicholas Winton, my dad cried, which is rare, the pacing is a bit odd, but the story is great and has a bitter sweet ending.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Wonka, 2023 - ★★★</title> <link>https://letterboxd.com/deadvey/film/wonka/</link> <guid isPermaLink="false">letterboxd-review-498942708</guid> <pubDate>Sun, 31 Dec 2023 11:16:25 +1300</pubDate> <letterboxd:watchedDate>2023-12-30</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>Wonka</letterboxd:filmTitle> <letterboxd:filmYear>2023</letterboxd:filmYear> <letterboxd:memberRating>3.0</letterboxd:memberRating> <tmdb:movieId>787699</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/7/0/6/0/8/3/706083-wonka-0-600-0-900-crop.jpg?v=d4bd6afd7f"/></p> <p>I prefered the first half, the second was a bit too over the top for me, though I guess that's the point 🤷<br />I think Timothy Chalomay (fuck the spelling) did well as Willy, however, I don't think he captured the magic of Gene Wilder.<br />Having said this negative stuff, the film was EXTREMELY fun and exiting and if it weren't for my brain constantly trying to find plot holes where sense was exchanged for an abundance of novelty, I would have given this a 4 star just because of how FUN it was to watch!</p><p>Side note: I loved how I recognised loads of the actors from Peep Show, Horrible Histories and Ghosts, it was really funny because I watched ghosts with my mum and we were pointing out the actors haha. The acting was great.</p><p>Also poor people 🤮</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Rise of the Guardians, 2012 - ★★½</title> <link>https://letterboxd.com/deadvey/film/rise-of-the-guardians/</link> <guid isPermaLink="false">letterboxd-review-493926816</guid> <pubDate>Mon, 25 Dec 2023 10:44:26 +1300</pubDate> <letterboxd:watchedDate>2022-12-16</letterboxd:watchedDate> <letterboxd:rewatch>Yes</letterboxd:rewatch> <letterboxd:filmTitle>Rise of the Guardians</letterboxd:filmTitle> <letterboxd:filmYear>2012</letterboxd:filmYear> <letterboxd:memberRating>2.5</letterboxd:memberRating> <tmdb:movieId>81188</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/sm/upload/sq/uq/2f/zg/dnEZZ0ZIVIfSIPIYl7kqYktAZlm-0-600-0-900-crop.jpg?v=32aac0db78"/></p> <p>I used to love this film, but, it's really not that good.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>A Christmas Carol, 2009 - ★★½</title> <link>https://letterboxd.com/deadvey/film/a-christmas-carol-2009/</link> <guid isPermaLink="false">letterboxd-review-493922763</guid> <pubDate>Mon, 25 Dec 2023 10:38:48 +1300</pubDate> <letterboxd:watchedDate>2023-12-21</letterboxd:watchedDate> <letterboxd:rewatch>Yes</letterboxd:rewatch> <letterboxd:filmTitle>A Christmas Carol</letterboxd:filmTitle> <letterboxd:filmYear>2009</letterboxd:filmYear> <letterboxd:memberRating>2.5</letterboxd:memberRating> <tmdb:movieId>17979</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/4/0/6/5/3/40653-a-christmas-carol-0-600-0-900-crop.jpg?v=0f15421ac7"/></p> <p>It's better than the 1984 version just because the 1984 one didn't do ghosts very well because of no cgi, but this one isn't much better, the animation is horrific to come from Disney and is deep in the uncanny valley. It is however fairly accurate to the source material so I'll give it that.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Nativity!, 2009 - ★★★★</title> <link>https://letterboxd.com/deadvey/film/nativity/</link> <guid isPermaLink="false">letterboxd-review-493914413</guid> <pubDate>Mon, 25 Dec 2023 10:26:38 +1300</pubDate> <letterboxd:watchedDate>2023-12-24</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>Nativity!</letterboxd:filmTitle> <letterboxd:filmYear>2009</letterboxd:filmYear> <letterboxd:memberRating>4.0</letterboxd:memberRating> <tmdb:movieId>49522</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/1/6/0/9/0/16090-nativity--0-600-0-900-crop.jpg?v=52b379cd7a"/></p> <p>Another classic to watch with my family around Christmas time, the portrayal of a British Primary school is so accurate and way more relatable than any American shit that takes up the rest of the Christmas films, truly a great film and probably my favorite Christmas one.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>The Santa Clause 2, 2002 - ★★½ (contains spoilers)</title> <link>https://letterboxd.com/deadvey/film/the-santa-clause-2/</link> <guid isPermaLink="false">letterboxd-review-493812741</guid> <pubDate>Mon, 25 Dec 2023 07:55:30 +1300</pubDate> <letterboxd:watchedDate>2023-12-23</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>The Santa Clause 2</letterboxd:filmTitle> <letterboxd:filmYear>2002</letterboxd:filmYear> <letterboxd:memberRating>2.5</letterboxd:memberRating> <tmdb:movieId>9021</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/4/7/4/2/2/47422-the-santa-clause-2-0-600-0-900-crop.jpg?v=c5f7c52cdf"/></p> <p><em>This review may contain spoilers.</em></p> <p>This film used to TERRIFY me as a kid, the naked plastic santa was traumatising. also... WHY THE FUCK DOES HE DRESS AS MUSSOLINI???<br />The story also doesn't make much sense and is kind of cringy and cliché, but given all that, it is still pretty nostalgic for me.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>The Santa Clause, 1994 - ★★★★ (contains spoilers)</title> <link>https://letterboxd.com/deadvey/film/the-santa-clause/</link> <guid isPermaLink="false">letterboxd-review-489677416</guid> <pubDate>Mon, 18 Dec 2023 11:43:29 +1300</pubDate> <letterboxd:watchedDate>2023-12-17</letterboxd:watchedDate> <letterboxd:rewatch>Yes</letterboxd:rewatch> <letterboxd:filmTitle>The Santa Clause</letterboxd:filmTitle> <letterboxd:filmYear>1994</letterboxd:filmYear> <letterboxd:memberRating>4.0</letterboxd:memberRating> <tmdb:movieId>11395</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/4/5/3/3/9/45339-the-santa-clause-0-600-0-900-crop.jpg?v=d8dc8222c4"/></p> <p><em>This review may contain spoilers.</em></p> <p>I watch this every year with my family and every time I notice stuff I hadn't before, it's so funny and self aware and stupid and I love it.<br />It's also really hard to watch at times because of the cringe like when Charlie announces really confidently to the class that his dad is Santa and everyone bursts out laughing is so awkward and I love it.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Napoleon, 2023 - ★★½</title> <link>https://letterboxd.com/deadvey/film/napoleon-2023/</link> <guid isPermaLink="false">letterboxd-review-478287363</guid> <pubDate>Sun, 26 Nov 2023 10:51:27 +1300</pubDate> <letterboxd:watchedDate>2023-11-25</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>Napoleon</letterboxd:filmTitle> <letterboxd:filmYear>2023</letterboxd:filmYear> <letterboxd:memberRating>2.5</letterboxd:memberRating> <tmdb:movieId>753342</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/6/7/4/1/3/7/674137-napoleon-0-600-0-900-crop.jpg?v=8cb54e07b5"/></p> <p>Really thrilling story, though I think it moved to fast and could've benefited from either covering a shorter period of his life or making it 2 films as a lot happened during the period it covered and there wasn't enough time to go too in detail.<br />Having said that, it was a really good overview of the life of Napoleon and how he acted and behaved, I loved watching it play out on big screen!<br />He should've taken advice from ABBA and been cautious about facing his waterloo: Waterloo.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>The Amazing Spider-Man 2, 2014 - ★★★½</title> <link>https://letterboxd.com/deadvey/film/the-amazing-spider-man-2/</link> <guid isPermaLink="false">letterboxd-review-472961593</guid> <pubDate>Wed, 15 Nov 2023 05:45:28 +1300</pubDate> <letterboxd:watchedDate>2023-11-14</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>The Amazing Spider-Man 2</letterboxd:filmTitle> <letterboxd:filmYear>2014</letterboxd:filmYear> <letterboxd:memberRating>3.5</letterboxd:memberRating> <tmdb:movieId>102382</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/sm/upload/fs/xh/ms/hx/9HFdUfEuvbsaBfroPZNeDiA9W9-0-600-0-900-crop.jpg?v=4bb266c754"/></p> <p>badass but also the scene... YOU KNOW WHAT I MEAN!!!!</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>The Amazing Spider-Man, 2012 - ★★★★</title> <link>https://letterboxd.com/deadvey/film/the-amazing-spider-man/</link> <guid isPermaLink="false">letterboxd-review-472961328</guid> <pubDate>Wed, 15 Nov 2023 05:44:27 +1300</pubDate> <letterboxd:watchedDate>2023-11-12</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>The Amazing Spider-Man</letterboxd:filmTitle> <letterboxd:filmYear>2012</letterboxd:filmYear> <letterboxd:memberRating>4.0</letterboxd:memberRating> <tmdb:movieId>1930</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/5/0/6/7/7/50677-the-amazing-spider-man-0-600-0-900-crop.jpg?v=2e109aabed"/></p> <p>bad<br />ass</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Spider-Man 3, 2007 - ★★★★</title> <link>https://letterboxd.com/deadvey/film/spider-man-3/</link> <guid isPermaLink="false">letterboxd-review-472537104</guid> <pubDate>Tue, 14 Nov 2023 05:37:07 +1300</pubDate> <letterboxd:watchedDate>2023-11-13</letterboxd:watchedDate> <letterboxd:rewatch>Yes</letterboxd:rewatch> <letterboxd:filmTitle>Spider-Man 3</letterboxd:filmTitle> <letterboxd:filmYear>2007</letterboxd:filmYear> <letterboxd:memberRating>4.0</letterboxd:memberRating> <tmdb:movieId>559</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/sm/upload/gi/zi/fp/69/uC2pAMjb32NIgQ1GdC1Bl6LZJc2-0-600-0-900-crop.jpg?v=71a23d5211"/></p> <p>Very nostalgic of this haha, but I LOVE sandman and venom and Harry is fucking amazing in this one.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Spider-Man 2, 2004 - ★★★½</title> <link>https://letterboxd.com/deadvey/film/spider-man-2/</link> <guid isPermaLink="false">letterboxd-review-472536882</guid> <pubDate>Tue, 14 Nov 2023 05:36:21 +1300</pubDate> <letterboxd:watchedDate>2023-11-12</letterboxd:watchedDate> <letterboxd:rewatch>Yes</letterboxd:rewatch> <letterboxd:filmTitle>Spider-Man 2</letterboxd:filmTitle> <letterboxd:filmYear>2004</letterboxd:filmYear> <letterboxd:memberRating>3.5</letterboxd:memberRating> <tmdb:movieId>558</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/sm/upload/pq/mi/kb/ck/7JtMVM58MnzxWeyubzLpXBiVnDC-0-600-0-900-crop.jpg?v=c5f2675b28"/></p> <p>Great film, you gotta love doc ock, and Jameson lmfao</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Spider-Man, 2002 - ★★★½</title> <link>https://letterboxd.com/deadvey/film/spider-man/</link> <guid isPermaLink="false">letterboxd-review-471932356</guid> <pubDate>Mon, 13 Nov 2023 01:42:40 +1300</pubDate> <letterboxd:watchedDate>2023-11-12</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>Spider-Man</letterboxd:filmTitle> <letterboxd:filmYear>2002</letterboxd:filmYear> <letterboxd:memberRating>3.5</letterboxd:memberRating> <tmdb:movieId>557</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/5/1/5/6/1/51561-spider-man-0-600-0-900-crop.jpg?v=a7394840f4"/></p> <p>Great film, I have 2 and 3 on DVD but had never watched the first one lol, it's thrilling and engaging, I think Toby Maguire kills the spiderman role!</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>A Christmas Carol, 1984 - ★★½</title> <link>https://letterboxd.com/deadvey/film/a-christmas-carol-1984/</link> <guid isPermaLink="false">letterboxd-review-471932056</guid> <pubDate>Mon, 13 Nov 2023 01:41:21 +1300</pubDate> <letterboxd:watchedDate>2023-11-11</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>A Christmas Carol</letterboxd:filmTitle> <letterboxd:filmYear>1984</letterboxd:filmYear> <letterboxd:memberRating>2.5</letterboxd:memberRating> <tmdb:movieId>13189</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/4/4/0/6/4/44064-a-christmas-carol-0-600-0-900-crop.jpg?v=41ab7d6485"/></p> <p>I found this DVD in my house and it's ok, bit weird at times, not loads to say about it tbh but the child acting is... not very good...</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Five Nights at Freddy's, 2023 - ★★★</title> <link>https://letterboxd.com/deadvey/film/five-nights-at-freddys/</link> <guid isPermaLink="false">letterboxd-review-464585502</guid> <pubDate>Sun, 29 Oct 2023 09:20:20 +1300</pubDate> <letterboxd:watchedDate>2023-10-28</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>Five Nights at Freddy's</letterboxd:filmTitle> <letterboxd:filmYear>2023</letterboxd:filmYear> <letterboxd:memberRating>3.0</letterboxd:memberRating> <tmdb:movieId>507089</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/4/3/6/9/4/8/436948-five-nights-at-freddy-s-0-600-0-900-crop.jpg?v=6ff52485a8"/></p> <p>Honestly the weirdest cinema experience I've ever had. Film was mid tbh, was seeing it with friends and that was fun, but the whole cinema was clapping at every thing and there were loads of roadmen telling everyone to shut the fuck up. But odd, also apparently some couple brought a blanket and were getting a blowy so yeahhhh. Also people were throwing popcorn at people and I was gonna get security but then didn't because I was afraid of getting attacked by the "roadmen" who also had a fight after the film ended 💀.</p><p>Anyway, apart from barley being able to watch the film, it was ok ig, pretty weird... I was NOT expecting the animatronics to make a table fort and then have a slumber party but ok. I also know practically nothing of FNAF lore so that didn't help also everyone screamed and clapped and stuff at the matpat cameo so ok.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>The Dark Crystal, 1982 - ★★★½</title> <link>https://letterboxd.com/deadvey/film/the-dark-crystal/</link> <guid isPermaLink="false">letterboxd-review-451963249</guid> <pubDate>Tue, 3 Oct 2023 04:52:58 +1300</pubDate> <letterboxd:watchedDate>2022-11-18</letterboxd:watchedDate> <letterboxd:rewatch>Yes</letterboxd:rewatch> <letterboxd:filmTitle>The Dark Crystal</letterboxd:filmTitle> <letterboxd:filmYear>1982</letterboxd:filmYear> <letterboxd:memberRating>3.5</letterboxd:memberRating> <tmdb:movieId>11639</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/sm/upload/mp/7r/db/iq/6g1Kh73qQRosyhRJpL3euQpMxOE-0-600-0-900-crop.jpg?v=5c45e7a1ee"/></p> <p>So cool, I want to rewatch for like the 5th time, but it's a really well done fantasy film even if it is a bit weird lmfao</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Teenage Mutant Ninja Turtles: Mutant Mayhem, 2023 - ★★★½ (contains spoilers)</title> <link>https://letterboxd.com/deadvey/film/teenage-mutant-ninja-turtles-mutant-mayhem/1/</link> <guid isPermaLink="false">letterboxd-review-439004827</guid> <pubDate>Sun, 3 Sep 2023 07:11:37 +1200</pubDate> <letterboxd:watchedDate>2023-09-02</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>Teenage Mutant Ninja Turtles: Mutant Mayhem</letterboxd:filmTitle> <letterboxd:filmYear>2023</letterboxd:filmYear> <letterboxd:memberRating>3.5</letterboxd:memberRating> <tmdb:movieId>614930</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/5/4/2/0/0/5/542005-teenage-mutant-ninja-turtles-mutant-mayhem-0-600-0-900-crop.jpg?v=1b29c3c041"/></p> <p><em>This review may contain spoilers.</em></p> <p>---non spoiler section---<br />I really enjoyed this and it was really funny throughout the film with good references and that, the story was a bit cliché and predictable lol, but it was still enjoyable none the less.<br />I'm gonna do a spolier review, but LEO HAS RIZZ!</p><p>---spoiler section---<br />I think it was a bit a of a drawback how easily the other mutants changed their whole mind and how set they then were at defeating SuperFly, felt quite jarring, especially how unanimous it was, also I really liked how it seemed like the turtles would team up with Super Fly at first, and i thought it would've been more interesting to see them go along with him at first, or all the way, would've been a bigger twist imo!</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Teenage Mutant Ninja Turtles: Mutant Mayhem, 2023 - ★★★½</title> <link>https://letterboxd.com/deadvey/film/teenage-mutant-ninja-turtles-mutant-mayhem/</link> <guid isPermaLink="false">letterboxd-review-439003502</guid> <pubDate>Sun, 3 Sep 2023 07:08:10 +1200</pubDate> <letterboxd:watchedDate>2023-09-02</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>Teenage Mutant Ninja Turtles: Mutant Mayhem</letterboxd:filmTitle> <letterboxd:filmYear>2023</letterboxd:filmYear> <letterboxd:memberRating>3.5</letterboxd:memberRating> <tmdb:movieId>614930</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/5/4/2/0/0/5/542005-teenage-mutant-ninja-turtles-mutant-mayhem-0-600-0-900-crop.jpg?v=1b29c3c041"/></p> <p>I really enjoyed this and it was really funny throughout the film with good references and that, the story was a bit cliché and predictable lol, but it was still enjoyable none the less.<br />I'm gonna do a spolier review, but LEO HAS RIZZ!</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>The Inbetweeners 2, 2014 - ★★</title> <link>https://letterboxd.com/deadvey/film/the-inbetweeners-2/</link> <guid isPermaLink="false">letterboxd-review-438115197</guid> <pubDate>Fri, 1 Sep 2023 04:30:53 +1200</pubDate> <letterboxd:watchedDate>2023-08-31</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>The Inbetweeners 2</letterboxd:filmTitle> <letterboxd:filmYear>2014</letterboxd:filmYear> <letterboxd:memberRating>2.0</letterboxd:memberRating> <tmdb:movieId>242022</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/1/6/9/5/8/3/169583-the-inbetweeners-2-0-600-0-900-crop.jpg?v=73e40988ac"/></p> <p>So funny both ironically and non ironically, I can't tell...<br />Not a strong story, but very memorable</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>The Inbetweeners Movie, 2011 - ★★★</title> <link>https://letterboxd.com/deadvey/film/the-inbetweeners-movie/</link> <guid isPermaLink="false">letterboxd-review-438114894</guid> <pubDate>Fri, 1 Sep 2023 04:29:46 +1200</pubDate> <letterboxd:watchedDate>2023-08-30</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>The Inbetweeners Movie</letterboxd:filmTitle> <letterboxd:filmYear>2011</letterboxd:filmYear> <letterboxd:memberRating>3.0</letterboxd:memberRating> <tmdb:movieId>69798</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/5/9/6/1/3/59613-the-inbetweeners-movie-0-600-0-900-crop.jpg?v=0179ee34dc"/></p> <p>Pretty funny but also too over the top at points</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Watchmen: Motion Comic, 2008 - ★★★★</title> <link>https://letterboxd.com/deadvey/film/watchmen-motion-comic/</link> <guid isPermaLink="false">letterboxd-review-435897733</guid> <pubDate>Sun, 27 Aug 2023 08:58:31 +1200</pubDate> <letterboxd:watchedDate>2023-08-26</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>Watchmen: Motion Comic</letterboxd:filmTitle> <letterboxd:filmYear>2008</letterboxd:filmYear> <letterboxd:memberRating>4.0</letterboxd:memberRating> <tmdb:tvId>18096</tmdb:tvId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/1/9/2/4/4/3/192443-watchmen-motion-comic-0-600-0-900-crop.jpg?v=7fd11c6f6f"/></p> <p>I love this 'film', and how they did the animations, the only complaint is that it's no different to the book, it's essentially just a different form of consuming the original book as all the frames are the same but animated, still a really unique style though, and of course the plot is still phenomenal!<br />Got the DVD's for my birthday and just got round to reviewing it haha 😭</p><p>--Also, it's not a film, it's a series of 12 episodes--</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>They Shall Not Grow Old, 2018 - ★★★★</title> <link>https://letterboxd.com/deadvey/film/they-shall-not-grow-old/</link> <guid isPermaLink="false">letterboxd-review-432306399</guid> <pubDate>Sat, 19 Aug 2023 09:57:03 +1200</pubDate> <letterboxd:watchedDate>2023-08-18</letterboxd:watchedDate> <letterboxd:rewatch>Yes</letterboxd:rewatch> <letterboxd:filmTitle>They Shall Not Grow Old</letterboxd:filmTitle> <letterboxd:filmYear>2018</letterboxd:filmYear> <letterboxd:memberRating>4.0</letterboxd:memberRating> <tmdb:movieId>543580</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/4/7/2/4/6/5/472465-they-shall-not-grow-old-0-600-0-900-crop.jpg?v=9c0fc74e68"/></p> <p>This is like my 20th time watching this.<br />It's such an amazing documentary for anyone interested in WW1</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>No Man's Land, 2001 - ★★★ (contains spoilers)</title> <link>https://letterboxd.com/deadvey/film/no-mans-land-2001/</link> <guid isPermaLink="false">letterboxd-review-432263755</guid> <pubDate>Sat, 19 Aug 2023 08:22:13 +1200</pubDate> <letterboxd:watchedDate>2023-08-18</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>No Man's Land</letterboxd:filmTitle> <letterboxd:filmYear>2001</letterboxd:filmYear> <letterboxd:memberRating>3.0</letterboxd:memberRating> <tmdb:movieId>8342</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/4/7/7/9/4/47794-no-man-s-land-0-600-0-900-crop.jpg?v=87b0567188"/></p> <p><em>This review may contain spoilers.</em></p> <p>Pretty interesting, and the ending was great, the middle bit before UNPROFER arrived was a bit dull, but also exiting at parts!</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Dunkirk, 2017 - ★★★</title> <link>https://letterboxd.com/deadvey/film/dunkirk-2017/</link> <guid isPermaLink="false">letterboxd-review-431959772</guid> <pubDate>Fri, 18 Aug 2023 13:21:23 +1200</pubDate> <letterboxd:watchedDate>2023-08-18</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>Dunkirk</letterboxd:filmTitle> <letterboxd:filmYear>2017</letterboxd:filmYear> <letterboxd:memberRating>3.0</letterboxd:memberRating> <tmdb:movieId>374720</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/sm/upload/md/nb/pu/3i/bOXBV303Fgkzn2K4FeKDc0O31q4-0-600-0-900-crop.jpg?v=7307b1ff5b"/></p> <p>Stunning film about the evacuation of Dunkirk, with a sad ending<br />Having said that, parts of it were a bit slow and the confusing as with Nolans style.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Darkest Hour, 2017 - ★★★½</title> <link>https://letterboxd.com/deadvey/film/darkest-hour/</link> <guid isPermaLink="false">letterboxd-review-431920038</guid> <pubDate>Fri, 18 Aug 2023 11:31:56 +1200</pubDate> <letterboxd:watchedDate>2023-08-17</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>Darkest Hour</letterboxd:filmTitle> <letterboxd:filmYear>2017</letterboxd:filmYear> <letterboxd:memberRating>3.5</letterboxd:memberRating> <tmdb:movieId>399404</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/3/3/3/6/5/4/333654-darkest-hour-0-600-0-900-crop.jpg?v=f7d0481d84"/></p> <p>Really interesting drama about early 1940 and the view of the UK on it's outcome. I loved the underground scene!</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>The Good Nazi, 2018 - ★★★</title> <link>https://letterboxd.com/deadvey/film/the-good-nazi/</link> <guid isPermaLink="false">letterboxd-review-431857157</guid> <pubDate>Fri, 18 Aug 2023 09:09:53 +1200</pubDate> <letterboxd:watchedDate>2023-08-17</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>The Good Nazi</letterboxd:filmTitle> <letterboxd:filmYear>2018</letterboxd:filmYear> <letterboxd:memberRating>3.0</letterboxd:memberRating> <tmdb:movieId>676757</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/6/0/1/1/6/5/601165-the-good-nazi-0-600-0-900-crop.jpg?v=86ba6d3d51"/></p> <p>Pretty interesting, and also quite sad.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>RRR, 2022 - ★★★</title> <link>https://letterboxd.com/deadvey/film/rrr/</link> <guid isPermaLink="false">letterboxd-review-430626647</guid> <pubDate>Tue, 15 Aug 2023 13:18:09 +1200</pubDate> <letterboxd:watchedDate>2023-08-14</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>RRR</letterboxd:filmTitle> <letterboxd:filmYear>2022</letterboxd:filmYear> <letterboxd:memberRating>3.0</letterboxd:memberRating> <tmdb:movieId>579974</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/5/0/8/0/3/7/508037-rrr-0-600-0-900-crop.jpg?v=4e4649b7f9"/></p> <p>Mentalist film I've seen</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Oppenheimer, 2023 - ★★★★</title> <link>https://letterboxd.com/deadvey/film/oppenheimer-2023/1/</link> <guid isPermaLink="false">letterboxd-review-430503387</guid> <pubDate>Tue, 15 Aug 2023 08:30:32 +1200</pubDate> <letterboxd:watchedDate>2023-08-14</letterboxd:watchedDate> <letterboxd:rewatch>Yes</letterboxd:rewatch> <letterboxd:filmTitle>Oppenheimer</letterboxd:filmTitle> <letterboxd:filmYear>2023</letterboxd:filmYear> <letterboxd:memberRating>4.0</letterboxd:memberRating> <tmdb:movieId>872585</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/7/8/4/3/2/8/784328-oppenheimer-0-600-0-900-crop.jpg?v=e3c6e7a32c"/></p> <p>I think it was better on rewatch as I understood what was going on much better, I still am annoyed that the film jumped around a lot, but it felt better on rewatch, just really confused first time lol.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>1917, 2019 - ★★★★</title> <link>https://letterboxd.com/deadvey/film/1917/</link> <guid isPermaLink="false">letterboxd-review-429214024</guid> <pubDate>Sat, 12 Aug 2023 21:38:06 +1200</pubDate> <letterboxd:watchedDate>2023-08-12</letterboxd:watchedDate> <letterboxd:rewatch>Yes</letterboxd:rewatch> <letterboxd:filmTitle>1917</letterboxd:filmTitle> <letterboxd:filmYear>2019</letterboxd:filmYear> <letterboxd:memberRating>4.0</letterboxd:memberRating> <tmdb:movieId>530915</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/4/6/0/1/5/5/460155-1917-0-600-0-900-crop.jpg?v=9eb1d95df5"/></p> <p>A gruesome depiction of the terrifying and uncertain nature of world war 1.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Barbie, 2023 - ★★★½</title> <link>https://letterboxd.com/deadvey/film/barbie/</link> <guid isPermaLink="false">letterboxd-review-425064850</guid> <pubDate>Fri, 4 Aug 2023 09:08:36 +1200</pubDate> <letterboxd:watchedDate>2023-08-03</letterboxd:watchedDate> <letterboxd:rewatch>No</letterboxd:rewatch> <letterboxd:filmTitle>Barbie</letterboxd:filmTitle> <letterboxd:filmYear>2023</letterboxd:filmYear> <letterboxd:memberRating>3.5</letterboxd:memberRating> <tmdb:movieId>346698</tmdb:movieId> <description><![CDATA[ <p><img src="https://a.ltrbxd.com/resized/film-poster/2/7/7/0/6/4/277064-barbie-0-600-0-900-crop.jpg?v=1b83dc7a71"/></p> <p>Thought it had a really good message and plot, unfortunatley some cunts were screaming sexist slurs and shouting for the first 45 mins before getting kicked out.<br />I think everyone should watch this as it makes some fantastic points about the bad bits of society and presents them really well!</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
|
||||
|
||||
|
||||
<item> <title>Films I have the dvd of</title> <link>https://letterboxd.com/deadvey/list/films-i-have-the-dvd-of/</link> <guid isPermaLink="false">letterboxd-list-43228514</guid> <pubDate>Thu, 22 Feb 2024 05:50:39 +1300</pubDate> <description><![CDATA[ <p>A list of films I own as DVD's</p> <ul> <li> <a href="https://letterboxd.com/film/aladdin/">Aladdin</a> </li> <li> <a href="https://letterboxd.com/film/avengers-endgame/">Avengers: Endgame</a> </li> <li> <a href="https://letterboxd.com/film/avengers-infinity-war/">Avengers: Infinity War</a> </li> <li> <a href="https://letterboxd.com/film/back-to-the-future/">Back to the Future</a> </li> <li> <a href="https://letterboxd.com/film/batman-1966/">Batman</a> </li> <li> <a href="https://letterboxd.com/film/chitty-chitty-bang-bang/">Chitty Chitty Bang Bang</a> </li> <li> <a href="https://letterboxd.com/film/a-christmas-carol-1984/">A Christmas Carol</a> </li> <li> <a href="https://letterboxd.com/film/the-dark-knight/">The Dark Knight</a> </li> <li> <a href="https://letterboxd.com/film/despicable-me/">Despicable Me</a> </li> <li> <a href="https://letterboxd.com/film/dune-2021/">Dune</a> </li> </ul> <p>...plus 57 more. <a href="https://letterboxd.com/deadvey/list/films-i-have-the-dvd-of/">View the full list on Letterboxd</a>.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Sandy films</title> <link>https://letterboxd.com/deadvey/list/sandy-films/</link> <guid isPermaLink="false">letterboxd-list-43621344</guid> <pubDate>Sat, 2 Mar 2024 12:14:40 +1300</pubDate> <description><![CDATA[ <ul> <li> <a href="https://letterboxd.com/film/dune-2021/">Dune</a> </li> <li> <a href="https://letterboxd.com/film/dune-part-two/">Dune: Part Two</a> </li> <li> <a href="https://letterboxd.com/film/the-inbetweeners-2/">The Inbetweeners 2</a> </li> <li> <a href="https://letterboxd.com/film/lawrence-of-arabia/">Lawrence of Arabia</a> </li> <li> <a href="https://letterboxd.com/film/life-of-brian/">Life of Brian</a> </li> <li> <a href="https://letterboxd.com/film/raiders-of-the-lost-ark/">Raiders of the Lost Ark</a> </li> <li> <a href="https://letterboxd.com/film/star-wars/">Star Wars</a> </li> </ul> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Harry Potter ranked</title> <link>https://letterboxd.com/deadvey/list/harry-potter-ranked/</link> <guid isPermaLink="false">letterboxd-list-43404035</guid> <pubDate>Mon, 26 Feb 2024 11:04:21 +1300</pubDate> <description><![CDATA[ <p>Harry Potter FILMS ranking</p> <ol> <li> <a href="https://letterboxd.com/film/harry-potter-and-the-goblet-of-fire/">Harry Potter and the Goblet of Fire</a> <p>Why the long hair though?</p> </li> <li> <a href="https://letterboxd.com/film/harry-potter-and-the-deathly-hallows-part-2/">Harry Potter and the Deathly Hallows: Part 2</a> </li> <li> <a href="https://letterboxd.com/film/harry-potter-and-the-order-of-the-phoenix/">Harry Potter and the Order of the Phoenix</a> <p>So much better than the book</p> </li> <li> <a href="https://letterboxd.com/film/harry-potter-and-the-deathly-hallows-part-1/">Harry Potter and the Deathly Hallows: Part 1</a> </li> <li> <a href="https://letterboxd.com/film/harry-potter-and-the-prisoner-of-azkaban/">Harry Potter and the Prisoner of Azkaban</a> </li> <li> <a href="https://letterboxd.com/film/harry-potter-and-the-chamber-of-secrets/">Harry Potter and the Chamber of Secrets</a> </li> <li> <a href="https://letterboxd.com/film/harry-potter-and-the-philosophers-stone/">Harry Potter and the Philosopher's Stone</a> </li> <li> <a href="https://letterboxd.com/film/harry-potter-and-the-half-blood-prince/">Harry Potter and the Half-Blood Prince</a> <p>So much worse than the book, this was my favourite book and they got rid of all the good bits</p> </li> </ol> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>LEGO films ranked</title> <link>https://letterboxd.com/deadvey/list/lego-films-ranked/</link> <guid isPermaLink="false">letterboxd-list-43403760</guid> <pubDate>Mon, 26 Feb 2024 10:58:31 +1300</pubDate> <description><![CDATA[ <ol> <li> <a href="https://letterboxd.com/film/the-lego-batman-movie/">The Lego Batman Movie</a> </li> <li> <a href="https://letterboxd.com/film/the-lego-movie/">The Lego Movie</a> </li> <li> <a href="https://letterboxd.com/film/lego-star-wars-holiday-special/">LEGO Star Wars Holiday Special</a> </li> <li> <a href="https://letterboxd.com/film/the-lego-movie-2-the-second-part/">The Lego Movie 2: The Second Part</a> </li> </ol> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>periodic table</title> <link>https://letterboxd.com/deadvey/list/periodic-table/</link> <guid isPermaLink="false">letterboxd-list-43226915</guid> <pubDate>Thu, 22 Feb 2024 04:57:24 +1300</pubDate> <description><![CDATA[ <p>Please comment any suggestions</p> <ol> <li> <a href="https://letterboxd.com/film/pre-hydrogen-man/">Pre: Hydrogen Man</a> </li> <li> <a href="https://letterboxd.com/film/helium/">Helium</a> </li> <li> <a href="https://letterboxd.com/film/lithium/">Lithium</a> </li> <li> <a href="https://letterboxd.com/film/miss-beryll-die-laune-eines-millionars/">Miss Beryll... die Laune eines Millionärs</a> </li> <li> <a href="https://letterboxd.com/film/calypso-boron/">Calypso Boron</a> </li> <li> <a href="https://letterboxd.com/film/carbon/">Carbon</a> </li> <li> <a href="https://letterboxd.com/film/nitrogen-2000-the-dutch-farmers-struggle/">NITROGEN 2000 – The Dutch Farmers’ Struggle</a> </li> <li> <a href="https://letterboxd.com/film/oxygen/">Oxygen</a> </li> <li> <a href="https://letterboxd.com/film/fluoride-poison-on-tap/">Fluoride: Poison On Tap</a> </li> <li> <a href="https://letterboxd.com/film/neon-2016/">Neon</a> </li> </ol> <p>...plus 108 more. <a href="https://letterboxd.com/deadvey/list/periodic-table/">View the full list on Letterboxd</a>.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>2023 films ranked</title> <link>https://letterboxd.com/deadvey/list/2023-films-ranked/</link> <guid isPermaLink="false">letterboxd-list-36340169</guid> <pubDate>Tue, 15 Aug 2023 14:21:40 +1200</pubDate> <description><![CDATA[ <p>Films that released this year (that I've seen) ranked</p> <ol> <li> <a href="https://letterboxd.com/film/oppenheimer-2023/">Oppenheimer</a> </li> <li> <a href="https://letterboxd.com/film/spider-man-across-the-spider-verse/">Spider-Man: Across the Spider-Verse</a> </li> <li> <a href="https://letterboxd.com/film/barbie/">Barbie</a> </li> <li> <a href="https://letterboxd.com/film/wonka/">Wonka</a> </li> <li> <a href="https://letterboxd.com/film/elemental-2023/">Elemental</a> </li> <li> <a href="https://letterboxd.com/film/teenage-mutant-ninja-turtles-mutant-mayhem/">Teenage Mutant Ninja Turtles: Mutant Mayhem</a> </li> <li> <a href="https://letterboxd.com/film/five-nights-at-freddys/">Five Nights at Freddy's</a> </li> <li> <a href="https://letterboxd.com/film/napoleon-2023/">Napoleon</a> </li> <li> <a href="https://letterboxd.com/film/indiana-jones-and-the-dial-of-destiny/">Indiana Jones and the Dial of Destiny</a> </li> <li> <a href="https://letterboxd.com/film/the-hunger-games-the-ballad-of-songbirds-snakes/">The Hunger Games: The Ballad of Songbirds & Snakes</a> </li> </ol> <p>...plus 1 more. <a href="https://letterboxd.com/deadvey/list/2023-films-ranked/">View the full list on Letterboxd</a>.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Christmas films ranked</title> <link>https://letterboxd.com/deadvey/list/christmas-films-ranked/</link> <guid isPermaLink="false">letterboxd-list-40055447</guid> <pubDate>Mon, 25 Dec 2023 10:31:01 +1300</pubDate> <description><![CDATA[ <p>I haven't rated all of these films, but I have seen them all<br />I am sticking to my guns: Home Alone is NOT a Christmas film</p> <ol> <li> <a href="https://letterboxd.com/film/nativity/">Nativity!</a> </li> <li> <a href="https://letterboxd.com/film/how-the-grinch-stole-christmas-2000/">How the Grinch Stole Christmas</a> </li> <li> <a href="https://letterboxd.com/film/the-santa-clause/">The Santa Clause</a> </li> <li> <a href="https://letterboxd.com/film/elf/">Elf</a> </li> <li> <a href="https://letterboxd.com/film/little-women-2019/">Little Women</a> </li> <li> <a href="https://letterboxd.com/film/nativity-2-danger-in-the-manger/">Nativity 2: Danger in the Manger!</a> </li> <li> <a href="https://letterboxd.com/film/get-santa/">Get Santa</a> </li> <li> <a href="https://letterboxd.com/film/the-christmas-chronicles/">The Christmas Chronicles</a> </li> <li> <a href="https://letterboxd.com/film/the-santa-clause-2/">The Santa Clause 2</a> </li> <li> <a href="https://letterboxd.com/film/a-christmas-carol-2009/">A Christmas Carol</a> </li> </ol> <p>...plus 6 more. <a href="https://letterboxd.com/deadvey/list/christmas-films-ranked/">View the full list on Letterboxd</a>.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Spiderman films ranked</title> <link>https://letterboxd.com/deadvey/list/spiderman-films-ranked/</link> <guid isPermaLink="false">letterboxd-list-38833334</guid> <pubDate>Wed, 15 Nov 2023 06:03:22 +1300</pubDate> <description><![CDATA[ <p>They're all really good though!!!</p> <ol> <li> <a href="https://letterboxd.com/film/spider-man-3/">Spider-Man 3</a> </li> <li> <a href="https://letterboxd.com/film/the-amazing-spider-man/">The Amazing Spider-Man</a> </li> <li> <a href="https://letterboxd.com/film/spider-man-2/">Spider-Man 2</a> </li> <li> <a href="https://letterboxd.com/film/spider-man-across-the-spider-verse/">Spider-Man: Across the Spider-Verse</a> </li> <li> <a href="https://letterboxd.com/film/spider-man-no-way-home/">Spider-Man: No Way Home</a> </li> <li> <a href="https://letterboxd.com/film/spider-man-homecoming/">Spider-Man: Homecoming</a> </li> <li> <a href="https://letterboxd.com/film/spider-man-far-from-home/">Spider-Man: Far from Home</a> </li> <li> <a href="https://letterboxd.com/film/spider-man-into-the-spider-verse/">Spider-Man: Into the Spider-Verse</a> </li> <li> <a href="https://letterboxd.com/film/spider-man/">Spider-Man</a> </li> <li> <a href="https://letterboxd.com/film/the-amazing-spider-man-2/">The Amazing Spider-Man 2</a> </li> </ol> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Star Trek films ranked</title> <link>https://letterboxd.com/deadvey/list/star-trek-films-ranked/</link> <guid isPermaLink="false">letterboxd-list-35249158</guid> <pubDate>Sat, 15 Jul 2023 06:15:50 +1200</pubDate> <description><![CDATA[ <p>I’ll rewatch them all pwomise 🥺</p> <ol> <li> <a href="https://letterboxd.com/film/star-trek-ii-the-wrath-of-khan/">Star Trek II: The Wrath of Khan</a> </li> <li> <a href="https://letterboxd.com/film/star-trek-iii-the-search-for-spock/">Star Trek III: The Search for Spock</a> </li> <li> <a href="https://letterboxd.com/film/star-trek-the-motion-picture/">Star Trek: The Motion Picture</a> </li> <li> <a href="https://letterboxd.com/film/star-trek-generations/">Star Trek: Generations</a> </li> </ol> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Comfort films</title> <link>https://letterboxd.com/deadvey/list/comfort-films/</link> <guid isPermaLink="false">letterboxd-list-35402650</guid> <pubDate>Thu, 20 Jul 2023 08:15:29 +1200</pubDate> <description><![CDATA[ <p>Fulms I watch when I’m sad :’(</p> <ul> <li> <a href="https://letterboxd.com/film/star-trek-ii-the-wrath-of-khan/">Star Trek II: The Wrath of Khan</a> </li> <li> <a href="https://letterboxd.com/film/the-empire-strikes-back/">The Empire Strikes Back</a> </li> <li> <a href="https://letterboxd.com/film/the-lord-of-the-rings-the-two-towers/">The Lord of the Rings: The Two Towers</a> </li> <li> <a href="https://letterboxd.com/film/the-lord-of-the-rings-the-return-of-the-king/">The Lord of the Rings: The Return of the King</a> </li> <li> <a href="https://letterboxd.com/film/harry-potter-and-the-goblet-of-fire/">Harry Potter and the Goblet of Fire</a> </li> <li> <a href="https://letterboxd.com/film/harry-potter-and-the-order-of-the-phoenix/">Harry Potter and the Order of the Phoenix</a> </li> <li> <a href="https://letterboxd.com/film/star-wars/">Star Wars</a> </li> <li> <a href="https://letterboxd.com/film/johnny-english-strikes-again/">Johnny English Strikes Again</a> </li> <li> <a href="https://letterboxd.com/film/the-shawshank-redemption/">The Shawshank Redemption</a> </li> </ul> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>The Bonds Name, James Name. Ranked</title> <link>https://letterboxd.com/deadvey/list/the-bonds-name-james-name-ranked/</link> <guid isPermaLink="false">letterboxd-list-35249036</guid> <pubDate>Sat, 15 Jul 2023 06:10:39 +1200</pubDate> <description><![CDATA[ <p>James Bond (I’ve watched) ranked</p> <ul> <li> <a href="https://letterboxd.com/film/no-time-to-die-2021/">No Time to Die</a> </li> <li> <a href="https://letterboxd.com/film/casino-royale-2006/">Casino Royale</a> </li> <li> <a href="https://letterboxd.com/film/quantum-of-solace/">Quantum of Solace</a> </li> </ul> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Indiana Jones ranked</title> <link>https://letterboxd.com/deadvey/list/indiana-jones-ranked/</link> <guid isPermaLink="false">letterboxd-list-34909351</guid> <pubDate>Mon, 3 Jul 2023 01:50:02 +1200</pubDate> <description><![CDATA[ <p>Yeep</p> <ol> <li> <a href="https://letterboxd.com/film/raiders-of-the-lost-ark/">Raiders of the Lost Ark</a> </li> <li> <a href="https://letterboxd.com/film/indiana-jones-and-the-last-crusade/">Indiana Jones and the Last Crusade</a> </li> <li> <a href="https://letterboxd.com/film/indiana-jones-and-the-temple-of-doom/">Indiana Jones and the Temple of Doom</a> </li> <li> <a href="https://letterboxd.com/film/indiana-jones-and-the-kingdom-of-the-crystal-skull/">Indiana Jones and the Kingdom of the Crystal Skull</a> </li> <li> <a href="https://letterboxd.com/film/indiana-jones-and-the-dial-of-destiny/">Indiana Jones and the Dial of Destiny</a> </li> </ol> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Pixar films ranking</title> <link>https://letterboxd.com/deadvey/list/pixar-films-ranking/</link> <guid isPermaLink="false">letterboxd-list-35192284</guid> <pubDate>Thu, 13 Jul 2023 04:32:21 +1200</pubDate> <description><![CDATA[ <p>I’ve not reviewed them all on LetterBoxd, but I have seen all of them.</p> <ol> <li> <a href="https://letterboxd.com/film/monsters-inc/">Monsters, Inc.</a> </li> <li> <a href="https://letterboxd.com/film/toy-story/">Toy Story</a> </li> <li> <a href="https://letterboxd.com/film/monsters-university/">Monsters University</a> </li> <li> <a href="https://letterboxd.com/film/coco-2017/">Coco</a> </li> <li> <a href="https://letterboxd.com/film/onward-2020/">Onward</a> </li> <li> <a href="https://letterboxd.com/film/the-incredibles/">The Incredibles</a> </li> <li> <a href="https://letterboxd.com/film/toy-story-3/">Toy Story 3</a> </li> <li> <a href="https://letterboxd.com/film/luca-2021/">Luca</a> </li> <li> <a href="https://letterboxd.com/film/cars/">Cars</a> </li> <li> <a href="https://letterboxd.com/film/walle/">WALL·E</a> </li> </ol> <p>...plus 17 more. <a href="https://letterboxd.com/deadvey/list/pixar-films-ranking/">View the full list on Letterboxd</a>.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>Star Ward ranked</title> <link>https://letterboxd.com/deadvey/list/star-ward-ranked/</link> <guid isPermaLink="false">letterboxd-list-34909323</guid> <pubDate>Mon, 3 Jul 2023 01:48:44 +1200</pubDate> <description><![CDATA[ <ol> <li> <a href="https://letterboxd.com/film/the-empire-strikes-back/">The Empire Strikes Back</a> </li> <li> <a href="https://letterboxd.com/film/star-wars/">Star Wars</a> </li> <li> <a href="https://letterboxd.com/film/return-of-the-jedi/">Return of the Jedi</a> </li> <li> <a href="https://letterboxd.com/film/star-wars-episode-iii-revenge-of-the-sith/">Star Wars: Episode III – Revenge of the Sith</a> </li> <li> <a href="https://letterboxd.com/film/solo-a-star-wars-story/">Solo: A Star Wars Story</a> </li> <li> <a href="https://letterboxd.com/film/star-wars-the-clone-wars/">Star Wars: The Clone Wars</a> </li> <li> <a href="https://letterboxd.com/film/star-wars-the-last-jedi/">Star Wars: The Last Jedi</a> </li> <li> <a href="https://letterboxd.com/film/star-wars-episode-ii-attack-of-the-clones/">Star Wars: Episode II – Attack of the Clones</a> </li> <li> <a href="https://letterboxd.com/film/star-wars-the-force-awakens/">Star Wars: The Force Awakens</a> </li> <li> <a href="https://letterboxd.com/film/star-wars-episode-i-the-phantom-menace/">Star Wars: Episode I – The Phantom Menace</a> </li> </ol> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
<item> <title>All time favourites</title> <link>https://letterboxd.com/deadvey/list/all-time-favourites/</link> <guid isPermaLink="false">letterboxd-list-34769058</guid> <pubDate>Tue, 27 Jun 2023 11:22:49 +1200</pubDate> <description><![CDATA[ <ol> <li> <a href="https://letterboxd.com/film/the-empire-strikes-back/">The Empire Strikes Back</a> </li> <li> <a href="https://letterboxd.com/film/the-lord-of-the-rings-the-return-of-the-king/">The Lord of the Rings: The Return of the King</a> </li> <li> <a href="https://letterboxd.com/film/the-shawshank-redemption/">The Shawshank Redemption</a> </li> <li> <a href="https://letterboxd.com/film/life-of-brian/">Life of Brian</a> </li> <li> <a href="https://letterboxd.com/film/the-lord-of-the-rings-the-two-towers/">The Lord of the Rings: The Two Towers</a> </li> <li> <a href="https://letterboxd.com/film/the-lord-of-the-rings-the-fellowship-of-the-ring/">The Lord of the Rings: The Fellowship of the Ring</a> </li> <li> <a href="https://letterboxd.com/film/star-wars/">Star Wars</a> </li> <li> <a href="https://letterboxd.com/film/raiders-of-the-lost-ark/">Raiders of the Lost Ark</a> </li> <li> <a href="https://letterboxd.com/film/return-of-the-jedi/">Return of the Jedi</a> </li> <li> <a href="https://letterboxd.com/film/avengers-infinity-war/">Avengers: Infinity War</a> </li> </ol> <p>...plus 3 more. <a href="https://letterboxd.com/deadvey/list/all-time-favourites/">View the full list on Letterboxd</a>.</p> ]]></description> <dc:creator>Noneryor Biznis</dc:creator> </item>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</channel>
|
||||
</rss>
|
222
blog/reviews.csv
Normal file
222
blog/reviews.csv
Normal file
@ -0,0 +1,222 @@
|
||||
Date,Name,Year,Letterboxd URI,Rating,Rewatch,Review,Tags,Watched Date
|
||||
2023-04-27,Star Wars,1977,https://boxd.it/4aRETt,4.5,Yes,"A classic of cinema, while now it is a bit dated, I would say it is one of the greatest films of all time. A must see if you haven't already. I think they could've shown more of Vader and it started off kind of slowly. But 5/5 for me! Best Star Wars film.","star wars, masterpiece, fantasy, scifi",2023-04-27
|
||||
2023-04-27,The Lord of the Rings: The Fellowship of the Ring,2001,https://boxd.it/4aRHzV,4.5,Yes,"I think it is a great adaptation from book to film including most of the vital story elements and being a really fleshed out film that can survive on it's own. I though the ending was really good (If you know you know) and was really emotional, although they could've devoted more time to the council of Elrond as that is quite an important element to the book. Overall a cinematic masterpiece, in my top 5 films for sure!","lotr, lord, rings, fantasy, frodo, gandalf, masterpiece",2023-04-27
|
||||
2023-04-28,The Lord of the Rings: The Two Towers,2002,https://boxd.it/4aRPFR,4,,A great sequel to the First film. The Battle of Helms Deep is possibly my favourite scene from any film ever. I thought it maybe dragged on a bit but still top 5 films for me :D,"lotr, lord, rings, towers, two, two towers, fantasy, masterpiece",2023-04-27
|
||||
2023-06-24,The Imitation Game,2014,https://boxd.it/4pVYO7,3,,"Really interesting as it is based off of true story of Alan Turing, one of my hero's in the tech world, I love this story for the characters and intensity, I would definetley recommend it, even though it's not perfect, it is a really good watch!","enigma, gay, pride, computers, alan turing, ww2, nazi, enigma machine, christopher, home watch, rewatch, amazon watch",
|
||||
2023-06-24,Johnny English,2003,https://boxd.it/4pXDlH,3.5,Yes,"SO FUNNY! The ending though! This feels like a fanfiction of a cross between James Bond and Mr Bean! It's just so good, this is my 3rd time watching, but just rewatched, watch if you like secret agenty stuff and mr bean-like-comedy!","mr bean, james bond, secret agent, comedy, ending, king, home watch, rewatch, amazon watch",2023-06-23
|
||||
2023-06-24,Star Trek II: The Wrath of Khan,1982,https://boxd.it/4q4USR,4.5,,"100% The best of the Star Trek films! And the ending GOD, if only this wasn't retconned in !The Search for Spock, it would be a perfect 5/5 stars. Also Khan! Great villain, I'm sorry Bennedict Cumberbatch, Ricardo Montalbán did Khan WAY better!","khan, kirk, spock, enterprise, sad, ending",2023-06-24
|
||||
2023-06-24,Star Trek: The Motion Picture,1979,https://boxd.it/4q4Vwn,3,,"It had to walk before it could run, the story is great, but the pacing and the whole start section is far to slow, I do like how it referenced real life events and the whole VGER thing was really cool.","motion pictu, kirk, spock, vger",2023-06-24
|
||||
2023-06-24,The Lord of the Rings: The Return of the King,2003,https://boxd.it/4q581n,4.5,Yes,"SO GOOD! Man I love this film! I can see barely anything wrong with it so I won't even try, I love how it is long, adds more content and stuff to watch and yet the pacing is still really good! The two battles in it are both so good (Though Helms Deep from Two Towers is the best) the emotional eagle scene and scene at the Grey Havens are both so well done, I always loved the books and these are such good adaptations!","lotr, mordor, sauron, fantasy, high fantasy, black gate, pelenor fields, minas tirith, adaptation, eagles, grey haven",2023-06-24
|
||||
2023-06-25,Star Wars,1977,https://boxd.it/4q5DfP,4,Yes,"It started it all, but because they had to introduce everything, the pacing isn't perfect and not loads happens, I still love this though!","star wars, obi wan, luke, vader",2023-06-24
|
||||
2023-06-25,Return of the Jedi,1983,https://boxd.it/4q5EeN,3.5,,"I don't really like the Ewoks or the whole start sequence, but after that, this film is so good, the ending is a really good finale to one of the best trilogies of all time, I kind of wish they'd left it here.","star wars, vader, unmasked, finale, masterpiece",2023-06-24
|
||||
2023-06-25,Star Wars: Episode III – Revenge of the Sith,2005,https://boxd.it/4q5ERb,3.5,Yes,"The action and pacing I think is really good, by far the best of the prequel trilogy, this and the clone wars completely carry it, if you want to see my clone wars (series) review it's on serializd","star wars, revenge, sith, anakin, prequels, action",2023-06-24
|
||||
2023-06-25,Star Wars: The Clone Wars,2008,https://boxd.it/4q5FlP,3,,"Eh it's *ok* but the series is way better, this just started it which I respect, it's still better than the first and second prequels.","clone wars, movie, ok, started it off",2023-06-24
|
||||
2023-06-25,Star Wars: Episode I – The Phantom Menace,1999,https://boxd.it/4q5Gdn,2,,"I think it had potential, but was real let down after the originals, pacing was off and not enough action, having said that I respect it for building the lore of Star Wars and setting up the originals, which I cannot say for the sequels (they were pointless)","phantom menace, jar jar, binks, boring, respect, pacing",2023-06-24
|
||||
2023-06-25,Star Wars: Episode II – Attack of the Clones,2002,https://boxd.it/4q5GOt,2.5,Yes,"A bit better than phantom menace with more action and world building, but still not great, the arena scene was good but this was completely carried by the clone wars lol","arena, prequels",2023-06-24
|
||||
2023-06-25,Star Wars: The Force Awakens,2015,https://boxd.it/4q5HEp,2,Yes,"I like the action, and effects and stuff, the story was not great as it kinda just copied the original, this film started the sequels so for that I give it 2 stars. Stand-alone it is pretty good, but feels compeletley pointless to be a star wars film, complete cash grab","eh, action, pointless",2023-06-24
|
||||
2023-06-25,Star Wars: The Last Jedi,2017,https://boxd.it/4q5IfP,2.5,,"I think it was brave as it was different from the formula, but again, it just feels like a pointless cash grab, the ending was good I must admit, best of the sequels I think (despite the hate)","ok, pointess, cash grab, good ending",2023-06-24
|
||||
2023-06-25,Star Wars: The Rise of Skywalker,2019,https://boxd.it/4q5J8b,1.5,Yes,"This is the worst Star Wars film, the action is ok, but not as good as Force Awakens, but it is again a pointless cash grab and the story SUKS ASS, man this had potential to be a great finale so I'm really disappointed, the plot makes no sense and the action is just ok. 1.5 stars","bad, cash grab, bad plot, no story, ok action",2023-06-24
|
||||
2023-06-25,Solo: A Star Wars Story,2018,https://boxd.it/4q5OcR,3,Yes,"This film is so underrated, it is worse than Rouge One, but come on, this film is really good, it has some really good action, a decent plot and sets up han's character for the originals! Also Maul is there as a clone wars reference (kind of) which I love.","Darth MAUL!, Han solo, underated",2023-06-24
|
||||
2023-06-25,Rogue One: A Star Wars Story,2016,https://boxd.it/4q5ULt,3.5,,"I think this is really good, solves one of the big plot holes of the originals, while still having a really compelling plot, I LOVE THE LAST SCENE, seriously one of the best scenes in Star Wars, Vader is so badass I fucking love it! Action isn't great tbf, but still a great plot.","vader, badass, scenes, sad, plot",2023-06-24
|
||||
2023-06-25,Batman,1966,https://boxd.it/4qdeWl,3.5,Yes,"Best Batman film, I love bombs and Adam West,
|
||||
So nostalgic, one of the first films I remember!","batman, adam west, comedy, nostagia",2023-06-24
|
||||
2023-06-25,Life of Brian,1979,https://boxd.it/4qoDJ9,4,Yes,"Fucking hilarious all the way through, a comedic masterpiece as ever with Monty Python!","comedy, monty python, brian, life of brian",2023-06-25
|
||||
2023-06-26,Warcraft,2016,https://boxd.it/4qpBUr,1,,"Wow, this was shit.
|
||||
This film was so poorly made, badly written and struggled to keep my attention, it was a disorientating shitshow from start to end, with the final scene being anything of value. When ever the orcs and humans were on screen together it felt so disjointed as the humans are completely live action where as the orcs have the reminiscent cartoonish design like in the game, this works in the game, it does not here. The only reason this is not a 0.5 star is because of the abundance of fan service that was quite nice. Who decided this was a good idea?","warcraft, bad, shitshow, fan service, cash grab, bad adaptation",2023-06-25
|
||||
2023-06-29,Lawrence of Arabia,1962,https://boxd.it/4rlu3V,3.5,,"So firstly, I think this film has obviously aged a bit, slower paced than modern film, and not loads of music.
|
||||
Having said that, the story is great, I don't want to spoil it, but it is really good, about Lawrence helping to liberate the Arabs, I think the characters are really defined and well done.
|
||||
(Also film is very long so make some time if you plan to watch it)","lawrence, arabia, arabs, ww1, world war, freedom, damascus",2023-06-28
|
||||
2023-06-30,Asterix & Obelix: The Middle Kingdom,2023,https://boxd.it/4rEm1b,1.5,,"Story was... ok, nothing special,
|
||||
but my god, Astrix and Obelix do NOT translate to film form, best leave them as comic 0_0 really bad idea, whole thing made me cringe really bad, especially the ending...
|
||||
I thought the humour was decent too.","bad, shouldn't be a film, bad idea, cringe, ok story",2023-06-29
|
||||
2023-06-30,Elysium,2013,https://boxd.it/4rGcJB,3,,"The start and end where thrilling, but the middle was a bit boring, the characters are not super well fleshed out, but I liked the story and action non-the-less, would recommend if you like sci-fi.","sci-fi, action, futuristic",2023-06-29
|
||||
2023-07-01,Spider-Man: Across the Spider-Verse,2023,https://boxd.it/4rQjOt,4,,"I love the references and cameos to other spidermen, the bit where they all point at each other was great and the emotional scenes hit well, the live action cameos actually worked quite well and didn't look too out of place; annoying that it ended on a cliffhanger, though I will definitely be watching the 3rd instalment! but the art was even better than the first film my god. The hacking was pretty goofy too.","spiderman, comic, amazing, gwen, cannon event, cinema watch",2023-06-30
|
||||
2023-07-01,The Terminator,1984,https://boxd.it/4rRA8V,3.5,,"First half is kind of boring, but second half really kicks off!
|
||||
I'll be back, to check who's watched it.","i'll be back, NICE... scenes, rewatch, home watch, amazon watch",2023-06-30
|
||||
2023-07-01,The Shawshank Redemption,1994,https://boxd.it/4rU2tr,4.5,Yes,"Everything about this film is so exquisite, the way the story beats tie in together, the way the characters are designed, the way everything links together like a proper story.
|
||||
And the last 45 minutes are some of the best moments in cinema, I don't know exactly what it is about this movie, but goddammit is it a near masterpiece all throughout!
|
||||
This film always makes me feel so emotional in a way no other film can.","masterpiece, jail break, chefs kiss, amazing scenes, rewatch, home watch",2023-06-30
|
||||
2023-07-01,Indiana Jones and the Temple of Doom,1984,https://boxd.it/4s52Vd,3,Yes,"Bit racist, but a swell time throughout, the cart scene especially!","home watch, rewatch, dvd watch, temple, doom, stereotypes",2023-07-01
|
||||
2023-07-01,The 1882 Transit of Venus,1882,https://boxd.it/4s67zj,4,,"A thrilling story, I loved the part where you could see Venus, I was on the edge of my seat!","home watch, youtube watch",2023-07-01
|
||||
2023-07-02,Indiana Jones and the Dial of Destiny,2023,https://boxd.it/4saUdJ,2,,"Thought the action was great, the first half was really good and the opening train scene was stunning, The whole time travel bit felt out of place though and the ending wth Mirian was pretty cringe.
|
||||
Also, the plot felt too similar to Raiders with them having half a thing then finding the other half then the Nazi’s take it off them which leads to the Nazi’s death.
|
||||
Good film, bad final 1/3, also too long; felt bloated.","cinema watch, freind watch, dramatic, time travel, old indi",2023-07-01
|
||||
2023-07-08,Lawrence of Arabia,1962,https://boxd.it/4tXS01,3.5,Yes,"Stunning film, better on rewatch so I'll rate it higher than my previous one.
|
||||
See this review for my opinions on the film: https://letterboxd.com/deadvey/film/lawrence-of-arabia/0/","netflix watch, home watch, lawrence, arabia, stunning, story, real story",2023-07-07
|
||||
2023-07-08,All Quiet on the Western Front,2022,https://boxd.it/4u4pLV,4,,"This film is so ridiculously depressing, the ending was great, and all the trench scenes where phenomenal.
|
||||
I thought some of the film in the middle was a tad boring and the plot on it's own was a bit slow/weirdly paced, but the content and thrilling action scenes are so good.","netflix watch, home watch",2023-07-07
|
||||
2023-07-09,Elemental,2023,https://boxd.it/4ug9rp,3,,"The story and emotional scenes where strong, idk what it is that means it felt a tad lacklustre for mw, maybe the middle was a bit disconnected at points. Having said that, the film was still great and the scenes at the end was pretty sad, the whole last act is great, I would recommend for people who like Pixar’s style of films and romance’s, it felt quite unique.",,2023-07-08
|
||||
2023-07-09,The Godfather,1972,https://boxd.it/4uxtFF,3,,"Interesting story with a cool plot, I personally think it's overrated (being second on IMDB) but I can recognise it as a great film still.
|
||||
Michael's character is done well, pretty thrilling.",home watch,2023-07-09
|
||||
2023-07-10,Johnny English Reborn,2011,https://boxd.it/4uytmP,3.5,Yes,"The story isn't as strong as the other ones, but there are some really funny moments all throughout.","funny, johnny, idiot, rowan atkinson, home watch, amazon watch",2023-07-09
|
||||
2023-07-10,Johnny English Strikes Again,2018,https://boxd.it/4uzXGd,3.5,Yes,"Best one of the series, strong story, great humour and no boring parts of the plot.","funny, home watch, netflix watch, best",2023-07-09
|
||||
2023-07-10,Catch Me If You Can,2002,https://boxd.it/4uJvPL,4,Yes,"Really good story, the fact he's so young is incredible, and the ending is really good too, there isn't loads of action until the last act, but it doesn't really need it, a super well rounded film basically!","leo, fbi, check fraud, home watch",2023-07-10
|
||||
2023-07-11,Citizen Kane,1941,https://boxd.it/4uXW4v,3,,"Idk, I know it’s super popular, but I think it’s not really for me, the story is a bit slow and oddly paced and the ending is the best but by far, most of it is kind if bland.",,2023-07-10
|
||||
2023-07-12,Casino Royale,2006,https://boxd.it/4vlu2T,3,,"Pretty fun film, the first 30 minutes or so have a lot of action, the whole middle section is slow but intriguing and the end is unexpected and cool. Middle section was strongest part, felt very spy-like, start was also good, but a bit too fast, ending was cool.
|
||||
Gonna try watch all the Daniel Craig James Bonds.","the name's james james bond, home watch",2023-07-12
|
||||
2023-07-12,The Wizard of Oz,1939,https://boxd.it/4vtMmD,3.5,,"The story is great and the graphics and technological achievements in this are incredible for 1939! The characters are done great, I read the books years ago, so I don't remember how loyal it is to the source materiel, but nevertheless, it's a great film!","dorothy, there's no place like home, home watch, there's no place like home watch",2023-07-12
|
||||
2023-07-13,Quantum of Solace,2008,https://boxd.it/4vwOox,2,,"It was OK, the plot was OK, the action was OK, the villian was OK, nothing inherinty bad, but nothing amazing either.
|
||||
It was just OK","eh, OK, home watch, the name's james james bond",2023-07-12
|
||||
2023-07-13,Indiana Jones and the Kingdom of the Crystal Skull,2008,https://boxd.it/4vC8LB,3.5,Yes,"I thought the first act was great and the ending was pretty bad, I know the others have magic in them, but it's more religious magic that sci-fi magic, it just hits different, this was too... weird, having said that, the action scenes where phenomenal, the car chase scenes just went on too long, and I thought the film went on too long too.","home watch, channel4 watch, indi",2023-07-12
|
||||
2023-07-14,The Wolf of Wall Street,2013,https://boxd.it/4vUjaR,3.5,,"The transition from Rich dick who just parties all the time on his yacht, to someone who is terrified guy who is being chased by the FBI, and who's life is spiralling out of control rapidly is terrific, and the whole first hour, compared to the last hour, are two incredibly good stories, showing how he has grown.","netflix watch, home watch, i'll quit my job right fucking now",2023-07-13
|
||||
2023-07-15,Watchmen,2009,https://boxd.it/4w91Fx,2.5,,"Better than I thought, a few aspects didn't translate too well from comic to film, but overall, I think they did a good job with it.
|
||||
The prison scene really did that part of the book justice *chefs kiss* and the violence was also great (if a little graphically lacking, it's 2009)
|
||||
The last act was sort of bland and slow, it was a bit stretched out, they could've done with making it like 30 minutes shorter, but idk.","who watches the watchmen?, home watch, netflix watch",2023-07-14
|
||||
2023-07-16,Alan Partridge - Stratagem,2022,https://boxd.it/4wl9H1,2.5,,"It’s ok, it’s funny and all, but it kind of hit the mark and was a bit stretched out, it was a live stage performance tbf, so you can’t expect too much, but, I’ve seen better stage performances.",,2023-07-15
|
||||
2023-07-16,The Empire Strikes Back,1980,https://boxd.it/4wnJ8l,4.5,Yes,"Best one, I'd say this film is perfect, good timing, great plot, amazing reveals.
|
||||
NEAR PERFECT","home watch, dvd watch",2023-07-15
|
||||
2023-07-16,Waterloo,1970,https://boxd.it/4wt8O7,3,,"It pretty good, it stretches on a bit, and the first half is pretty boring, the second half though is chaotically great, the constant cannon fire is pretty cool, though the battle gets repetitive.",,2023-07-15
|
||||
2023-07-17,Star Trek: Generations,1994,https://boxd.it/4wGcIN,3,,"It’s pretty good, the opening sequence is interesting and well shot, the whole middle bit is a bit slow, but the final sequence is also a great bit, I love Picard and Kirk teaming up, great payoff.",,2023-07-16
|
||||
2023-07-18,The Man Who Knew Infinity,2015,https://boxd.it/4x6SAD,2.5,,"It's ok, I find the character of Ramanesh not to be particually compelling though.
|
||||
It's made well though.","School watch, youtube watch",2023-07-17
|
||||
2023-07-18,Inception,2010,https://boxd.it/4x6ULN,3.5,,"Really cool, I love how they instantly make the stakes 100x higher at points by revealing key bits of information, I was metaphorically on the edge of my seat the whole of the dream sequence!
|
||||
Also... the ending... so many question, a great film will leave an impression on you for a while. which (while I did only just watch this) I think it will, similarly the All Quiet on the Western From (2022) I wanna rewatch this already :O","home watch, amazon watch, :o, edge of my seat, ending",2023-07-17
|
||||
2023-07-21,Star Trek III: The Search for Spock,1984,https://boxd.it/4y5QpP,2.5,,"Better than I remembered, especially the last act, but I HATE how they kind of retconned Wrath of Khan!",,2023-07-20
|
||||
2023-07-22,The Death of Stalin,2017,https://boxd.it/4ysdrt,3.5,,"Love it, the comedy is funny and the whole thing does a really good job of presenting Soviet Russia around Stalin's death.
|
||||
The characters are done really well, you can really feel their constant nerves and fright walking around every corner as they are so terrified of Stalin even after his death.
|
||||
Overall, great film, and the last scene was crazy.","stalin, melenkov, i can't spell, fuck me, soviet russia, home watch, amazon watch",2023-07-21
|
||||
2023-07-23,Oppenheimer,2023,https://boxd.it/4yTu3R,3.5,,"I really liked it, but I thought the constant time jumps were really annoying, if they just did it in chronological order it would be a lot better. Also, the last like 45 minutes were kind of drawn out and confusing due to the time jumps.
|
||||
But man did I love the trinity test scene! It was fucking amazing, I don’t want to give much away though. This film would be a 4 star if it were in chronological order I think, I just don’t see the point.",,2023-07-22
|
||||
2023-07-31,Downfall,2004,https://boxd.it/4Ci5Br,3,,"Really good the way it makes you emphasize with the Germans trapped in Berlin during it's downfall.
|
||||
Hitler was also presented really well as a stressed out mess of a person at the end of WW2, I would recommend a watch for anyone who is interested in the Nazis and the third Reich.
|
||||
Though it is in German so you need subtitles*
|
||||
It does stretch on a bit and could definitely be better if it was a bit shorter.","home watch, youtube watch, nazis, hitler",2023-07-30
|
||||
2023-07-31,Apollo 11,2019,https://boxd.it/4Cmvml,3.5,,"Cool how they did this with recovered footage of the event, but also could feels a bit weirdly done.
|
||||
It's still super cool how they did it, just a bit boring at parts.
|
||||
Most of it is over-radio voices, kinda gets annoying ngl","home watch, apollo 11, armstrong, collins, aldrin",2023-07-31
|
||||
2023-08-01,Saving Private Ryan,1998,https://boxd.it/4CHNcb,3,,"Good but also predictable and the battle at the end was too long.
|
||||
It made my brother cry though which is quite a feat.
|
||||
The graphics were amazing for the year though, just stunning.",,2023-07-31
|
||||
2023-08-04,Barbie,2023,https://boxd.it/4DFhQN,3.5,,"Thought it had a really good message and plot, unfortunatley some cunts were screaming sexist slurs and shouting for the first 45 mins before getting kicked out.
|
||||
I think everyone should watch this as it makes some fantastic points about the bad bits of society and presents them really well!","Barbie, ken, femenism",2023-08-03
|
||||
2023-08-12,1917,2019,https://boxd.it/4GtnKp,3.5,Yes,A gruesome depiction of the terrifying and uncertain nature of world war 1.,,2023-08-12
|
||||
2023-08-15,Oppenheimer,2023,https://boxd.it/4HltYb,3.5,Yes,"I think it was better on rewatch as I understood what was going on much better, I still am annoyed that the film jumped around a lot, but it felt better on rewatch, just really confused first time lol.",,2023-08-14
|
||||
2023-08-15,RRR,2022,https://boxd.it/4HqECP,3,,Mentalist film I've seen ,"netflix watch, home watch",2023-08-14
|
||||
2023-08-18,The Good Nazi,2018,https://boxd.it/4IghKb,3,,"Pretty interesting, and also quite sad.","home watch, netflix watch",2023-08-17
|
||||
2023-08-18,Darkest Hour,2017,https://boxd.it/4IiVkh,3.5,,Really interesting drama about early 1940 and the view of the UK on it's outcome. I loved the underground scene!,"home watch, netflix watch",2023-08-17
|
||||
2023-08-18,Dunkirk,2017,https://boxd.it/4IkAGZ,3,,"Stunning film about the evacuation of Dunkirk, with a sad ending
|
||||
Having said that, parts of it were a bit slow and the confusing as with Nolans style.","home watch, amazon prime watch",2023-08-18
|
||||
2023-08-19,No Man's Land,2001,https://boxd.it/4Ixluv,3,,"Pretty interesting, and the ending was great, the middle bit before UNPROFER arrived was a bit dull, but also exiting at parts!",home watch,2023-08-18
|
||||
2023-08-19,They Shall Not Grow Old,2018,https://boxd.it/4Iz8qz,4,Yes,"This is like my 20th time watching this.
|
||||
It's such an amazing documentary for anyone interested in WW1","home watch, so sad",2023-08-18
|
||||
2023-08-27,Watchmen: Motion Comic,2008,https://boxd.it/4KZP7Z,4,,"I love this 'film', and how they did the animations, the only complaint is that it's no different to the book, it's essentially just a different form of consuming the original book as all the frames are the same but animated, still a really unique style though, and of course the plot is still phenomenal!
|
||||
Got the DVD's for my birthday and just got round to reviewing it haha 😭
|
||||
|
||||
--Also, it's not a film, it's a series of 12 episodes--","watchmen, comic, artistic, creative",2023-08-26
|
||||
2023-09-01,The Inbetweeners Movie,2011,https://boxd.it/4MuQYB,3,,Pretty funny but also too over the top at points,"home watch, channel4 watch",2023-08-30
|
||||
2023-09-01,The Inbetweeners 2,2014,https://boxd.it/4MuRLt,2,,"So funny both ironically and non ironically, I can't tell...
|
||||
Not a strong story, but very memorable","home watch, channel4 watch",2023-08-31
|
||||
2023-09-03,Teenage Mutant Ninja Turtles: Mutant Mayhem,2023,https://boxd.it/4N68Et,3.5,,"I really enjoyed this and it was really funny throughout the film with good references and that, the story was a bit cliché and predictable lol, but it was still enjoyable none the less.
|
||||
I'm gonna do a spolier review, but LEO HAS RIZZ!","cinema watch, tmnt, mutant mayhem",2023-09-02
|
||||
2023-09-03,Teenage Mutant Ninja Turtles: Mutant Mayhem,2023,https://boxd.it/4N6c6b,3.5,,"---non spoiler section---
|
||||
I really enjoyed this and it was really funny throughout the film with good references and that, the story was a bit cliché and predictable lol, but it was still enjoyable none the less.
|
||||
I'm gonna do a spolier review, but LEO HAS RIZZ!
|
||||
|
||||
---spoiler section---
|
||||
I think it was a bit a of a drawback how easily the other mutants changed their whole mind and how set they then were at defeating SuperFly, felt quite jarring, especially how unanimous it was, also I really liked how it seemed like the turtles would team up with Super Fly at first, and i thought it would've been more interesting to see them go along with him at first, or all the way, would've been a bigger twist imo!","cinema watch, tmnt, mutant mayhem, spoiler review",2023-09-02
|
||||
2023-10-03,The Dark Crystal,1982,https://boxd.it/4VRUSf,3.5,Yes,"So cool, I want to rewatch for like the 5th time, but it's a really well done fantasy film even if it is a bit weird lmfao","fantasy, mmmmmmmmm",2022-11-18
|
||||
2023-10-29,Five Nights at Freddy's,2023,https://boxd.it/54px7v,3,,"Honestly the weirdest cinema experience I've ever had. Film was mid tbh, was seeing it with friends and that was fun, but the whole cinema was clapping at every thing and there were loads of roadmen telling everyone to shut the fuck up. But odd, also apparently some couple brought a blanket and were getting a blowy so yeahhhh. Also people were throwing popcorn at people and I was gonna get security but then didn't because I was afraid of getting attacked by the ""roadmen"" who also had a fight after the film ended 💀.
|
||||
|
||||
Anyway, apart from barley being able to watch the film, it was ok ig, pretty weird... I was NOT expecting the animatronics to make a table fort and then have a slumber party but ok. I also know practically nothing of FNAF lore so that didn't help also everyone screamed and clapped and stuff at the matpat cameo so ok.",cinema watch,2023-10-28
|
||||
2023-11-13,A Christmas Carol,1984,https://boxd.it/59nMRz,2.5,,"I found this DVD in my house and it's ok, bit weird at times, not loads to say about it tbh but the child acting is... not very good...","dvd watch, home watch",2023-11-11
|
||||
2023-11-13,Spider-Man,2002,https://boxd.it/59nNDX,3.5,,"Great film, I have 2 and 3 on DVD but had never watched the first one lol, it's thrilling and engaging, I think Toby Maguire kills the spiderman role!","home watch, dvd watch, with great power comes great responsibility",2023-11-12
|
||||
2023-11-14,Spider-Man 2,2004,https://boxd.it/59Nai9,3.5,Yes,"Great film, you gotta love doc ock, and Jameson lmfao","home watch, dvd watch",2023-11-12
|
||||
2023-11-14,Spider-Man 3,2007,https://boxd.it/59NaRX,3.5,Yes,"Very nostalgic of this haha, but I LOVE sandman and venom and Harry is fucking amazing in this one.","home watch, dvd watch, harry osborn stan",2023-11-13
|
||||
2023-11-15,The Amazing Spider-Man,2012,https://boxd.it/5a4Ytb,4,,"bad
|
||||
ass",home watch,2023-11-12
|
||||
2023-11-15,The Amazing Spider-Man 2,2014,https://boxd.it/5a4Z9V,3.5,,badass but also the scene... YOU KNOW WHAT I MEAN!!!!,"home watch, harry osborn",2023-11-14
|
||||
2023-11-26,Napoleon,2023,https://boxd.it/5dGrV5,2.5,,"Really thrilling story, though I think it moved to fast and could've benefited from either covering a shorter period of his life or making it 2 films as a lot happened during the period it covered and there wasn't enough time to go too in detail.
|
||||
Having said that, it was a really good overview of the life of Napoleon and how he acted and behaved, I loved watching it play out on big screen!
|
||||
He should've taken advice from ABBA and been cautious about facing his waterloo: Waterloo.","cinema watch, st helena, waterloo, waterloo... finally facing my waterloo... dun dun dun dun... waterloo!",2023-11-25
|
||||
2023-12-18,The Santa Clause,1994,https://boxd.it/5lomEp,3.5,Yes,"I watch this every year with my family and every time I notice stuff I hadn't before, it's so funny and self aware and stupid and I love it.
|
||||
It's also really hard to watch at times because of the cringe like when Charlie announces really confidently to the class that his dad is Santa and everyone bursts out laughing is so awkward and I love it.","dvd watch, home watch, watched with family",2023-12-17
|
||||
2023-12-25,The Santa Clause 2,2002,https://boxd.it/5obSwj,2.5,,"This film used to TERRIFY me as a kid, the naked plastic santa was traumatising. also... WHY THE FUCK DOES HE DRESS AS MUSSOLINI???
|
||||
The story also doesn't make much sense and is kind of cringy and cliché, but given all that, it is still pretty nostalgic for me.","santa, touchee, plastic, dictator santa, fasist santa",2023-12-23
|
||||
2023-12-25,Nativity!,2009,https://boxd.it/5og911,4,,"Another classic to watch with my family around Christmas time, the portrayal of a British Primary school is so accurate and way more relatable than any American shit that takes up the rest of the Christmas films, truly a great film and probably my favorite Christmas one.","home watch, iplayer watch, british primary school",2023-12-24
|
||||
2023-12-25,A Christmas Carol,2009,https://boxd.it/5oguJN,2.5,Yes,"It's better than the 1984 version just because the 1984 one didn't do ghosts very well because of no cgi, but this one isn't much better, the animation is horrific to come from Disney and is deep in the uncanny valley. It is however fairly accurate to the source material so I'll give it that.","school watch, uncanny valley",2023-12-21
|
||||
2023-12-25,Rise of the Guardians,2012,https://boxd.it/5ogFhv,2.5,Yes,"I used to love this film, but, it's really not that good.","home watch, hyperobsession",2022-12-16
|
||||
2023-12-31,Wonka,2023,https://boxd.it/5rF7Ul,3,,"I prefered the first half, the second was a bit too over the top for me, though I guess that's the point 🤷
|
||||
I think Timothy Chalomay (fuck the spelling) did well as Willy, however, I don't think he captured the magic of Gene Wilder.
|
||||
Having said this negative stuff, the film was EXTREMELY fun and exiting and if it weren't for my brain constantly trying to find plot holes where sense was exchanged for an abundance of novelty, I would have given this a 4 star just because of how FUN it was to watch!
|
||||
|
||||
Side note: I loved how I recognised loads of the actors from Peep Show, Horrible Histories and Ghosts, it was really funny because I watched ghosts with my mum and we were pointing out the actors haha. The acting was great.
|
||||
|
||||
Also poor people 🤮","cinema watch, fun, exiting, over abundance, actors",2023-12-30
|
||||
2024-01-04,One Life,2023,https://boxd.it/5uiDZN,4,,"A very sad true story of Nicholas Winton, my dad cried, which is rare, the pacing is a bit odd, but the story is great and has a bitter sweet ending.","cinema watch, BBC, belatrix lastrange!!!, ww2",2024-01-03
|
||||
2024-01-05,The Hunger Games: The Ballad of Songbirds & Snakes,2023,https://boxd.it/5uLx9f,2.5,,"It was pretty good up until part 3, it just went on too long and felt like a separate film, Part 1 and 2 were ok but the singing bits were so cringe when LUCY GRAY sang in front of everyone, I felt the story and idea was good but the execution left a lot to be desired and it felt a bit uninspired.
|
||||
|
||||
Though it did get some good laughs like how there's two people called anus and how he kept shouting LUCY GRAY","home watch, family watch, hungry, watched with doughballs and pizza",2024-01-04
|
||||
2024-01-29,Pirates of the Caribbean: The Curse of the Black Pearl,2003,https://boxd.it/5HTaYx,2.5,,Squashbucklin',"home watch, dvd watch, he deserved that, badass",2024-01-27
|
||||
2024-02-04,The Shawshank Redemption,1994,https://boxd.it/5KGvNB,4.5,Yes,"Rewatched, still great, picked up on some stuff I hadn't noticed before.","home watch, friend watch, dvd watch",2024-02-03
|
||||
2024-02-04,Pirates of the Caribbean: Dead Man's Chest,2006,https://boxd.it/5KM6Pf,3,,WHY DOES EVERYONE LIKE JACK??? HES A DICK!!!,"home watch, dvd watch, family watch",2024-02-03
|
||||
2024-02-11,The Thing,1982,https://boxd.it/5NQEB7,3,,"Very good and I loved the alien being all weird and shit, the ending was sus...
|
||||
The old guy with the hair is my favourite
|
||||
I HATE WINDOWS!!!!","friends house watch, freind watch, amazon prime watch",2024-02-10
|
||||
2024-02-19,The Sound of Music,1965,https://boxd.it/5RxrXx,3.5,Yes,"I'm yet to watch a musical that tops this.
|
||||
Great story (if a bit fast paced)
|
||||
Great soundtrack
|
||||
Great Characters","home watch, family watch, singalong, dvd watch",2024-02-18
|
||||
2024-02-19,Ted Lasso: The Missing Christmas Mustache,2021,https://boxd.it/5Rxznd,2,,Mid episode cannot lie.,"home watch, christmas special, ass, football sucks, siuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu",2024-02-12
|
||||
2024-02-19,Slumdog Millionaire,2008,https://boxd.it/5S0OgT,2.5,,Exiting and well paced.,"home watch, dvd watch, who want to be a millionare",2024-02-19
|
||||
2024-02-20,Threads,1984,https://boxd.it/5SeBdv,3,,"A terrifying, disturbing and relentless depiction of how quickly our cmfrtable lives can be destroyed by things completely out of our control.
|
||||
I think ill have nightmares","Home watch, Family watch, Sheep guts, Disturbing",2024-02-19
|
||||
2024-02-21,Dune,2021,https://boxd.it/5SzNTv,3.5,Yes,"I don't know why they didn't do it in 3 parts as the book is in 3 parts...
|
||||
The acting is good and the story was great but it kind of didn't feel that inspiring to me, similar to the book. Although it's still good, I'm hopeful for part 2 to conclude the duology.
|
||||
The special effects were stunning and the desert look amazing.
|
||||
I'm conflicted between 3 and 3.5 stars - feels like 3.25 stars >:(
|
||||
I liked the atmosphere too","home watch, originally cinema watch, dune",2024-02-20
|
||||
2024-02-23,Chitty Chitty Bang Bang,1968,https://boxd.it/5TnzzV,2.5,Yes,"Very nostalgic but the soundtrack is not very good, except ""chitty chitty bang bang"".
|
||||
The childcatcher used to give me nightmares lol.
|
||||
How the fuck are they meant to be poor when he owns two houses and a fucking windmill?!?!?!","home watch, dvd watch, musical, oh you pretty chitty bang bang, chitty chitty bang bang we love you",2024-02-22
|
||||
2024-02-23,King Kong,1933,https://boxd.it/5To0RH,1.5,Yes,"""Anne, I guess I love you""
|
||||
""Why Jack! You hate women""
|
||||
""Yeah I know, but you ain't women""","home watch, iplayer watch",2024-02-22
|
||||
2024-02-25,Howl's Moving Castle,2004,https://boxd.it/5UEUKX,2.5,,"Weird premise but interesting, I liked Calcipher","netflix watch, freind watch, friends house watch",2024-02-24
|
||||
2024-02-25,WALL·E,2008,https://boxd.it/5UEVBn,3,Yes,Rewatch.,"friend watch, friends house watch, disney+ watch",2024-02-25
|
||||
2024-02-26,The Boy in the Striped Pyjamas,2008,https://boxd.it/5UPBWH,2,,"Pretty sad ending but the pacing was a bit slow and I wish we could've seen more Pavlo :(
|
||||
Also, why is the sad part that te German boy died and not that 6 million jews died?!?!","home watch, netflix watch, family watch",2024-02-25
|
||||
2024-02-27,Schindler's List,1993,https://boxd.it/5VnzHN,3.5,Yes,"The ending was pretty sad but the film was way too long and drawn out. It was very good but I think very overrated. At first I thought the black and white style was pointless, but I think it was really good in the end, seeing the few bits of colour and the final moments of the film was all very well done.",home watch,2024-02-26
|
||||
2024-03-02,Dune: Part Two,2024,https://boxd.it/5X5mnH,3.5,,"Watched this today after 3 years o_o
|
||||
I read the book over COVID so I knew what would happen, but from what I remember, there is a lot less exposition than this half of the book and Chani was way more intense, in the book I don't really think she really cared about the prophecy, but she seemed to HATE it in this which I thought added a lot more conflict in their relationship!
|
||||
Also why was Paul's sister not born???
|
||||
But I think the film was still good (even though the book is still better) and I thought part 2 was better than part 1 imo because NUKES
|
||||
I'm defo gonna get the DVD when it drops... I want to watch again, I liked this very much so, wraps up the story well.","cinema watch, percy the pig, NO ALIA???, book > film",2024-03-01
|
||||
2024-03-09,Super 8,2011,https://boxd.it/60oHi9,2.5,,"Randomly picked this up as a DVD at ASDA and was pleasantly surprised, it's not amazing, but it was a fun watch and some reallyy funny parts as well. Honestly the best post credits scene I've ever seen. Some pretty unrealistic bits like the train crash.
|
||||
Like Stranger Things but before Stranger Things... also better than Stranger Things.","home watch, dvd watch, random watch",2024-03-08
|
||||
2024-03-11,Jane Eyre,2011,https://boxd.it/61rYWv,2,,Mr Rochester doesn't seem very nice.,"home watch, family watch",2024-03-10
|
||||
2024-03-11,V for Vendetta,2005,https://boxd.it/61zeCZ,3,Yes,"No where near as good as the book, but still very impactful and sad. The final scene was pretty cool, and I love to hear Beethoven's 5th Symphony.","home watch, anonymous, fuck the government!",2024-03-10
|
||||
2024-03-12,The Dark Crystal,1982,https://boxd.it/6251m9,3.5,Yes,"So sexist, why can't men fly too >:(","home watch, watching on thrid monitor, SEXIST, alien trees",2024-03-11
|
||||
2024-03-17,Bob Marley: One Love,2024,https://boxd.it/64h2iT,2.5,,"I didn't really know anything about Bob Marley, so this was pretty interesting! Could maybe have benefited from a longer run time and going a bit more in depth.","cinema watch, family watch, don't worry, about a thing, cause every little thing, s'gonna be alright!!!",2024-03-16
|
||||
2024-03-18,Dune: Part Two,2024,https://boxd.it/64HaFt,3.5,Yes,"The subtitles capitalise ""He"" and ""His"" when talking about Paul.","cinema watch, rewatch, friend watch",2024-03-17
|
||||
2024-03-23,Nineteen Eighty-Four,1984,https://boxd.it/66Vow7,1.5,,"Faithful (ish) to the story in terms of purely plot, but could've done with a much longer run time to flesh out the more impactful philosophical questions and concepts raised in the book, this didn't make me feel anything. The interrogation scenes feel quite dull without the more in depth look at Winstons mind.
|
||||
|
||||
Eurythmics slapped","home watch, literally 1984, big brother is watching you",2024-03-22
|
||||
2024-04-02,The Naked Gun: From the Files of Police Squad!,1988,https://boxd.it/6bOH8z,3.5,,I NEEEEEED a 6ft-lifesized condom so I can practice safe sex!,"cinema watch, family watch, A nude rifle, Extend your arm, now extend your middle finger at the man",2024-04-01
|
||||
2024-04-03,The Truman Show,1998,https://boxd.it/6cz12D,3,Yes,"Rewatch, it's alright, noticed some more stuff. I find the first 30 minutes or so quite tedious; the rest is good, except the ending which is one of my least favourite endings to a film, it's so predictable and forced!","freinds house watch, freind watch, homeless schizophrenic christian extremist",2024-04-02
|
||||
2024-04-04,Ghostbusters,1984,https://boxd.it/6cBGMr,4,,"Just a fun-ass film, I love the guy with the brown hair (I forgor his name)","who you gonna call? GHOST BUSTERS, home watch, dvd watch",2024-04-03
|
||||
2024-04-04,A Haunting in Venice,2023,https://boxd.it/6cFJ59,2,,"Not awful, but certainly not good, just very, very mid!","home watch, dvd watch, mid",2024-04-03
|
||||
2024-04-06,The Italian Job,1969,https://boxd.it/6dzm4f,3.5,,"I want a mini cooper now; i've fallen prey to the mini cooper propaganda!
|
||||
|
||||
Day 1 of waiting for a sequel....","home watch, dvd watch, family watch, I only love the fat girls, how tf is this a pg?",2024-04-05
|
||||
2024-04-14,Civil War,2024,https://boxd.it/6gSLdh,4.5,,"I literally don't know what to say, fucking masterpiece.","cinema watch, holy shit, family watch",2024-04-13
|
||||
2024-04-14,Civil War,2024,https://boxd.it/6h6mpF,4.5,,"This film actually made me scared even though I'm not American, it's a reminder of how quickly and disastrously a comfy life can de ravel into chaos.
|
||||
The whole scene with that guy in red sunglasses was so good and so scary, he was just insane, killing anyone if they said something he slightly didn't like, I don't even know what side he was on!
|
||||
The whole final act with the Western Forces storming the white-house was so good and the final shot of the soldiers ruthlessly killing the president was amazing.
|
||||
I also loved how the film didn't just pick a side of the conflict and root for them the whole time, instead it just shows some War Photographers witnessing this mess.
|
||||
I'm so glad I saw this film.","cinema watch, family watch, holy shit",2024-04-13
|
||||
2024-04-21,Back to Black,2024,https://boxd.it/6jw77L,3,,Ending was underwhelming.,"cinema watch, family watch, naked bums, I said no no no!",2024-04-20
|
||||
2024-05-05,Seven Psychopaths,2012,https://boxd.it/6pghD5,3.5,,"Actually very good, the final shootout was sick and the film was pretty funny even though quite brutal.","dvd watch, home watch",2024-05-04
|
||||
2024-05-12,Kingdom of the Planet of the Apes,2024,https://boxd.it/6sxWqR,3,,"The film had a slow start but I really liked the whole half an hour or so with the orangutang, I thought that was very interesting how different groups had different interpretations on what Ceasers message was. I don't think I fully understood the ending however, I must watch it again to fully understand it.","cinema watch, family watch",2024-05-11
|
||||
2024-05-14,The Twelve Tasks of Asterix,1976,https://boxd.it/6t3GMV,2.5,,"I have had the book of the film forever and only just got around to watching it,
|
||||
It's alright, I really don't have much to say about it other than that hearing the characters voices is REALLY weird having only read them (other than Asterix and the Middle Kingdom which I've tried to block out of my brain) so that was interesting. It defo was better than Asterix and the Middle Kingdom. The bit with the permits was funny af though and it still has a lot of the humour from the comics which translated better than I expected!
|
||||
|
||||
If I rated this purely based on nostalgia from the book it would be an easy 4 stars.","home watch, a bit racist",2024-05-13
|
||||
2024-06-08,Weird: The Al Yankovic Story,2022,https://boxd.it/6DgTlf,4,,My favourite bit was when Alfred assassinated famous drug lord Pablo Escobar by shurikening him in the face!,"shuriken, kinda weird ngl",2024-06-08
|
||||
2024-06-17,Inside Out 2,2024,https://boxd.it/6GKL2h,2.5,,"It was alright but I think it would've been better if the story ended on the fade to white when she passed the puck to her team-mate because the story is more about her development rather than weather she scores the goal or not.
|
||||
","cinema watch, family watch",2024-06-16
|
||||
2024-07-09,The Dictator,2012,https://boxd.it/6PR251,3,,"I found this film funny but the story is a bit short and the jokes sometimes were a bit forced, I also think it fails as it's all much more scripted than Ali G or Borat (played by Sacha Baron Cohen) also I liked how he pretended to be liking democracy at the end but then just made himself always be voted in.","sacha baron cohen, comedy, home watch",2024-07-08
|
||||
2024-07-09,Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan,2006,https://boxd.it/6PR4a3,3.5,,"Very funny and very chaotic, can't believe they had a naked fight in a hotel ._. Like wtf, I wonder how much of this is scripted","sacha baron cohen, comeedy, home watch",2024-07-08
|
||||
2024-07-19,Bean,1997,https://boxd.it/6Uf2SV,3,,"Pretty funny at times but not as good as the TV show, I recorded this because I thought it looked like a good time and it was, never an amazing film but a good time nonetheless.Spoiler: My favourite bits were when the security guard shat himself (and showed up at the end) and also when Mr Bean became a surgeon on accident.","comedy, ok, home watch",2024-07-18
|
||||
2024-07-19,Shazam!,2019,https://boxd.it/6UkjCZ,3.5,,"A funny and lighthearted superhero film, I think the bad buy could've been more evil because I didn't find that much intrinsic reason to hate him. I remember seeing this film in adverts back whenever it came out and thought it looked kind of boring so I was pleasantly surprised at how good it was, and the ending scene was pretty cool too. Do american schools really have security guards lol? Or was that just made up for the film?","comedy, home watch",2024-07-18
|
||||
2024-07-22,blur: To the End,2024,https://boxd.it/6VMWnz,2.5,,"My parents saw this in Wembley and said I was very good, so we saw this and it was a pretty enjoyable day out, there is a post credits scene that was about 15 minutes long which was a bit surprising lol, guess everything has to that now. My favourite thing was how the camera kept zooming in on Damon's tatoo that said 'I am a cunt' also everyone in the cinema laughed when he said that people beat him up because they thought he was a cunt, so dead pan and well delivered! ","cinema watch, family watch, reality",2024-07-21
|
||||
2024-07-25,Twisters,2024,https://boxd.it/6X8fM5,3,,"Pretty fun action film, with some wild and stressfull scenes and I-wish-was-accurate science. Spoiler: I really thought Tyler was gonna be a bad guy and he really sold the cocky jerk but he ended up being nice, and so did Javi, everyone was good, other than Ben. Unfortunatley I did not see the 4D version so the cinema screen didn't get actually ripped from the room :( would've improved the immersiveness.","cinema watch, family watch, action",2024-07-24
|
|
23
blog/reviews/albums/index.html
Normal file
23
blog/reviews/albums/index.html
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
</head>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> | <a href="/blog/index.html">Blogs</a> <a href="/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> | <a href="/video/index.html">Videos</a> | <a href="https://github.com/DeaDvey/htdocs"><img height="15" src="/images/github.png" alt="Link to github page"/></a> | <input type="text" id="clickableInput" onclick="goToLink('/search')" placeholder="Click to search">
|
||||
<div id="main">
|
||||
<h2>Album Reviews:</h2>
|
||||
<div id="links">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="/blog/submit-comment.js">
|
||||
</script>
|
||||
<script src="/lastupdated.js">
|
||||
</script>
|
||||
<script src="/html.js">
|
||||
</script>
|
||||
<script src="/blog/blogs.js">
|
||||
</script>
|
||||
<script src="template.js">
|
||||
</script>
|
||||
|
23
blog/reviews/albums/index.html~
Normal file
23
blog/reviews/albums/index.html~
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
</head>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> | <a href="/blog/index.html">Blogs</a> <a href="/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> | <a href="/video/index.html">Videos</a> | <a href="https://github.com/DeaDvey/htdocs"><img height="15" src="/images/github.png" alt="Link to github page"/></a> | <input type="text" id="clickableInput" onclick="goToLink('/search')" placeholder="Click to search">
|
||||
<div id="main">
|
||||
Film Reviews:
|
||||
<div id="links">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="/blog/submit-comment.js">
|
||||
</script>
|
||||
<script src="/lastupdated.js">
|
||||
</script>
|
||||
<script src="/html.js">
|
||||
</script>
|
||||
<script src="/blog/blogs.js">
|
||||
</script>
|
||||
<script src="template.js">
|
||||
</script>
|
||||
|
70
blog/reviews/albums/template.js
Normal file
70
blog/reviews/albums/template.js
Normal file
@ -0,0 +1,70 @@
|
||||
///////////////////////////
|
||||
// ADD THE CONTENT
|
||||
///////////////////////////
|
||||
|
||||
let div = document.getElementById('main');
|
||||
let divText = div.innerHTML;
|
||||
|
||||
console.log(divText);
|
||||
|
||||
let newPageHTML = `${pageTop}${divText}${pageBottom}`
|
||||
document.body.innerHTML = newPageHTML //apply the template
|
||||
|
||||
///////////////////////////
|
||||
// ADD THE LINKS
|
||||
///////////////////////////
|
||||
|
||||
|
||||
function escapeQuotes(value) {
|
||||
return value.replace(/["'&<>]/g, function (char) {
|
||||
switch (char) {
|
||||
case '"':
|
||||
return """;
|
||||
case "'":
|
||||
return "'";
|
||||
case "&":
|
||||
return "&";
|
||||
case "<":
|
||||
return "<";
|
||||
case ">":
|
||||
return ">";
|
||||
default:
|
||||
return char;
|
||||
}
|
||||
});
|
||||
}
|
||||
console.log(blogs)
|
||||
let linksDiv = document.getElementById("links")
|
||||
let linksText=""
|
||||
|
||||
let dateObject
|
||||
let month
|
||||
let year
|
||||
|
||||
let oldMonth = "blibidy blob"
|
||||
let oldYear = "bloopy aw"
|
||||
|
||||
for (let page = blogs.length - 1; page >= 0; page--) {
|
||||
dateObject = new Date(blogs[page][2])
|
||||
month = dateObject.toLocaleString('en-US', {month: 'long'});
|
||||
year = dateObject.getFullYear()
|
||||
const dayOfWeek = dateObject.toLocaleString('en-US', { weekday: 'long' }); // 'long' returns the full day name
|
||||
const dayOfMonth = dateObject.getDate();
|
||||
console.log(month, year, dayOfMonth, dayOfWeek)
|
||||
|
||||
|
||||
console.log(length)
|
||||
if (blogs[page][4].includes("review") && blogs[page][4].includes("album")) {
|
||||
if (month != oldMonth) {
|
||||
linksText += (`<h4>${month} ${year}</h4>`)
|
||||
}
|
||||
|
||||
linksText += (`<li class="indent">• <a href='/blog/blogs/${page}.html'>${escapeQuotes(blogs[page][0])}</a> -- ${dayOfWeek} ${dayOfMonth}</li>`)
|
||||
|
||||
oldYear = year
|
||||
oldMonth = month
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
document.getElementById("links").innerHTML = linksText;
|
70
blog/reviews/albums/template.js~
Normal file
70
blog/reviews/albums/template.js~
Normal file
@ -0,0 +1,70 @@
|
||||
///////////////////////////
|
||||
// ADD THE CONTENT
|
||||
///////////////////////////
|
||||
|
||||
let div = document.getElementById('main');
|
||||
let divText = div.innerHTML;
|
||||
|
||||
console.log(divText);
|
||||
|
||||
let newPageHTML = `${pageTop}${divText}${pageBottom}`
|
||||
document.body.innerHTML = newPageHTML //apply the template
|
||||
|
||||
///////////////////////////
|
||||
// ADD THE LINKS
|
||||
///////////////////////////
|
||||
|
||||
|
||||
function escapeQuotes(value) {
|
||||
return value.replace(/["'&<>]/g, function (char) {
|
||||
switch (char) {
|
||||
case '"':
|
||||
return """;
|
||||
case "'":
|
||||
return "'";
|
||||
case "&":
|
||||
return "&";
|
||||
case "<":
|
||||
return "<";
|
||||
case ">":
|
||||
return ">";
|
||||
default:
|
||||
return char;
|
||||
}
|
||||
});
|
||||
}
|
||||
console.log(blogs)
|
||||
let linksDiv = document.getElementById("links")
|
||||
let linksText=""
|
||||
|
||||
let dateObject
|
||||
let month
|
||||
let year
|
||||
|
||||
let oldMonth = "blibidy blob"
|
||||
let oldYear = "bloopy aw"
|
||||
|
||||
for (let page = blogs.length - 1; page >= 0; page--) {
|
||||
dateObject = new Date(blogs[page][2])
|
||||
month = dateObject.toLocaleString('en-US', {month: 'long'});
|
||||
year = dateObject.getFullYear()
|
||||
const dayOfWeek = dateObject.toLocaleString('en-US', { weekday: 'long' }); // 'long' returns the full day name
|
||||
const dayOfMonth = dateObject.getDate();
|
||||
console.log(month, year, dayOfMonth, dayOfWeek)
|
||||
|
||||
|
||||
console.log(length)
|
||||
if (blogs[page][4][0] == "review" && blogs[page][4][1] == "film") {
|
||||
if (month != oldMonth) {
|
||||
linksText += (`<h4>${month} ${year}</h4>`)
|
||||
}
|
||||
|
||||
linksText += (`<li class="indent">• <a href='blogs/${page}.html'>${escapeQuotes(blogs[page][0])}</a> -- ${dayOfWeek} ${dayOfMonth}</li>`)
|
||||
|
||||
oldYear = year
|
||||
oldMonth = month
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
document.getElementById("links").innerHTML = linksText;
|
23
blog/reviews/all/index.html
Normal file
23
blog/reviews/all/index.html
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
</head>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> | <a href="/blog/index.html">Blogs</a> <a href="/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> | <a href="/video/index.html">Videos</a> | <a href="https://github.com/DeaDvey/htdocs"><img height="15" src="/images/github.png" alt="Link to github page"/></a> | <input type="text" id="clickableInput" onclick="goToLink('/search')" placeholder="Click to search">
|
||||
<div id="main">
|
||||
<h2>Reviews:</h2>
|
||||
<div id="links">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="/blog/submit-comment.js">
|
||||
</script>
|
||||
<script src="/lastupdated.js">
|
||||
</script>
|
||||
<script src="/html.js">
|
||||
</script>
|
||||
<script src="/blog/blogs.js">
|
||||
</script>
|
||||
<script src="template.js">
|
||||
</script>
|
||||
|
70
blog/reviews/all/template.js
Normal file
70
blog/reviews/all/template.js
Normal file
@ -0,0 +1,70 @@
|
||||
///////////////////////////
|
||||
// ADD THE CONTENT
|
||||
///////////////////////////
|
||||
|
||||
let div = document.getElementById('main');
|
||||
let divText = div.innerHTML;
|
||||
|
||||
console.log(divText);
|
||||
|
||||
let newPageHTML = `${pageTop}${divText}${pageBottom}`
|
||||
document.body.innerHTML = newPageHTML //apply the template
|
||||
|
||||
///////////////////////////
|
||||
// ADD THE LINKS
|
||||
///////////////////////////
|
||||
|
||||
|
||||
function escapeQuotes(value) {
|
||||
return value.replace(/["'&<>]/g, function (char) {
|
||||
switch (char) {
|
||||
case '"':
|
||||
return """;
|
||||
case "'":
|
||||
return "'";
|
||||
case "&":
|
||||
return "&";
|
||||
case "<":
|
||||
return "<";
|
||||
case ">":
|
||||
return ">";
|
||||
default:
|
||||
return char;
|
||||
}
|
||||
});
|
||||
}
|
||||
console.log(blogs)
|
||||
let linksDiv = document.getElementById("links")
|
||||
let linksText=""
|
||||
|
||||
let dateObject
|
||||
let month
|
||||
let year
|
||||
|
||||
let oldMonth = "blibidy blob"
|
||||
let oldYear = "bloopy aw"
|
||||
|
||||
for (let page = blogs.length - 1; page >= 0; page--) {
|
||||
dateObject = new Date(blogs[page][2])
|
||||
month = dateObject.toLocaleString('en-US', {month: 'long'});
|
||||
year = dateObject.getFullYear()
|
||||
const dayOfWeek = dateObject.toLocaleString('en-US', { weekday: 'long' }); // 'long' returns the full day name
|
||||
const dayOfMonth = dateObject.getDate();
|
||||
console.log(month, year, dayOfMonth, dayOfWeek)
|
||||
|
||||
|
||||
console.log(length)
|
||||
if (blogs[page][4].includes("review")) {
|
||||
if (month != oldMonth) {
|
||||
linksText += (`<h4>${month} ${year}</h4>`)
|
||||
}
|
||||
|
||||
linksText += (`<li class="indent">• <a href='/blog/blogs/${page}.html'>${escapeQuotes(blogs[page][0])}</a> -- ${dayOfWeek} ${dayOfMonth}</li>`)
|
||||
|
||||
oldYear = year
|
||||
oldMonth = month
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
document.getElementById("links").innerHTML = linksText;
|
23
blog/reviews/books/index.html
Normal file
23
blog/reviews/books/index.html
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
</head>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> | <a href="/blog/index.html">Blogs</a> <a href="/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> | <a href="/video/index.html">Videos</a> | <a href="https://github.com/DeaDvey/htdocs"><img height="15" src="/images/github.png" alt="Link to github page"/></a> | <input type="text" id="clickableInput" onclick="goToLink('/search')" placeholder="Click to search">
|
||||
<div id="main">
|
||||
<h2>Book Reviews:</h2>
|
||||
<div id="links">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="/blog/submit-comment.js">
|
||||
</script>
|
||||
<script src="/lastupdated.js">
|
||||
</script>
|
||||
<script src="/html.js">
|
||||
</script>
|
||||
<script src="/blog/blogs.js">
|
||||
</script>
|
||||
<script src="template.js">
|
||||
</script>
|
||||
|
70
blog/reviews/books/template.js
Normal file
70
blog/reviews/books/template.js
Normal file
@ -0,0 +1,70 @@
|
||||
///////////////////////////
|
||||
// ADD THE CONTENT
|
||||
///////////////////////////
|
||||
|
||||
let div = document.getElementById('main');
|
||||
let divText = div.innerHTML;
|
||||
|
||||
console.log(divText);
|
||||
|
||||
let newPageHTML = `${pageTop}${divText}${pageBottom}`
|
||||
document.body.innerHTML = newPageHTML //apply the template
|
||||
|
||||
///////////////////////////
|
||||
// ADD THE LINKS
|
||||
///////////////////////////
|
||||
|
||||
|
||||
function escapeQuotes(value) {
|
||||
return value.replace(/["'&<>]/g, function (char) {
|
||||
switch (char) {
|
||||
case '"':
|
||||
return """;
|
||||
case "'":
|
||||
return "'";
|
||||
case "&":
|
||||
return "&";
|
||||
case "<":
|
||||
return "<";
|
||||
case ">":
|
||||
return ">";
|
||||
default:
|
||||
return char;
|
||||
}
|
||||
});
|
||||
}
|
||||
console.log(blogs)
|
||||
let linksDiv = document.getElementById("links")
|
||||
let linksText=""
|
||||
|
||||
let dateObject
|
||||
let month
|
||||
let year
|
||||
|
||||
let oldMonth = "blibidy blob"
|
||||
let oldYear = "bloopy aw"
|
||||
|
||||
for (let page = blogs.length - 1; page >= 0; page--) {
|
||||
dateObject = new Date(blogs[page][2])
|
||||
month = dateObject.toLocaleString('en-US', {month: 'long'});
|
||||
year = dateObject.getFullYear()
|
||||
const dayOfWeek = dateObject.toLocaleString('en-US', { weekday: 'long' }); // 'long' returns the full day name
|
||||
const dayOfMonth = dateObject.getDate();
|
||||
console.log(month, year, dayOfMonth, dayOfWeek)
|
||||
|
||||
|
||||
console.log(length)
|
||||
if (blogs[page][4].includes("review") && blogs[page][4].includes("book")) {
|
||||
if (month != oldMonth) {
|
||||
linksText += (`<h4>${month} ${year}</h4>`)
|
||||
}
|
||||
|
||||
linksText += (`<li class="indent">• <a href='/blog/blogs/${page}.html'>${escapeQuotes(blogs[page][0])}</a> -- ${dayOfWeek} ${dayOfMonth}</li>`)
|
||||
|
||||
oldYear = year
|
||||
oldMonth = month
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
document.getElementById("links").innerHTML = linksText;
|
23
blog/reviews/concerts/index.html
Normal file
23
blog/reviews/concerts/index.html
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
</head>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> | <a href="/blog/index.html">Blogs</a> <a href="/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> | <a href="/video/index.html">Videos</a> | <a href="https://github.com/DeaDvey/htdocs"><img height="15" src="/images/github.png" alt="Link to github page"/></a> | <input type="text" id="clickableInput" onclick="goToLink('/search')" placeholder="Click to search">
|
||||
<div id="main">
|
||||
<h2>Concert Reviews:</h2>
|
||||
<div id="links">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="/blog/submit-comment.js">
|
||||
</script>
|
||||
<script src="/lastupdated.js">
|
||||
</script>
|
||||
<script src="/html.js">
|
||||
</script>
|
||||
<script src="/blog/blogs.js">
|
||||
</script>
|
||||
<script src="template.js">
|
||||
</script>
|
||||
|
23
blog/reviews/concerts/index.html~
Normal file
23
blog/reviews/concerts/index.html~
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
</head>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> | <a href="/blog/index.html">Blogs</a> <a href="/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> | <a href="/video/index.html">Videos</a> | <a href="https://github.com/DeaDvey/htdocs"><img height="15" src="/images/github.png" alt="Link to github page"/></a> | <input type="text" id="clickableInput" onclick="goToLink('/search')" placeholder="Click to search">
|
||||
<div id="main">
|
||||
<h2>Album Reviews:</h2>
|
||||
<div id="links">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="/blog/submit-comment.js">
|
||||
</script>
|
||||
<script src="/lastupdated.js">
|
||||
</script>
|
||||
<script src="/html.js">
|
||||
</script>
|
||||
<script src="/blog/blogs.js">
|
||||
</script>
|
||||
<script src="template.js">
|
||||
</script>
|
||||
|
70
blog/reviews/concerts/template.js
Normal file
70
blog/reviews/concerts/template.js
Normal file
@ -0,0 +1,70 @@
|
||||
///////////////////////////
|
||||
// ADD THE CONTENT
|
||||
///////////////////////////
|
||||
|
||||
let div = document.getElementById('main');
|
||||
let divText = div.innerHTML;
|
||||
|
||||
console.log(divText);
|
||||
|
||||
let newPageHTML = `${pageTop}${divText}${pageBottom}`
|
||||
document.body.innerHTML = newPageHTML //apply the template
|
||||
|
||||
///////////////////////////
|
||||
// ADD THE LINKS
|
||||
///////////////////////////
|
||||
|
||||
|
||||
function escapeQuotes(value) {
|
||||
return value.replace(/["'&<>]/g, function (char) {
|
||||
switch (char) {
|
||||
case '"':
|
||||
return """;
|
||||
case "'":
|
||||
return "'";
|
||||
case "&":
|
||||
return "&";
|
||||
case "<":
|
||||
return "<";
|
||||
case ">":
|
||||
return ">";
|
||||
default:
|
||||
return char;
|
||||
}
|
||||
});
|
||||
}
|
||||
console.log(blogs)
|
||||
let linksDiv = document.getElementById("links")
|
||||
let linksText=""
|
||||
|
||||
let dateObject
|
||||
let month
|
||||
let year
|
||||
|
||||
let oldMonth = "blibidy blob"
|
||||
let oldYear = "bloopy aw"
|
||||
|
||||
for (let page = blogs.length - 1; page >= 0; page--) {
|
||||
dateObject = new Date(blogs[page][2])
|
||||
month = dateObject.toLocaleString('en-US', {month: 'long'});
|
||||
year = dateObject.getFullYear()
|
||||
const dayOfWeek = dateObject.toLocaleString('en-US', { weekday: 'long' }); // 'long' returns the full day name
|
||||
const dayOfMonth = dateObject.getDate();
|
||||
console.log(month, year, dayOfMonth, dayOfWeek)
|
||||
|
||||
|
||||
console.log(length)
|
||||
if (blogs[page][4].includes("review") && blogs[page][4].includes("concert")) {
|
||||
if (month != oldMonth) {
|
||||
linksText += (`<h4>${month} ${year}</h4>`)
|
||||
}
|
||||
|
||||
linksText += (`<li class="indent">• <a href='/blog/blogs/${page}.html'>${escapeQuotes(blogs[page][0])}</a> -- ${dayOfWeek} ${dayOfMonth}</li>`)
|
||||
|
||||
oldYear = year
|
||||
oldMonth = month
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
document.getElementById("links").innerHTML = linksText;
|
70
blog/reviews/concerts/template.js~
Normal file
70
blog/reviews/concerts/template.js~
Normal file
@ -0,0 +1,70 @@
|
||||
///////////////////////////
|
||||
// ADD THE CONTENT
|
||||
///////////////////////////
|
||||
|
||||
let div = document.getElementById('main');
|
||||
let divText = div.innerHTML;
|
||||
|
||||
console.log(divText);
|
||||
|
||||
let newPageHTML = `${pageTop}${divText}${pageBottom}`
|
||||
document.body.innerHTML = newPageHTML //apply the template
|
||||
|
||||
///////////////////////////
|
||||
// ADD THE LINKS
|
||||
///////////////////////////
|
||||
|
||||
|
||||
function escapeQuotes(value) {
|
||||
return value.replace(/["'&<>]/g, function (char) {
|
||||
switch (char) {
|
||||
case '"':
|
||||
return """;
|
||||
case "'":
|
||||
return "'";
|
||||
case "&":
|
||||
return "&";
|
||||
case "<":
|
||||
return "<";
|
||||
case ">":
|
||||
return ">";
|
||||
default:
|
||||
return char;
|
||||
}
|
||||
});
|
||||
}
|
||||
console.log(blogs)
|
||||
let linksDiv = document.getElementById("links")
|
||||
let linksText=""
|
||||
|
||||
let dateObject
|
||||
let month
|
||||
let year
|
||||
|
||||
let oldMonth = "blibidy blob"
|
||||
let oldYear = "bloopy aw"
|
||||
|
||||
for (let page = blogs.length - 1; page >= 0; page--) {
|
||||
dateObject = new Date(blogs[page][2])
|
||||
month = dateObject.toLocaleString('en-US', {month: 'long'});
|
||||
year = dateObject.getFullYear()
|
||||
const dayOfWeek = dateObject.toLocaleString('en-US', { weekday: 'long' }); // 'long' returns the full day name
|
||||
const dayOfMonth = dateObject.getDate();
|
||||
console.log(month, year, dayOfMonth, dayOfWeek)
|
||||
|
||||
|
||||
console.log(length)
|
||||
if (blogs[page][4].includes("review") && blogs[page][4].includes("album")) {
|
||||
if (month != oldMonth) {
|
||||
linksText += (`<h4>${month} ${year}</h4>`)
|
||||
}
|
||||
|
||||
linksText += (`<li class="indent">• <a href='/blog/blogs/${page}.html'>${escapeQuotes(blogs[page][0])}</a> -- ${dayOfWeek} ${dayOfMonth}</li>`)
|
||||
|
||||
oldYear = year
|
||||
oldMonth = month
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
document.getElementById("links").innerHTML = linksText;
|
23
blog/reviews/distros/index.html
Normal file
23
blog/reviews/distros/index.html
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
</head>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> | <a href="/blog/index.html">Blogs</a> <a href="/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> | <a href="/video/index.html">Videos</a> | <a href="https://github.com/DeaDvey/htdocs"><img height="15" src="/images/github.png" alt="Link to github page"/></a> | <input type="text" id="clickableInput" onclick="goToLink('/search')" placeholder="Click to search">
|
||||
<div id="main">
|
||||
<h2>Linux Distrubution Reviews:</h2>
|
||||
<div id="links">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="/blog/submit-comment.js">
|
||||
</script>
|
||||
<script src="/lastupdated.js">
|
||||
</script>
|
||||
<script src="/html.js">
|
||||
</script>
|
||||
<script src="/blog/blogs.js">
|
||||
</script>
|
||||
<script src="template.js">
|
||||
</script>
|
||||
|
23
blog/reviews/distros/index.html~
Normal file
23
blog/reviews/distros/index.html~
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
</head>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> | <a href="/blog/index.html">Blogs</a> <a href="/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> | <a href="/video/index.html">Videos</a> | <a href="https://github.com/DeaDvey/htdocs"><img height="15" src="/images/github.png" alt="Link to github page"/></a> | <input type="text" id="clickableInput" onclick="goToLink('/search')" placeholder="Click to search">
|
||||
<div id="main">
|
||||
<h2>Album Reviews:</h2>
|
||||
<div id="links">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="/blog/submit-comment.js">
|
||||
</script>
|
||||
<script src="/lastupdated.js">
|
||||
</script>
|
||||
<script src="/html.js">
|
||||
</script>
|
||||
<script src="/blog/blogs.js">
|
||||
</script>
|
||||
<script src="template.js">
|
||||
</script>
|
||||
|
70
blog/reviews/distros/template.js
Normal file
70
blog/reviews/distros/template.js
Normal file
@ -0,0 +1,70 @@
|
||||
///////////////////////////
|
||||
// ADD THE CONTENT
|
||||
///////////////////////////
|
||||
|
||||
let div = document.getElementById('main');
|
||||
let divText = div.innerHTML;
|
||||
|
||||
console.log(divText);
|
||||
|
||||
let newPageHTML = `${pageTop}${divText}${pageBottom}`
|
||||
document.body.innerHTML = newPageHTML //apply the template
|
||||
|
||||
///////////////////////////
|
||||
// ADD THE LINKS
|
||||
///////////////////////////
|
||||
|
||||
|
||||
function escapeQuotes(value) {
|
||||
return value.replace(/["'&<>]/g, function (char) {
|
||||
switch (char) {
|
||||
case '"':
|
||||
return """;
|
||||
case "'":
|
||||
return "'";
|
||||
case "&":
|
||||
return "&";
|
||||
case "<":
|
||||
return "<";
|
||||
case ">":
|
||||
return ">";
|
||||
default:
|
||||
return char;
|
||||
}
|
||||
});
|
||||
}
|
||||
console.log(blogs)
|
||||
let linksDiv = document.getElementById("links")
|
||||
let linksText=""
|
||||
|
||||
let dateObject
|
||||
let month
|
||||
let year
|
||||
|
||||
let oldMonth = "blibidy blob"
|
||||
let oldYear = "bloopy aw"
|
||||
|
||||
for (let page = blogs.length - 1; page >= 0; page--) {
|
||||
dateObject = new Date(blogs[page][2])
|
||||
month = dateObject.toLocaleString('en-US', {month: 'long'});
|
||||
year = dateObject.getFullYear()
|
||||
const dayOfWeek = dateObject.toLocaleString('en-US', { weekday: 'long' }); // 'long' returns the full day name
|
||||
const dayOfMonth = dateObject.getDate();
|
||||
console.log(month, year, dayOfMonth, dayOfWeek)
|
||||
|
||||
|
||||
console.log(length)
|
||||
if (blogs[page][4].includes("review") && blogs[page][4].includes("distro")) {
|
||||
if (month != oldMonth) {
|
||||
linksText += (`<h4>${month} ${year}</h4>`)
|
||||
}
|
||||
|
||||
linksText += (`<li class="indent">• <a href='/blog/blogs/${page}.html'>${escapeQuotes(blogs[page][0])}</a> -- ${dayOfWeek} ${dayOfMonth}</li>`)
|
||||
|
||||
oldYear = year
|
||||
oldMonth = month
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
document.getElementById("links").innerHTML = linksText;
|
70
blog/reviews/distros/template.js~
Normal file
70
blog/reviews/distros/template.js~
Normal file
@ -0,0 +1,70 @@
|
||||
///////////////////////////
|
||||
// ADD THE CONTENT
|
||||
///////////////////////////
|
||||
|
||||
let div = document.getElementById('main');
|
||||
let divText = div.innerHTML;
|
||||
|
||||
console.log(divText);
|
||||
|
||||
let newPageHTML = `${pageTop}${divText}${pageBottom}`
|
||||
document.body.innerHTML = newPageHTML //apply the template
|
||||
|
||||
///////////////////////////
|
||||
// ADD THE LINKS
|
||||
///////////////////////////
|
||||
|
||||
|
||||
function escapeQuotes(value) {
|
||||
return value.replace(/["'&<>]/g, function (char) {
|
||||
switch (char) {
|
||||
case '"':
|
||||
return """;
|
||||
case "'":
|
||||
return "'";
|
||||
case "&":
|
||||
return "&";
|
||||
case "<":
|
||||
return "<";
|
||||
case ">":
|
||||
return ">";
|
||||
default:
|
||||
return char;
|
||||
}
|
||||
});
|
||||
}
|
||||
console.log(blogs)
|
||||
let linksDiv = document.getElementById("links")
|
||||
let linksText=""
|
||||
|
||||
let dateObject
|
||||
let month
|
||||
let year
|
||||
|
||||
let oldMonth = "blibidy blob"
|
||||
let oldYear = "bloopy aw"
|
||||
|
||||
for (let page = blogs.length - 1; page >= 0; page--) {
|
||||
dateObject = new Date(blogs[page][2])
|
||||
month = dateObject.toLocaleString('en-US', {month: 'long'});
|
||||
year = dateObject.getFullYear()
|
||||
const dayOfWeek = dateObject.toLocaleString('en-US', { weekday: 'long' }); // 'long' returns the full day name
|
||||
const dayOfMonth = dateObject.getDate();
|
||||
console.log(month, year, dayOfMonth, dayOfWeek)
|
||||
|
||||
|
||||
console.log(length)
|
||||
if (blogs[page][4].includes("review") && blogs[page][4].includes("album")) {
|
||||
if (month != oldMonth) {
|
||||
linksText += (`<h4>${month} ${year}</h4>`)
|
||||
}
|
||||
|
||||
linksText += (`<li class="indent">• <a href='/blog/blogs/${page}.html'>${escapeQuotes(blogs[page][0])}</a> -- ${dayOfWeek} ${dayOfMonth}</li>`)
|
||||
|
||||
oldYear = year
|
||||
oldMonth = month
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
document.getElementById("links").innerHTML = linksText;
|
25
blog/reviews/films/index.html
Normal file
25
blog/reviews/films/index.html
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
</head>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> | <a href="/blog/index.html">Blogs</a> <a href="/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> | <a href="/video/index.html">Videos</a> | <a href="https://github.com/DeaDvey/htdocs"><img height="15" src="/images/github.png" alt="Link to github page"/></a> | <input type="text" id="clickableInput" onclick="goToLink('/search')" placeholder="Click to search">
|
||||
<div id="main">
|
||||
<h2>Film Reviews:</h2>
|
||||
<div id="links">
|
||||
</div>
|
||||
<h3>Archive</h3>
|
||||
<li class="indent">• <a href='/blog/reviews.csv'>Letterboxd archive</a></li>
|
||||
</div>
|
||||
|
||||
<script src="/blog/submit-comment.js">
|
||||
</script>
|
||||
<script src="/lastupdated.js">
|
||||
</script>
|
||||
<script src="/html.js">
|
||||
</script>
|
||||
<script src="/blog/blogs.js">
|
||||
</script>
|
||||
<script src="template.js">
|
||||
</script>
|
||||
|
23
blog/reviews/films/index.html~
Normal file
23
blog/reviews/films/index.html~
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
</head>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> | <a href="/blog/index.html">Blogs</a> <a href="/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> | <a href="/video/index.html">Videos</a> | <a href="https://github.com/DeaDvey/htdocs"><img height="15" src="/images/github.png" alt="Link to github page"/></a> | <input type="text" id="clickableInput" onclick="goToLink('/search')" placeholder="Click to search">
|
||||
<div id="main">
|
||||
Film Reviews:
|
||||
<div id="links">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="/blog/submit-comment.js">
|
||||
</script>
|
||||
<script src="/lastupdated.js">
|
||||
</script>
|
||||
<script src="/html.js">
|
||||
</script>
|
||||
<script src="/blog/blogs.js">
|
||||
</script>
|
||||
<script src="template.js">
|
||||
</script>
|
||||
|
70
blog/reviews/films/template.js
Normal file
70
blog/reviews/films/template.js
Normal file
@ -0,0 +1,70 @@
|
||||
///////////////////////////
|
||||
// ADD THE CONTENT
|
||||
///////////////////////////
|
||||
|
||||
let div = document.getElementById('main');
|
||||
let divText = div.innerHTML;
|
||||
|
||||
console.log(divText);
|
||||
|
||||
let newPageHTML = `${pageTop}${divText}${pageBottom}`
|
||||
document.body.innerHTML = newPageHTML //apply the template
|
||||
|
||||
///////////////////////////
|
||||
// ADD THE LINKS
|
||||
///////////////////////////
|
||||
|
||||
|
||||
function escapeQuotes(value) {
|
||||
return value.replace(/["'&<>]/g, function (char) {
|
||||
switch (char) {
|
||||
case '"':
|
||||
return """;
|
||||
case "'":
|
||||
return "'";
|
||||
case "&":
|
||||
return "&";
|
||||
case "<":
|
||||
return "<";
|
||||
case ">":
|
||||
return ">";
|
||||
default:
|
||||
return char;
|
||||
}
|
||||
});
|
||||
}
|
||||
console.log(blogs)
|
||||
let linksDiv = document.getElementById("links")
|
||||
let linksText=""
|
||||
|
||||
let dateObject
|
||||
let month
|
||||
let year
|
||||
|
||||
let oldMonth = "blibidy blob"
|
||||
let oldYear = "bloopy aw"
|
||||
|
||||
for (let page = blogs.length - 1; page >= 0; page--) {
|
||||
dateObject = new Date(blogs[page][2])
|
||||
month = dateObject.toLocaleString('en-US', {month: 'long'});
|
||||
year = dateObject.getFullYear()
|
||||
const dayOfWeek = dateObject.toLocaleString('en-US', { weekday: 'long' }); // 'long' returns the full day name
|
||||
const dayOfMonth = dateObject.getDate();
|
||||
console.log(month, year, dayOfMonth, dayOfWeek)
|
||||
|
||||
|
||||
console.log(length)
|
||||
if (blogs[page][4].includes("review") && blogs[page][4].includes("film")) {
|
||||
if (month != oldMonth) {
|
||||
linksText += (`<h4>${month} ${year}</h4>`)
|
||||
}
|
||||
|
||||
linksText += (`<li class="indent">• <a href='/blog/blogs/${page}.html'>${escapeQuotes(blogs[page][0])}</a> -- ${dayOfWeek} ${dayOfMonth}</li>`)
|
||||
|
||||
oldYear = year
|
||||
oldMonth = month
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
document.getElementById("links").innerHTML = linksText;
|
70
blog/reviews/films/template.js~
Normal file
70
blog/reviews/films/template.js~
Normal file
@ -0,0 +1,70 @@
|
||||
///////////////////////////
|
||||
// ADD THE CONTENT
|
||||
///////////////////////////
|
||||
|
||||
let div = document.getElementById('main');
|
||||
let divText = div.innerHTML;
|
||||
|
||||
console.log(divText);
|
||||
|
||||
let newPageHTML = `${pageTop}${divText}${pageBottom}`
|
||||
document.body.innerHTML = newPageHTML //apply the template
|
||||
|
||||
///////////////////////////
|
||||
// ADD THE LINKS
|
||||
///////////////////////////
|
||||
|
||||
|
||||
function escapeQuotes(value) {
|
||||
return value.replace(/["'&<>]/g, function (char) {
|
||||
switch (char) {
|
||||
case '"':
|
||||
return """;
|
||||
case "'":
|
||||
return "'";
|
||||
case "&":
|
||||
return "&";
|
||||
case "<":
|
||||
return "<";
|
||||
case ">":
|
||||
return ">";
|
||||
default:
|
||||
return char;
|
||||
}
|
||||
});
|
||||
}
|
||||
console.log(blogs)
|
||||
let linksDiv = document.getElementById("links")
|
||||
let linksText=""
|
||||
|
||||
let dateObject
|
||||
let month
|
||||
let year
|
||||
|
||||
let oldMonth = "blibidy blob"
|
||||
let oldYear = "bloopy aw"
|
||||
|
||||
for (let page = blogs.length - 1; page >= 0; page--) {
|
||||
dateObject = new Date(blogs[page][2])
|
||||
month = dateObject.toLocaleString('en-US', {month: 'long'});
|
||||
year = dateObject.getFullYear()
|
||||
const dayOfWeek = dateObject.toLocaleString('en-US', { weekday: 'long' }); // 'long' returns the full day name
|
||||
const dayOfMonth = dateObject.getDate();
|
||||
console.log(month, year, dayOfMonth, dayOfWeek)
|
||||
|
||||
|
||||
console.log(length)
|
||||
if (blogs[page][4][0] == "review" && blogs[page][4][1] == "film") {
|
||||
if (month != oldMonth) {
|
||||
linksText += (`<h4>${month} ${year}</h4>`)
|
||||
}
|
||||
|
||||
linksText += (`<li class="indent">• <a href='blogs/${page}.html'>${escapeQuotes(blogs[page][0])}</a> -- ${dayOfWeek} ${dayOfMonth}</li>`)
|
||||
|
||||
oldYear = year
|
||||
oldMonth = month
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
document.getElementById("links").innerHTML = linksText;
|
23
blog/reviews/games/index.html
Normal file
23
blog/reviews/games/index.html
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
</head>
|
||||
<a href="/" onclick="history.back()"><img src="/images/return.png" width="20" />Return</a> |
|
||||
<a href="/">Home page</a> | <a href="/blog/index.html">Blogs</a> <a href="/feed.xml"><img width="16" src="/images/feedIcon.png" class="feedicon" alt="Feed image"/></a> | <a href="/video/index.html">Videos</a> | <a href="https://github.com/DeaDvey/htdocs"><img height="15" src="/images/github.png" alt="Link to github page"/></a> | <input type="text" id="clickableInput" onclick="goToLink('/search')" placeholder="Click to search">
|
||||
<div id="main">
|
||||
<h2>Video Game reviews:</h2>
|
||||
<div id="links">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="/blog/submit-comment.js">
|
||||
</script>
|
||||
<script src="/lastupdated.js">
|
||||
</script>
|
||||
<script src="/html.js">
|
||||
</script>
|
||||
<script src="/blog/blogs.js">
|
||||
</script>
|
||||
<script src="template.js">
|
||||
</script>
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user