Author

Topic: CONTEST: design loyce.club home page (Read 2207 times)

legendary
Activity: 2352
Merit: 6089
bitcoindata.science
June 12, 2021, 03:22:20 PM
#83
If you like, I can put together a lightweight template based on the current design that will be easier for you to implement since it will only contain the bare-bones CSS code. Starting from scratch is sometimes more efficient than trying to remove unnecessary bits from the existing code.
Do you mean you'll copy all used items from addresses.loyce.club/css/all.css? Or start from scratch?
I appreciate the offer Smiley

There are some websites that do that automatically (removed unused css)  However,  some functionality may break while doing so. But I think it is worth trying

This one I have used a few times
https://purifycss.online/

Just enter your url and you will receive a "clean " css with all unused css removed.

As I said  some functionality (for example,  some hover components) may break. But it is possible that nothing will happen, as the design is simple.

Fatfork idea is good because he will create a new template with simple css (if I understood correctly)
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
June 12, 2021, 10:01:06 AM
#82
If you like, I can put together a lightweight template based on the current design that will be easier for you to implement since it will only contain the bare-bones CSS code. Starting from scratch is sometimes more efficient than trying to remove unnecessary bits from the existing code.
Do you mean you'll copy all used items from addresses.loyce.club/css/all.css? Or start from scratch?
I appreciate the offer Smiley
legendary
Activity: 1624
Merit: 2594
Top Crypto Casino
June 11, 2021, 03:20:33 PM
#81
... Ideally, I'd like to strip most of the unused stuff out, a much smaller file is easier to use.

If you like, I can put together a lightweight template based on the current design that will be easier for you to implement since it will only contain the bare-bones CSS code. Starting from scratch is sometimes more efficient than trying to remove unnecessary bits from the existing code.

It looks like you are not rushing to update the new design, which fits my schedule as well. Grin
copper member
Activity: 2142
Merit: 1305
Limited in number. Limitless in potential.
June 11, 2021, 11:43:40 AM
#80
Sorry what exactly is the inspiration of this logo?
You'll have to ask bL4nkcode, he got me the logo.
Nothing special, I just made reference a blockchain network style and bitcoin Grin.

Fun fact I was a long haired/ponytail haired guy when I created that back then. Cheesy
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
June 10, 2021, 06:21:28 AM
#79
If you wnat to  learn CSS, i think it will be fast and easier if you take a look at this css framework https://getbootstrap.com/
It is an amazing framework, used everywhere. It is simple to use and will save you a lot of time coding (your current design uses a few bootstrap elements)
I wouldn't mind, but I don't really have the time. And I'm just really not good at designing anything graphical (apart from the code part).

Sorry what exactly is the inspiration of this logo?
You'll have to ask bL4nkcode, he got me the logo.
sr. member
Activity: 1764
Merit: 373
<------
June 09, 2021, 05:47:23 PM
#78
~
However, with all the above tips, I managed to add a design to addresses.loyce.club:
~



While I'm staring at this I imagine a very happy man walking in this direction <--
with a ponytailed hair.

Sorry what exactly is the inspiration of this logo?

legendary
Activity: 2352
Merit: 6089
bitcoindata.science
June 09, 2021, 10:01:17 AM
#77
Somehow I always end up procrastinating updating the design. I like data much more than graphical stuff.
However, with all the above tips, I managed to add a design to addresses.loyce.club:

Congrats! I know how it is hard to work with someone else's code, specially when you are learning a new language.! Well done!

Quote
Unfortunately, some of the other links on top aren't working at the moment (cheap servers tend to disappear after a while). Long-term, I want to add this design to loyce.club's main page too. But first, I should get a bit more comfortable with the CSS. It still feels like I don't really know what I'm doing with CSS, so this took quite some time. Ideally, I'd like to strip most of the unused stuff out, a much smaller file is easier to use.

If you wnat to  learn CSS, i think it will be fast and easier if you take a look at this css framework https://getbootstrap.com/
It is an amazing framework, used everywhere. It is simple to use and will save you a lot of time coding (your current design uses a few bootstrap elements)

I managed to fix your footer, which was not displaying correctly

in the begining of your page, add the class pb-0 (which means padding-bottom:0) in your div:
Code:



Then, you should move your footer section tag outside of the container div (The Container class is what make that horizontal padding/margins around your page, centering it. Your footer and your navbar should not be inside it.)

Code:


page content
...




something like this.

This is the image with the full code

legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
June 09, 2021, 08:13:30 AM
#76
Somehow I always end up procrastinating updating the design. I like data much more than graphical stuff.
However, with all the above tips, I managed to add a design to addresses.loyce.club:
Image loading...

And (very imporant of course) addresses.loyce.club/donations.html
Image loading...

Unfortunately, some of the other links on top aren't working at the moment (cheap servers tend to disappear after a while). Long-term, I want to add this design to loyce.club's main page too. But first, I should get a bit more comfortable with the CSS. It still feels like I don't really know what I'm doing with CSS, so this took quite some time. Ideally, I'd like to strip most of the unused stuff out, a much smaller file is easier to use.
legendary
Activity: 2352
Merit: 6089
bitcoindata.science
February 04, 2021, 03:03:10 PM
#75
This has the same problem: there is white space between the lines.

The problem is that the font is smaller than the line-height (87% of line-height).
 just add this to solve.
Code:
code
{    padding: .2em .4em;
    margin: 0;
    background-color: rgb(243 244 244);
    border-radius: 6px;
font-size: 100%;
}



If you want a big retangle with a background you will have add a background atribute to the DIV which contain the code tags (similar to FatFork solution).
like this:


Look for this div tag, whicih contain the code tags, and add bg-light to its class. You can see other predefined colors here:
Code:

Sample:

...




I think FatFork solution to use
instead of is good, but you will lose semantics. The ideal would b e style the tag as you want. Not a big deal anyway...
legendary
Activity: 1624
Merit: 2594
Top Crypto Casino
February 04, 2021, 07:49:21 AM
#74
Maybe change the color from black to dark gray like the font color. On your example:
Code:
code {
  font-size: 87.5%;
  color: #888888;
  word-break: break-word;
  border: 1px solid #888888;
}
This adds a border around every line, while I want/need a border around the entire code tags. See this page.

The simplest solution:
- put a dot in front of the code tag in your CSS file so that it becomes a selector
for example:
Code:
.code {
    font-size: 87.5%;
    color: #888888;
    word-break: break-word;
    border: 1px solid #888888;
}
- add code selector to the parent 'div' tag in your HTML (where you want the border to apply)
for example:
Code:


