althepal78
althepal78
Explore posts from servers
KPCKevin Powell - Community
Created by althepal78 on 10/25/2024 in #front-end
Looking for a free decent nba api, Node Hosting
yeah I am trying to get -news but I see I might have to freaking use some type of hidden thing like in the background thinking about going to php I guess that is what I am going to have to do
12 replies
KPCKevin Powell - Community
Created by althepal78 on 10/25/2024 in #front-end
Looking for a free decent nba api, Node Hosting
Oh okay thanks a lot I found a link to the actual team maybe I can get just news from that link too 🙂
12 replies
KPCKevin Powell - Community
Created by althepal78 on 10/25/2024 in #front-end
Looking for a free decent nba api, Node Hosting
Why cloudflare, I am asking for me the noob
12 replies
KPCKevin Powell - Community
Created by althepal78 on 10/25/2024 in #front-end
Looking for a free decent nba api, Node Hosting
if I use vercel or the others, is it going to hide my token if I need one for an api going forward?
12 replies
KPCKevin Powell - Community
Created by althepal78 on 10/25/2024 in #front-end
Looking for a free decent nba api, Node Hosting
also trying to get rid of that news from the endpoint I have because it only haves six articles I want all articles relating to the knicks for news don't care about the others for my site lol bad or good lol
12 replies
KPCKevin Powell - Community
Created by althepal78 on 10/25/2024 in #front-end
Looking for a free decent nba api, Node Hosting
which one do you prefer
12 replies
KPCKevin Powell - Community
Created by althepal78 on 10/25/2024 in #front-end
Looking for a free decent nba api, Node Hosting
I don't know how to deploy like that. I was hoping I can do it from a hosting site because I don't like using github to do that but maybe I can figure it out. I tried one time shit was so confusing I took 2 months off lol but thanks @clevermissfox
12 replies
KPCKevin Powell - Community
Created by althepal78 on 10/25/2024 in #front-end
Looking for a free decent nba api, Node Hosting
let knicks = results.sports[0].leagues[0].teams[19].team what I have to write to get a specific team I don' t know if there is an easier way LOL
12 replies
KPCKevin Powell - Community
Created by Hidi_ on 10/23/2024 in #front-end
Fixing my layout from desktop to phone
do a mobile first approach, according to kevin it should have the least resistance or code then possibly container or media queries and some clamps etc.. looks nice though
24 replies
KPCKevin Powell - Community
Created by Kivngfavour on 10/25/2024 in #front-end
Outsourcing for layout solutions
however the background looks like an svg to the left and used as a background image in css
body{
background: url('pathtoimage.jpg');
background-position: left;
}
body{
background: url('pathtoimage.jpg');
background-position: left;
}
33 replies
KPCKevin Powell - Community
Created by Kivngfavour on 10/25/2024 in #front-end
Outsourcing for layout solutions
if that is a website you can right click and look at source code
33 replies
KPCKevin Powell - Community
Created by althepal78 on 9/4/2024 in #front-end
Youtube Api
I do this section on my computer and copy the results into another file so I don't have my key out there. Even though my new key is for public information LOL so I just copied that damn thing lmao thanks wow I am so tired sometimes lol
7 replies
KPCKevin Powell - Community
Created by althepal78 on 9/4/2024 in #front-end
Youtube Api
I am so dumb I copied that string never noticed that was too busy adding the playlist and key lmao
7 replies
KPCKevin Powell - Community
Created by althepal78 on 9/4/2024 in #front-end
Youtube Api
async function getInfo() {
const response = await fetch(
"https://youtube.googleapis.com/youtube/v3/playlistItems?part=snippet&maxResults=8&playlistId=PL6umJFQ6OsxqjNxqlDyHaBZ_WX_2Hhc_R&key=getyourownkey"
);
const result = await response.json();
console.log(result)
let resultSorted = [];
result.items.forEach((el) => {
resultSorted.push(el);
});
console.log(resultSorted)
return resultSorted.sort((a, b )=> {
return new Date( b.snippet.publishedAt) - new Date( a.snippet.publishedAt)
});
}
async function getInfo() {
const response = await fetch(
"https://youtube.googleapis.com/youtube/v3/playlistItems?part=snippet&maxResults=8&playlistId=PL6umJFQ6OsxqjNxqlDyHaBZ_WX_2Hhc_R&key=getyourownkey"
);
const result = await response.json();
console.log(result)
let resultSorted = [];
result.items.forEach((el) => {
resultSorted.push(el);
});
console.log(resultSorted)
return resultSorted.sort((a, b )=> {
return new Date( b.snippet.publishedAt) - new Date( a.snippet.publishedAt)
});
}
7 replies
KPCKevin Powell - Community
Created by LanFeusT on 7/24/2024 in #front-end
Scale animation with CSS Grid causes pixel gap issues
I only see it with 1px
8 replies
KPCKevin Powell - Community
Created by bockster6669 on 7/24/2024 in #front-end
How to make a child element fixed but in the same time relative
it is not in your portfolio github you sent either
43 replies
KPCKevin Powell - Community
Created by bockster6669 on 7/24/2024 in #front-end
How to make a child element fixed but in the same time relative
what did you even write this in
43 replies
KPCKevin Powell - Community
Created by bockster6669 on 7/24/2024 in #front-end
How to make a child element fixed but in the same time relative
it looks nice make this a codepen or something
43 replies
KPCKevin Powell - Community
Created by bockster6669 on 7/24/2024 in #front-end
How to make a child element fixed but in the same time relative
You might want to use position sticky and then use top: 0; so if the nav is not at top 0 you can scroll then it sticks 🙂
43 replies
KPCKevin Powell - Community
Created by LanFeusT on 7/24/2024 in #front-end
Scale animation with CSS Grid causes pixel gap issues
I added gap:2px; and it seems to fix it I have no idea why that happened I also changed grid-template-columns:repeat(4, 1fr);
8 replies