EDIT:
On your example, I would recommend adding a margin on the left and right. So, within the CSS .code selector, add this line as well:
Code:
margin: 0 0.50rem !important;

EDIT 2:
If you want to use the style suggested by bitmover, instead of border, add background-color and border-radius:
Code:
background-color: rgb(243 244 244);
border-radius: 6px;
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
February 04, 2021, 07:32:58 AM
#73
Code:
@media (min-width: 992px) {
  .xBlank {
    padding-top: calc(4rem + 104px);
    padding-bottom: 17rem;
  }
Thanks, this worked!

You can try this, github code tag style, which is very common:
Code:
code
{    padding: .2em .4em;
    margin: 0;
    background-color: rgb(243 244 244);
    border-radius: 6px;
}
This has the same problem: there is white space between the lines.

Quote
I think you should go to a full minimalist page or a beautiful responsive page with a 100-200kb css file like the one you are working on. It is hard to have a beautiful responsive layout with a 10kb css file...
I don't mind the file size, but it makes it so much harder to find which part causes something.
legendary
Activity: 2352
Merit: 6089
bitcoindata.science
January 27, 2021, 10:23:09 PM
#72
Ideally, there should be a rectangle or something around the code tags. The forum makes code tags very obvious that way.

You can try this, github code tag style, which is very common:

Code:
code
{    padding: .2em .4em;
    margin: 0;
    background-color: rgb(243 244 244);
    border-radius: 6px;
}




You can also try
  and  tags. They are all related to coding and have pre formatted styles already.
But I think github style is what you are looking for.

It feels like the 183 kB all.css is far too advanced for what I'm using it for.

Yeah, it kind of is. Probably because of the use of media queries for responsive design but I bet you also have a bunch of selectors that you will never even use.

There isn't much you can do. To use this layout you will need to use this css file... You can try to remove some of it, but it is not that simple (it may break some responsive stuff, or some events like some hovers,dropdown, etc).

An alternative would be to use an open web standard such as bootstrap, which would be easier to code, but it wouldn't work with this layout and the file size would be almost the same.

I think you should go to a full minimalist page or a beautiful responsive page with a 100-200kb css file like the one you are working on. It is hard to have a beautiful responsive layout with a 10kb css file...
legendary
Activity: 1624
Merit: 2594
Top Crypto Casino
January 27, 2021, 07:15:23 PM
#71
I don't think this changed anything, see this test version.

This is because you have multiple instances of .xBlank class selectors in your CSS. Your CSS uses media queries to apply different styles for different media types/devices (responsive web design).
If you want to remove (reduce) vertical white space in the desktop view you need to find the following code in CSS (it should be around line 9745):

Code:
@media (min-width: 992px) {
  .xBlank {
    padding-top: calc(4rem + 104px);
    padding-bottom: 17rem;
  }

Just change the padding-bottom value and check the result.

Ideally, there should be a rectangle or something around the code tags. The forum makes code tags very obvious that way.

Add this line within the code tag CSS selector:
Code:
border: 1px solid #000000;

Maybe change the color from black to dark gray like the font color. On your example:
Code:
code {
  font-size: 87.5%;
  color: #888888;
  word-break: break-word;
  border: 1px solid #888888;
}

It feels like the 183 kB all.css is far too advanced for what I'm using it for.

Yeah, it kind of is. Probably because of the use of media queries for responsive design but I bet you also have a bunch of selectors that you will never even use.

legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
January 27, 2021, 04:41:30 PM
#70
Go to your http://addresses.loyce.club/css/all.css file

You will find this:
Code:
.xBlank {
  padding-top: calc(4rem + 74px);
  padding-bottom: 11rem;
}

Delete it, and add this:

Code:
.xBlank {
  padding-top: calc(2rem + 74px);
padding-bottom: 2rem;}

This will fix the vertical white space.
I don't think this changed anything, see this test version.

Quote
About code tags, you just need to add where you want to look like code.
~
and add in your Css for different colors for balance and address, if you want:
Thanks, that was easy. I don't need different colors, so I changed it to this:
Code:
code {
  font-size: 87.5%;
  color: #888888;
  word-break: break-word;
}
Ideally, there should be a rectangle or something around the code tags. The forum makes code tags very obvious that way.

Quote
If you want to get completely rid of vetrtical space, delete the "xBlank" class from this DIV, in the HTML:
Code:

I tried removing it, but that makes it too crowded.
On the left side of this page, I've played around with this:
Code:
That lead to too much vertical white space, so I've also changed this (it was 1.25rem;):
Code:
.card-body {
  flex: 1 1 auto;
  padding: 0.50rem;
}
It feels like the 183 kB all.css is far too advanced for what I'm using it for.
legendary
Activity: 2352
Merit: 6089
bitcoindata.science
January 26, 2021, 03:54:17 PM
#69
But I'm kinda stuck: total CSS-n00b here. What I'd like to do is add some better formatting, kinda like the forum's code-tags for instance, a bit less vertical white space, and some headers. But again: total CSS-n00b here Sad

Well, let me try.

Go to your http://addresses.loyce.club/css/all.css file

You will find this:
Code:
.xBlank {
  padding-top: calc(4rem + 74px);
  padding-bottom: 11rem;
}

Delete it, and add this:

Code:
.xBlank {
  padding-top: calc(2rem + 74px);
padding-bottom: 2rem;}

This will fix the vertical white space.




About code tags, you just need to add where you want to look like code.

35hK24tcLEWcgNA4JxpvbkNkoAcDGqQPsP, like this, right?

Just add

Code:
35hK24tcLEWcgNA4JxpvbkNkoAcDGqQPsP 
25550215765875


        3KZ526NxCVXbKwwP66RgM3pte6zW4gY1tD

      10185724750535

and add in your Css for different colors for balance and address, if you want:
Code:
code.balance {
    color: #17324d!important;
}


You will see this effect. I think it is what you said.




If you want to get completely rid of vetrtical space, delete the "xBlank" class from this DIV, in the HTML:
Code:

legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
January 24, 2021, 02:30:17 PM
#68
Made a simple responsive layout for the website. Thanks to bootstrap 4, fontAwesome, jquery. Made a very simple logo btw Cheesy

Here's how it looks


Sauce:
https://github.com/blankcodes/loycev.club
So.... it took me only slightly more than a year to get to use this. I'm going to add it first to my List of all Bitcoin addresses with a balance. It currently looks like a list of file names, and I want it to look a bit like this.
But I'm kinda stuck: total CSS-n00b here. What I'd like to do is add some better formatting, kinda like the forum's code-tags for instance, a bit less vertical white space, and some headers. But again: total CSS-n00b here Sad

I choose my Bitcoin data instead of my Bitcointalk data because this are only a few pages:
My Bitcointalk data has about 6 million pages and is slightly more work.

I've added you to the footer. I should probably not do that to all 6 million pages (if I ever have the time), but this is like the least I can do.
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
December 11, 2020, 12:19:28 PM
#67
I'll explain why I didn't continue adding a design yet: I was waiting to first update my "oldposts" into lists per user and per topic. Unfortunately, I messed up a few times, including shutting down the wrong PC, so I had to start over. It takes quite a lot of resources, and at the current rate I expect this to finish in about 3 weeks (unless I mess up again).

Meanwhile: keep the code coming Cheesy
legendary
Activity: 1904
Merit: 1563
December 11, 2020, 12:09:30 PM
#66
Just a little suggestions with bitmover's search tool[1], it is a good practice to limit the possible entries of the user's input. In example, I can search for negative numbers and it will return nothing of course. But it is a good practice in UX to maintain inputs with less unnecessary options. To restrict the negative input in the form control, you can just simply add its minimum value.

Code:

This would then limit the possible input from the user, restricting the unnecessary negative numbers. It can also be used to have the lowest possible result, like: 12 is the lowest UID, 6 is the lowest number TopicID, while 28 still remains the lowest value possible and undeleted post for mssgID (since using less than 28 would just redirects the user to the overall summary). Code to be edited are as follows:

Code:
//MESSAGEID INPUT


//TOPICID INPUT


//USERID INPUT


[1] - loyce.club/archive/members/



This is my only suggestion but I might return on to this thread once I have more knowledge on coding.
legendary
Activity: 3654
Merit: 8909
https://bpip.org
December 11, 2020, 11:46:43 AM
#65
I am removing the last four digits, no matter the size

I think the message ID parser takes the first 4, which won't work past 100 million.
legendary
Activity: 2352
Merit: 6089
bitcoindata.science
December 11, 2020, 11:30:43 AM
#64
Shorter cleaner code less prone to failure - will work for any length, or at least while LoyceV keeps 10k files per folder. Might be faster but in this case I don't think it matters much.

Granted right now what you have works fine so no real need to change until we get to 100 million posts Smiley

Your solution  indeed looks cleaner.

But I didnt understand why would this bug with a bigger length

Code:
var topfolder = top.substring(0, top.length-4);

I am removing the last four digits, no matter the size
legendary
Activity: 3654
Merit: 8909
https://bpip.org
December 11, 2020, 11:05:52 AM
#63
No need to check for length.

I am new to this and still learning.

Why is it better not to use length?  Faster processing?

Shorter cleaner code less prone to failure - will work for any length, or at least while LoyceV keeps 10k files per folder. Might be faster but in this case I don't think it matters much.

Granted right now what you have works fine so no real need to change until we get to 100 million posts Smiley

I'm still a total n00b, but that makes the code more compact, right?

Yes.

I resisted the urge to go full OCD:

Code:
var thread_link = `http://loyce.club/archive/topics/${thread_id / 10000 >> 0}/${thread_id}.html`;

because that might not work in some ancient version of Internet Explorer.
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
December 11, 2020, 10:58:41 AM
#62
I'm still a total n00b, but that makes the code more compact, right?
legendary
Activity: 2352
Merit: 6089
bitcoindata.science
December 11, 2020, 10:32:08 AM
#61
No need to check for length.

I am new to this and still learning.

Why is it better not to use length?  Faster processing?
legendary
Activity: 3654
Merit: 8909
https://bpip.org
December 10, 2020, 08:13:33 PM
#60
~

I think integer math works better for folder splits:

Code:
var thread_link = "http://loyce.club/archive/topics/" + (thread_id / 10000 >> 0) + "/" + thread_id + ".html";

No need to check for length.
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
November 11, 2020, 02:44:32 PM
#59
delete this
Code:
var topfolder = top.slice(0, 3);

and add this:
Code:
var topfolder = top.substring(0, top.length-4);
Thanks, it works again! I had to edit 4 files (the 404's have a slightly different description).

Found a possible bug:
topic 3064698.
https://loyce.club/archive/topics/306/3064698.html
Not archieved or something wrong?
I didn't archive posts yet when that topic was created. I scraped the posts later, the first post for instance is archived as oldposts #31577013. I have those posts only sorted by msgID, not by topicID. I'm currenly processing all data, but at the rate it's going, it's going to take a few weeks to complete. It's not very efficient, and therefore takes a lot of processing power.
I only now realize I should also process these posts per userID, and I should have done that from the start, so I'll have to restart this. It'll takes a bit longer again Sad
Stuff like this would be so much easier from a database, but luckily I'll only have to do this once (more).
legendary
Activity: 2352
Merit: 6089
bitcoindata.science
November 11, 2020, 02:07:51 PM
#58
So you don't need to take the first 3 digits, you need to remove the last 4 digits. The logic behind this is that I create directories with at most 10,000 files.
I checked for a few userIDs too, those seem to work fine.

You did almost everything for me Smiley
Made a small code change, now it is working.

delete this
Code:
var topfolder = top.slice(0, 3);

and add this:
Code:
var topfolder = top.substring(0, top.length-4);

Or just download it here:
https://bitcoindata.science/LoyceV/LOYCE.html

I made about 10 tests, looks fine.


EDit:
Found a possible bug:
topic 3064698.
https://loyce.club/archive/topics/306/3064698.html
Not archieved or something wrong?
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
November 11, 2020, 01:38:09 PM
#57
if the length is > 4 the folder is the first 3 digits.

I checked what I wrote:
How to use it
  • Find the msgID, userID or topicID you need. Let's use msgID 51902990.
  • Remove the last 4 digits from the msgID to get the directory name (if there are 4 or less digits, use 0): 5190.
  • Put everything together behind the (above) URL and add ".html": https://loyce.club/archive/posts/5190/51902990.html.
So for topicID 178336, remove the last 4 digits to get the directory name. That gives directory 17. Add a slash, the topicID and .html to get https://loyce.club/archive/topics/17/178336.html.

So you don't need to take the first 3 digits, you need to remove the last 4 digits. The logic behind this is that I create directories with at most 10,000 files.
I checked for a few userIDs too, those seem to work fine.
legendary
Activity: 2352
Merit: 6089
bitcoindata.science
November 11, 2020, 11:59:32 AM
#56
I found a bug Sad If I search for topicID 178336 on https://loyce.club/archive/topics/, it gives https://loyce.club/archive/topics/178/178336.html instead of https://loyce.club/archive/topics/17/178336.html. It works fine for longer topicIDs.

The rule is a bit different than I thought. I wasn't able to find it now in this topic, can you help me?

It would also be nice to have a tiny bit of PHP (or whatever) that allows for an input field, and converts a number into an URL.
Examples

I made a rule that if the length is <= than 4, the folder would be 0. And if the length is > 4 the folder is the first 3 digits.

As 178336 has 6 digits, the script is redirecting it to a 3 digits folder.

When should the folder have only the first 2 digits?
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
November 11, 2020, 05:17:45 AM
#55
This was quite easy to do, I can help you with similar demands if you need.
I found a bug Sad If I search for topicID 178336 on https://loyce.club/archive/topics/, it gives https://loyce.club/archive/topics/178/178336.html instead of https://loyce.club/archive/topics/17/178336.html. It works fine for longer topicIDs.
legendary
Activity: 2352
Merit: 6089
bitcoindata.science
October 11, 2020, 07:42:14 PM
#54
I really think you should leave the basic design (or lack of) as is. I like it.

I like it too.
Take a look at this  Grin
http://bettermotherfuckingwebsite.com/
legendary
Activity: 2716
Merit: 2093
Join the world-leading crypto sportsbook NOW!
October 11, 2020, 11:43:24 AM
#53
I really think you should leave the basic design (or lack of) as is. I like it.
legendary
Activity: 2352
Merit: 6089
bitcoindata.science
October 09, 2020, 05:05:52 PM
#52
You are sending request to their servers, they will save at least your IP request there.
There is no need to do that. You can just download the font and use it in your own server.


No offence, but to me, this sounds a little paranoid, doesn’t it? I mean, we talking here about font style. I am not sure is it possible to be 100% safe over the internet if you use all of his resources.
It can easily change an IP address, restarting router. Maybe I am naive, but I really don't see a serious problem here.

But in this case there is no reason to get the fonts from their servers, and it is like 1kb file, why don't you host it?
It may be paranoid, but it is more a matter of philosophy about the web imo.

..
You just need this code:
Code:
I'm not familiar with this, is this the standard accepted thing nowdadays? Do users not care about external tracking? Or am I just too concerned?

It is bad for privacy and for page loading times. But it is good to keep your libraries updated. Personally, I download everything and I run it in my own server. I don't care about updates.



Quote
I'd like to add a submenu under the top-menu though, like examplens made here. under "MERIT", but it might make it a lot larger and more complicated to make changes (to so many pages) later.
How would I start editing this? Just manual with an editor, or is there a better GUI method to do so? Again: total n00b here when it comes to designing things.

This is called a dropdown.

Bootstrap is a very nice design language, which you will probably like.

You can just copy this code here and start using and editing it:
https://getbootstrap.com/docs/4.5/components/dropdowns/#single-button

You just have to load the dependencies libraries (jquery, bootstrap css and bootstrapbundle.js, then download them to your /css or /js directories).

See a working example, which you can edit. Examplens just used a different css style:
https://jsfiddle.net/jaqkznyo/1/

You just need this code:
Code:





   
   
   
   
   
   
   
I'm not familiar with this, is this the standard accepted thing nowdadays? Do users not care about external tracking? Or am I just too concerned?

I like the top-menu and the simple design to add some more pages. It'll take me a while to figure out all details how everything works to adjust things.
I'd like to add a submenu under the top-menu though, like examplens made here. under "MERIT", but it might make it a lot larger and more complicated to make changes (to so many pages) later.
How would I start editing this? Just manual with an editor, or is there a better GUI method to do so? Again: total n00b here when it comes to designing things.



I made a very simple design, based on your own website. I focused in readability and low file size. Only 22kb.

Please take a look
https://bitcoindata.science/LoyceV/loyce.club.html
I like the simplicity, but I'm really looking for something I can add to all my pages. So a top-menu to add everywhere.
Tables can for sure improve Trust list pages, but that'll also complicate a lot of the things where I use the same HTML. So maybe I'll add this much later, but it's too much work to do that now too.

I see you prefer red colors. I changed button colors to red.

You can see the result here:
https://bitcoindata.science/LoyceV/searchtool.html
I'll change colors when the rest of loyce.club has some design.



language/ software to scrape data and to keep it realtime update
Anything you want should work. Sorry for giving a generic answer, but what works for me probably won't work for you. One thing though, if you start the right way, you'll save a lot of time later. I clearly didn't think it through doing this without database.

Quote
How to build up a simple website
Didn't this topic make it very obvious I know nothing about designing a website? Wink Putting it online is as simple as getting hosting and uploading it. Other than that, this isn't the right topic to get into details.
legendary
Activity: 2310
Merit: 4085
Farewell o_e_l_e_o
October 09, 2020, 03:32:45 AM
#46
Interesting. So would you mind giving me some tutorials from which I can start with

  • language/ software to scrape data and to keep it realtime update
  • How to build up a simple website

I am not an IT coder so I am sorry if my questions look like from a noob.  I love stats. Thanks for your help in advance Cheesy
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
October 08, 2020, 09:59:34 AM
#45
I also changed the font tag to style css, as font tag is obsolete.
Nothing on the internet will ever be obsolete Wink

I know you already received many fancy designs from different people and you didn't use.
I just checked what's left earlier, and some of the designs are no longer online. That leaves this:
And this:
Here some idea what it might look like https://landofcrypto.com/Loyce.Club/ also check "TEST table" menu or: https://landofcrypto.com/Loyce.Club/page1.html
I like both a bit, but not the animations. It gave me more of an idea what I want: a menu (CSS?) on top would fit nicely in all (few million) pages I have, so I can add it above for instance https://loyce.club/trust/2020-10-03_Sat_05.09h/1554927.html too. I think that would largely improve usability.
I have to go soon, so I'll continue later.
legendary
Activity: 2352
Merit: 6089
bitcoindata.science
October 08, 2020, 09:06:29 AM
#44
LoyceV,

I know you already received many fancy designs from different people and you didn't use.

I made a very simple design, based on your own website. I focused in readability and low file size. Only 22kb.

Please take a look
https://bitcoindata.science/LoyceV/loyce.club.html
legendary
Activity: 2352
Merit: 6089
bitcoindata.science
October 08, 2020, 07:39:15 AM
#43
You're right, I made another mistake in my description. It once again shows how much your search tool for this is needed!
I can fix this on my own:
Code:
if (msg.length >= 3)

I also added a
to get rid of the red on in Firefox.

Testing link: https://loyce.club/archive/members/

Very nice to see it working! And I saw that you already made the 404 page!

I see you prefer red colors. I changed button colors to red.

You can see the result here:
https://bitcoindata.science/LoyceV/searchtool.html

I also changed the font tag to style css, as font tag is obsolete.

legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
October 08, 2020, 05:03:42 AM
#42
fixed!  I forgot to add the rule for low values.
Fix confirmed, thanks!

Replace the last 2 digits of the msgID by xx, and add .html (if there are 2 or less digits, use 0xx): 282xx.html
I got confused now. Is the rule "(if there are 5 or less digits, use 0xx)"  2 digits or less?
You're right, I made another mistake in my description. It once again shows how much your search tool for this is needed!

I can fix this on my own:
Code:
if (msg.length >= 3)

I also added a
to get rid of the red on in Firefox.

Testing link: https://loyce.club/archive/members/
legendary
Activity: 2352
Merit: 6089
bitcoindata.science
October 07, 2020, 09:34:20 PM
#41
Sorry it took me a bit, but I found a few bugs:
topicID: 10 gives https://loyce.club/archive/topics/10/10.html instead of https://loyce.club/archive/topics/0/10.html

fixed!  I forgot to add the rule for low values.


Replace the last 2 digits of the msgID by xx, and add .html (if there are 5 or less digits, use 0xx): 282xx.html

I got confused now. Is the rule "(if there are 5 or less digits, use 0xx)"  2 digits or less?



Edit: posting in the wrong topic by mistake  Grin
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
October 07, 2020, 02:31:08 PM
#40
Tell me if you notice any bug.
Sorry it took me a bit, but I found a few bugs:
msgID: 200 gives https://loyce.club/archive/oldposts/0/0xx.html#msg200 instead of https://loyce.club/archive/oldposts/0/2xx.html#msg200
topicID: 10 gives https://loyce.club/archive/topics/10/10.html instead of https://loyce.club/archive/topics/0/10.html

The topicIDs and userIDs will work much better if I process all data I have. I should have time to fix this in the weekend.
Todo for myself: Finished! I should make a custom 404 that contains your search box for anything under https://loyce.club/archive/posts (and more URLs) Smiley
legendary
Activity: 2352
Merit: 6089
bitcoindata.science
October 05, 2020, 11:29:24 AM
#39
I missed a 5, the high number is 55310200.
With this clarified: is it possible to combine "msgID" and "Old Posts" into one field, with post 51904009 being the first one to go to "msgID" and anything lower than that going to "Old Posts"? That would be much better than having to explain the difference.

Just did!
Now both scripts oldposts and msgID are combined in the same input box.
 I made a few tests and it looks ok. Tell me if you notice any bug.

This was quite easy to do, I can help you with similar demands if you need.

https://bitcoindata.science/LoyceV/searchtool.html
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
October 05, 2020, 06:52:59 AM
#38
~snip code~
How would I use this? (total n00b here) Don't spend too much time on it though, it looks like bitmover's solution works just fine already.

I want to practice my skills as well.
You're doing just fine Smiley

Quote
Done. Just removed all unused CSS. There is now a single file with 14kb, no more css file.
Great!

Quote
A small correction:
Remove the last 5 digits from the msgID to get the directory name (if there are less than 5 6 digits, use 0):
Very sharp! I made that mistake a couple more times. I changed it to "5 or less".

Quote
Quote
Ideally, this should be included in the same search field: if someone searches for a low post number (say 25000030), it should give this link: https://loyce.club/archive/oldposts/250/250000xx.html#msg25000030.
But if someone searches for a high number (say 55310200), it should give this link: https://loyce.club/archive/posts/5531/55310200.html.
I didn't understand. Your low post number (25000030) is higher than the high post number (5310200). Is it the opposite?
I missed a 5, the high number is 55310200.
With this clarified: is it possible to combine "msgID" and "Old Posts" into one field, with post 51904009 being the first one to go to "msgID" and anything lower than that going to "Old Posts"? That would be much better than having to explain the difference.

Quote
Please feel free to change text/instructions/title etc
I will Smiley

Quote
Where is satoshi page in your database? Shouldn't it be here?
https://loyce.club/archive/members/0/3.html
I haven't added "oldposts" to the member/topic-directories yet. I need some time to script it, it would indeed be better to have all posts archived in all categories.
legendary
Activity: 2352
Merit: 6089
bitcoindata.science
October 04, 2020, 06:19:02 PM
#37
It's a good start, but can I be a bit demanding? Wink
Sure, let's make it work properly. I want to practice my skills as well.


Sneak preview: http://loyce.club/archive/oldposts/
How to use:
  • Find the msgID you need. Let's use 28228
  • Remove the last 5 digits from the msgID to get the directory name (if there are less than 5 digits, use 0): 0
  • Replace the last 2 digits of the msgID by xx, and add .html (if there are less than 5 digits, use 0xx): 282xx.html
  • Add "#msg" and the msgID: #msg28228
  • Put everything together and go to http://loyce.club/archive/oldposts/0/282xx.html#msg28228

Done

A small correction:
  • Remove the last 5 digits from the msgID to get the directory name (if there are less than 5 6 digits, use 0): 0

Wink

Quote
Ideally, this should be included in the same search field: if someone searches for a low post number (say 25000030), it should give this link: https://loyce.club/archive/oldposts/250/250000xx.html#msg25000030.
But if someone searches for a high number (say 5310200), it should give this link: https://loyce.club/archive/posts/5531/55310200.html.
Can you pull that off?
I didn't understand. Your low post number (25000030) is higher than the high post number (5310200). Is it the opposite?


Please feel free to change text/instructions/title etc

Edit:
Where is satoshi page in your database? Shouldn't it be here?
https://loyce.club/archive/members/0/3.html
full member
Activity: 384
Merit: 101
October 04, 2020, 05:46:45 PM
#36
Sneak preview: http://loyce.club/archive/oldposts/
How to use:
  • Find the msgID you need. Let's use 28228
  • Remove the last 5 digits from the msgID to get the directory name (if there are less than 5 digits, use 0): 0
  • Replace the last 2 digits of the msgID by xx, and add .html (if there are less than 5 digits, use 0xx): 282xx.html
  • Add "#msg" and the msgID: #msg28228
  • Put everything together and go to http://loyce.club/archive/oldposts/0/282xx.html#msg28228

for oldposts:

Code:
// Get $searchType from the input, where oldmsgID=>oldposts
$searchType = "oldposts"; // by oldmsgID

// Get $ID from the input (should be >= 1)
// $ID = "28228";
$ID = "25000030";

$dirName = (strlen($ID) <= 5 ? "0" : substr($ID, 0, -5));
// $pageName = substr($ID, -2);
$pageName = (strlen($ID) < 5 ? "0xx" : substr($ID, 0, -2) . "xx");
$url = "http://loyce.club/archive/$searchType/$dirName/$pageName.html#msg$ID";
echo $url;

// http://loyce.club/archive/oldposts/0/282xx.html#msg28228
// http://loyce.club/archive/oldposts/250/250000xx.html#msg25000030

And by adding posts, topics and members we get:

Code:
$urlBase = "http://loyce.club/archive";

// Get $searchType from the input, where oldmsgID=>oldposts, msgID=>posts, topicID=>topics and userID=>members
$searchType = "posts"; // by msgID

// Get $ID from the input (should be >= 1)
$ID = "28228";

$countDigits = ($searchType === "oldposts" ? 5 : 4);
$dirName = (strlen($ID) <= $countDigits ? "0" : substr($ID, 0, -$countDigits));
$pageName = (strlen($ID) < $countDigits ? "0xx" : substr($ID, 0, -2) . "xx");
$url = ($searchType === "oldposts" ? "$urlBase/$searchType/$dirName/$pageName.html#msg$ID" : "$urlBase/$searchType/$dirName/$ID.html");

echo $url;



Ideally, this should be included in the same search field: if someone searches for a low post number (say 25000030), it should give this link: https://loyce.club/archive/oldposts/250/250000xx.html#msg25000030.
But if someone searches for a high number (say 5310200), it should give this link: https://loyce.club/archive/posts/5531/55310200.html.

What is the logic of detecting low/high post numbers?
full member
Activity: 384
Merit: 101
October 04, 2020, 10:03:46 AM
#35
It would also be nice to have a tiny bit of PHP (or whatever) that allows for an input field, and converts a number into an URL.
Examples

Code:
// Get $searchType from the input, where msgID=>posts, topicID=>posts and userID=>members
$searchType = "posts"; // by msgID

// Get $ID from the input (should be >= 1)
$ID = "4567891";

// testing
// $ID = "45678";
// $ID = "4567";
// $ID = "456";
// $ID = "45";
// $ID = "4";

$dirName = (strlen($ID) <= 4 ? "0" : substr($ID, 0, -4));
$url = "http://loyce.club/archive/$searchType/$dirName/$ID.html";
echo $url;

// http://loyce.club/archive/posts/456/4567891.html
// http://loyce.club/archive/posts/4/45678.html
// http://loyce.club/archive/posts/0/4567.html
// http://loyce.club/archive/posts/0/456.html
// ...

Do you mean that?
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
October 04, 2020, 07:37:34 AM
#34
I had to make 3 search boxes.  
But I think that is what you want.
It's a good start, but can I be a bit demanding? Wink

Sneak preview: http://loyce.club/archive/oldposts/
How to use:
  • Find the msgID you need. Let's use 28228
  • Remove the last 5 digits from the msgID to get the directory name (if there are less than 5 digits, use 0): 0
  • Replace the last 2 digits of the msgID by xx, and add .html (if there are less than 5 digits, use 0xx): 282xx.html
  • Add "#msg" and the msgID: #msg28228
  • Put everything together and go to http://loyce.club/archive/oldposts/0/282xx.html#msg28228
Ideally, this should be included in the same search field: if someone searches for a low post number (say 25000030), it should give this link: https://loyce.club/archive/oldposts/250/250000xx.html#msg25000030.
But if someone searches for a high number (say 55310200), it should give this link: https://loyce.club/archive/posts/5531/55310200.html.
Can you pull that off?
legendary
Activity: 2352
Merit: 6089
bitcoindata.science
October 03, 2020, 05:29:27 PM
#33
What I need is basically automating this:
How to use it
  • Find the msgID, userID or topicID you need. Let's use msgID 51902990.
  • Remove the last 4 digits from the msgID to get the directory name (if there are less than 4 digits, use 0): 5190.
  • Put everything together behind the (above) URL and add ".html": http://loyce.club/archive/posts/5190/51902990.html.
So a search box, someone enters a number, and gets forwarded to the correct URL.

Hi LoyceV.
I had to make 3 search boxes.  
But I think that is what you want.

You can check it out here:
https://bitcoindata.science/LoyceV/searchtool.html

Very simple code, as I said.  Pure JS, no addons.

Code:
function gomsg () {
    var msg = document.getElementById('msgID').value;
    var msgfolder = msg.slice(0, 4);
    window.location.href = ("http://loyce.club/archive/posts/" + msgfolder +"/"+ msg+".html");
}

Edit: Just added bootstrap for design/format purposes.
I didn't understand the old posts logic, but I can do it as well if I have more information
legendary
Activity: 2352
Merit: 6089
bitcoindata.science
October 02, 2020, 03:17:43 PM
#32
I can do with pure js. Do you want?

Something very simple , 100% compatible with any  browser.

var number = getDocumentById("input")
var folder = ////slice number

Then some function calling https//...../folder/number
I know nothing about this, so I can't really judge if this is good or not.

I Will make it and I will post the link here in the next few days.

I think it will do what you are expecting
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
October 02, 2020, 12:12:11 PM
#31
I can do with pure js. Do you want?

Something very simple , 100% compatible with any  browser.

var number = getDocumentById("input")
var folder = ////slice number

Then some function calling https//...../folder/number
I know nothing about this, so I can't really judge if this is good or not.
legendary
Activity: 2352
Merit: 6089
bitcoindata.science
October 02, 2020, 06:40:43 AM
#30
ok, I can do it with javascript .
Is that client side? I prefer not to run any scripts

I understand.... I would be a 5 line script. Pure js,  no jqueryor any other extension. . I dont know to do with php

I can do with pure js. Do you want?

Something very simple , 100% compatible with any  browser.

var number = getDocumentById("input")
var folder = ////slice number

Then some function calling https//...../folder/number

Something like that...
legendary
Activity: 3472
Merit: 3507
Crypto Swap Exchange
October 01, 2020, 09:57:53 AM
#29
LoyceV is not a fox despite foxpup avatar  Cheesy
As bitcointalk members will use this website, maybe we should also vote on designs to help LoyceV make better decision.

He needs only CSS file/s to put in all HTML pages, it will already look different.
Now I just find fox.exchange, less known than Metamask. It seems more than similar is as well @Peanutswar design. Red-white colour and Fox with polygon design in there.

legendary
Activity: 2212
Merit: 7064
October 01, 2020, 09:25:34 AM
#28
LoyceV is not a fox despite foxpup avatar  Cheesy
As bitcointalk members will use this website, maybe we should also vote on designs to help LoyceV make better decision.
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
October 01, 2020, 09:19:57 AM
#27
ok, I can do it with javascript .
Is that client side? I prefer not to run any scripts.

Quote
do you already have all folders and html files, right?
Yes.
legendary
Activity: 2352
Merit: 6089
bitcoindata.science
October 01, 2020, 07:56:59 AM
#26
This looks easy to do. I if you can be more specific I can try to figure out.
What I need is basically automating this:
How to use it
  • Find the msgID, userID or topicID you need. Let's use msgID 51902990.
  • Remove the last 4 digits from the msgID to get the directory name (if there are less than 4 digits, use 0): 5190.
  • Put everything together behind the (above) URL and add ".html": http://loyce.club/archive/posts/5190/51902990.html.
So a search box, someone enters a number, and gets forwarded to the correct URL.
ok, I can do it with javascript .

do you already have all folders and html files, right?
I will do it in the next few days.
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
October 01, 2020, 06:38:13 AM
#25
This looks easy to do. I if you can be more specific I can try to figure out.
What I need is basically automating this:
How to use it
  • Find the msgID, userID or topicID you need. Let's use msgID 51902990.
  • Remove the last 4 digits from the msgID to get the directory name (if there are less than 4 digits, use 0): 5190.
  • Put everything together behind the (above) URL and add ".html": http://loyce.club/archive/posts/5190/51902990.html.
So a search box, someone enters a number, and gets forwarded to the correct URL.
legendary
Activity: 2352
Merit: 6089
bitcoindata.science
October 01, 2020, 06:21:06 AM
#24
I'm sorry I dont know what metamask is, I just use the reference of the fox came from the avatar of the fox up merit cycling club and make it in a low polygon design, I'm not intended to steal any kind of art work. Sorry if this looks like metamask, I will make a re-design of it thank you on your feed back.
I think the main problem with metamask is that it is not related to bitcoin, making a clear comparison to ethereum (which has nothing to do with the website)

It would also be nice to have a tiny bit of PHP (or whatever) that allows for an input field, and converts a number into an URL.
Examples
This would make it much easier to use 35M posts! View unedited/deleted posts (search per post, per user or per topic), and it's probably quite easy to make for someone who knows this.


This looks easy to do. I if you can be more specific I can try to figure out.
legendary
Activity: 3472
Merit: 3507
Crypto Swap Exchange
September 30, 2020, 02:35:22 AM
#23
I'm sorry I dont know what metamask is, I just use the reference of the fox came from the avatar of the fox up merit cycling club and make it in a low polygon design, I'm not intended to steal any kind of art work. Sorry if this looks like metamask, I will make a re-design of it thank you on your feed back.

Try here about Metamask  Wink

don't waste your time until LoyceV doesn't decide will use that design. Changing or removing the logo is the last thing there. He can just upload the CSS file and point to them in his pages.
I think, his priority is something other rather than design

It would also be nice to have a tiny bit of PHP (or whatever) that allows for an input field, and converts a number into an URL.
Examples
This would make it much easier to use 35M posts! View unedited/deleted posts (search per post, per user or per topic), and it's probably quite easy to make for someone who knows this.
legendary
Activity: 1708
Merit: 1280
Top Crypto Casino
September 29, 2020, 08:11:35 PM
#22
^ First thing that came to mind was Metamask.

Good day, LoyceV. and other members I would like to join in this contest with my design.
https://bitcointalksearch.org/topic/--5278470
https://github.com/Peanutswar/LoyceClub.git

I recommend not using the MetaMask symbol, at least so as not to confuse newbies. If I were the creator of Metamask, I would take it as plagiarism and take steps to protect the identity of my product.
page templates, UI Kits, and freebies for your projects.


I'm sorry I dont know what metamask is, I just use the reference of the fox came from the avatar of the fox up merit cycling club and make it in a low polygon design, I'm not intended to steal any kind of art work. Sorry if this looks like metamask, I will make a re-design of it thank you on your feed back.


legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
September 29, 2020, 01:30:06 PM
#21
I would like to join in this contest with my design.
I responded in your topic Smiley

^ First thing that came to mind was Metamask.
I didn't know the logo, but it looks like it indeed.
legendary
Activity: 1456
Merit: 5874
light_warrior ... 🕯️
September 29, 2020, 11:23:58 AM
#20
Good day, LoyceV. and other members I would like to join in this contest with my design.
https://bitcointalksearch.org/topic/--5278470
https://github.com/Peanutswar/LoyceClub.git

I recommend not using the MetaMask symbol, at least so as not to confuse newbies. If I were the creator of Metamask, I would take it as plagiarism and take steps to protect the identity of my product.
You can take a look at this selection of resources, I'm sure you will find what you need: https://neede.co/#/Templates
Code:
Free HTML landing page templates, UI Kits, and freebies for your projects.
legendary
Activity: 2114
Merit: 1150
https://bitcoincleanup.com/
September 29, 2020, 10:54:24 AM
#19
^ First thing that came to mind was Metamask.
legendary
Activity: 1708
Merit: 1280
Top Crypto Casino
September 27, 2020, 03:30:25 AM
#18
Good day, LoyceV. and other members I would like to join in this contest with my design.
https://bitcointalksearch.org/topic/--5278470
https://github.com/Peanutswar/LoyceClub.git


legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
July 02, 2020, 09:54:14 AM
#17
How often does it record posts?
Every few seconds (almost instantly).
legendary
Activity: 2282
Merit: 1041
July 02, 2020, 09:38:22 AM
#16
did you look at my previous post in this thread?
Yes, a long time ago. I hope to have some time in the weekend.

focusing on functionality.
That sounds like me Smiley

It would also be nice to have a tiny bit of PHP (or whatever) that allows for an input field, and converts a number into an URL.
Examples
This would make it much easier to use 35M posts! View unedited/deleted posts (search per post, per user or per topic), and it's probably quite easy to make for someone who knows this.

It would be nice if there is a search box to it where anyone can search a user and his deleted posts. How often does it record posts?

Hope to see its GUI.
legendary
Activity: 2212
Merit: 7064
July 02, 2020, 09:26:53 AM
#15
Common LoyceV you can do it Smiley
I like what examplens showed in his examples (but it can be improved), just don't forget to enable option for dark/light switch if possible.
It is important to have quick and easy navigation with back and forward buttons.
Responsive design would also be nice for easier browsing on all devices.
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
July 02, 2020, 09:14:12 AM
#14
did you look at my previous post in this thread?
Yes, a long time ago. I hope to have some time in the weekend.

focusing on functionality.
That sounds like me Smiley

It would also be nice to have a tiny bit of PHP (or whatever) that allows for an input field, and converts a number into an URL.
Examples
This would make it much easier to use 35M posts! View unedited/deleted posts (search per post, per user or per topic), and it's probably quite easy to make for someone who knows this.

Update: This now works!
Thanks bitmover!
copper member
Activity: 2562
Merit: 2510
Spear the bees
July 02, 2020, 08:13:53 AM
#13
I hope we don't go overboard with needless animations and "swoosh-ping" effects. (https://moneroworld.com/whysougly.html)

I would rather have a page that I can load quickly and easily than a page that looks like another blog template that was shoehorned in simply because the site-owner wanted a "modern look" rather than focusing on functionality.
legendary
Activity: 3472
Merit: 3507
Crypto Swap Exchange
July 02, 2020, 07:01:34 AM
#12
Bump! I should make the time to do this, so any ideas are still welcome!

I already forgot about this, did you look at my previous post in this thread?
legendary
Activity: 3472
Merit: 3507
Crypto Swap Exchange
February 15, 2020, 08:31:36 PM
#11
Here some idea what it might look like https://landofcrypto.com/Loyce.Club/ also check "TEST table" menu or: https://landofcrypto.com/Loyce.Club/page1.html
you will need to change the structure of your results pages then you can have well-sorted data table.
I uploaded this to my hosting and everyone can check it. If you want to use them, I will send you all the files. I didn't link everything, but it's not a big deal to do if you want to use it.
Also, I can comment code, if necessary for easier handling.


it is quite coincidental that the colours are compatible with @irfan_pak10 website and ads design.  Cheesy
legendary
Activity: 3234
Merit: 1654
Enterapp Pre-Sale Live - bit.ly/3UrMCWI
February 14, 2020, 10:57:55 AM
#10
if you'll display our logo on it as a sponsor?
I wouldn't be against this, but it has to fit in the design somehow.
I've thought about making a weekly auction to advertise on my Trust list viewer: an advertisement could be at the bottom of all pages for week 56 for instance (so under http://loyce.club/trust/2020-02-08_Sat_07.44h/350580.html and 10,000+ other pages). The advertisement would remain in place for as long as I can keep all older versions. But that would also look far more desperate for advertising than I really am Tongue

can we still design it?
Yes. I haven't picked a design yet. Lack of time is getting to me this year so far.

How about this type of ad, advertisement at the top of the page: https://bitcointalksearch.org/topic/overview-of-bitcointalk-signature-anti-spam-campaign-managers-4412712
I don't think of it as desperate, you have put a lot of effort in all that seems reasonable to me.
I'll be the first to but few spots  Wink



Don't worry ill ask my dev to make a new design that will be coherent with your website designs.
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
February 14, 2020, 07:13:35 AM
#9
if you'll display our logo on it as a sponsor?
I wouldn't be against this, but it has to fit in the design somehow.
I've thought about making a weekly auction to advertise on my Trust list viewer: an advertisement could be at the bottom of all pages for week 56 for instance (so under http://loyce.club/trust/2020-02-08_Sat_07.44h/350580.html and 10,000+ other pages). The advertisement would remain in place for as long as I can keep all older versions. But that would also look far more desperate for advertising than I really am Tongue

can we still design it?
Yes. I haven't picked a design yet. Lack of time is getting to me this year so far.
legendary
Activity: 3234
Merit: 1654
Enterapp Pre-Sale Live - bit.ly/3UrMCWI
February 13, 2020, 02:37:03 PM
#8
I could give 0.01BTC more for this project if you'll display our logo on it as a sponsor?
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
December 22, 2019, 09:00:22 AM
#7
I haven't forgotten about this, but because of the sudden disappearance of my webhost I have to fix that first.
copper member
Activity: 2142
Merit: 1305
Limited in number. Limitless in potential.
December 18, 2019, 12:30:03 PM
#6
Made a simple responsive layout for the website. Thanks to bootstrap 4, fontAwesome, jquery. Made a very simple logo btw Cheesy

Here's how it looks


Sauce:
https://github.com/blankcodes/loycev.club
member
Activity: 118
Merit: 31
December 17, 2019, 04:32:26 PM
#5
Just made a quick landing page for you, nothing much but still better than nothing.

Hope you like it.

https://github.com/MindoLam/LoyceVLanding
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
December 17, 2019, 02:19:36 PM
#4
Any other specific requirements?
Not really.

Are you actually uploading “files” to your computer/server every week?
Yes.

Quote
If so, this may be a good time to move to a more efficient way of handling your data.
Getting a VPS would largely improve things for someone who doesn't know a thing about databases.

Quote
Regardless, you should look at bootstrap, which can help you with CSS on your site with minimal coding.
https://getbootstrap.com/docs/4.4/getting-started/introduction/
I'll wait to see if someone comes up with something much better than I could ever create before attempting anything by myself Smiley
copper member
Activity: 1666
Merit: 1901
Amazon Prime Member #7
December 17, 2019, 12:09:45 PM
#3
Are you actually uploading “files” to your computer/server every week?

If so, this may be a good time to move to a more efficient way of handling your data.

Regardless, you should look at bootstrap, which can help you with CSS on your site with minimal coding.
https://getbootstrap.com/docs/4.4/getting-started/introduction/
legendary
Activity: 1988
Merit: 1317
Get your game girl
December 17, 2019, 11:43:29 AM
#2
Any other specific requirements? Like color preferences, theme or you want something that just looks good and serves the purpose of the site? I haven't done HTML/CSS in a while but wouldn't mind spending a couple of hours over the weekend. - I'm in Cheesy
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
December 17, 2019, 11:07:59 AM
#1
I've created loads of useful data on Bitcointalk, and there are many more topics too. I host most of my data on loyce.club, which was never meant to be a landing page when someone needs my data.
However, I've been asked before to add an index there, and it would be nice to have a better page design.

See loyce.club for the current design.

So here it goes: Is there someone willing to create something nice with CSS and other magic? It should still be easy to (manually) add new links to other data in the future, and I prefer no complicated stuff with scripting or databases and stuff, but just something to make it look a bit better!

I'm hoping to make this a community thing: it could be community voted if there are more entries, or it could be just anything. There's not really a budget for designs, if you do this you do it for the community, and for eternal fame while it lasts Tongue

Obviously, this topic was a rush-job too, and I like to use it to make the point that I'm absolutely not into making good-looking designs Tongue

Self-moderated against spam.
Jump to:
© 2020, Bitcointalksearch.org