reeee
reeee
KPCKevin Powell - Community
Created by reeee on 10/5/2024 in #os-and-tools
windows activation? what is this
No description
78 replies
KPCKevin Powell - Community
Created by reeee on 10/3/2024 in #os-and-tools
formatting pc
.
88 replies
KPCKevin Powell - Community
Created by reeee on 10/2/2024 in #os-and-tools
connecting to wifi on desktop
How do i do it
178 replies
KPCKevin Powell - Community
Created by reeee on 9/18/2024 in #os-and-tools
my vs code emmets not working
{
"editor.mouseWheelZoom": true,
"code-runner.runInTerminal": true,
"code-runner.saveFileBeforeRun": true,
"debug.showInlineBreakpointCandidates": false,
"editor.fontSize": 17,
"problems.showCurrentInStatus": true,
"editor.wordWrap": "on",
"editor.accessibilitySupport": "off",
"editor.tokenColorCustomizations": {
"comments": "#c5c5c5"
},
"liveServer.settings.donotShowInfoMsg": true,
"explorer.confirmDragAndDrop": false,
"workbench.colorTheme": "One Dark Pro Darker",
"editor.tabSize": 1,
"redhat.telemetry.enabled": false,
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml"
},
"accessibility.signals.lineHasBreakpoint": {
"sound": "off"
},
"accessibility.signals.onDebugBreak": {
"sound": "off"
},
"explorer.compactFolders": false,
"editor.snippetSuggestions": "top",
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"editor.wordBasedSuggestions": "matchingDocuments",
"html.suggest.html5": false,
"typescript.suggest.paths": false,
"javascript.suggest.paths": false,
"emmet.showSuggestionsAsSnippets": true,
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"javascript": "javasciptreact"
},
"html.format.contentUnformatted": "",

}
{
"editor.mouseWheelZoom": true,
"code-runner.runInTerminal": true,
"code-runner.saveFileBeforeRun": true,
"debug.showInlineBreakpointCandidates": false,
"editor.fontSize": 17,
"problems.showCurrentInStatus": true,
"editor.wordWrap": "on",
"editor.accessibilitySupport": "off",
"editor.tokenColorCustomizations": {
"comments": "#c5c5c5"
},
"liveServer.settings.donotShowInfoMsg": true,
"explorer.confirmDragAndDrop": false,
"workbench.colorTheme": "One Dark Pro Darker",
"editor.tabSize": 1,
"redhat.telemetry.enabled": false,
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml"
},
"accessibility.signals.lineHasBreakpoint": {
"sound": "off"
},
"accessibility.signals.onDebugBreak": {
"sound": "off"
},
"explorer.compactFolders": false,
"editor.snippetSuggestions": "top",
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"editor.wordBasedSuggestions": "matchingDocuments",
"html.suggest.html5": false,
"typescript.suggest.paths": false,
"javascript.suggest.paths": false,
"emmet.showSuggestionsAsSnippets": true,
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"javascript": "javasciptreact"
},
"html.format.contentUnformatted": "",

}
43 replies
KPCKevin Powell - Community
Created by reeee on 9/15/2024 in #front-end
how to avoid page from reloading when clicking on urls
can u all send me a tutorial
140 replies
KPCKevin Powell - Community
Created by reeee on 8/26/2024 in #os-and-tools
tips on guiding clients to hosting while not being involved in the process in any way
i dont want to host for my clients but i do want to make sure that they know what to do to host their website, do you all know any source that explains the complete hosting process simply for non-technical people?
37 replies
KPCKevin Powell - Community
Created by reeee on 8/25/2024 in #front-end
how to add classes in react
<Link to="/" className={(pathname === '/') ? 'active' : ''} ><li>Home</li></Link>
<Link to="/" className={(pathname === '/') ? 'active' : ''} ><li>Home</li></Link>
i want to add classes to link tag but im not able to do it.. help
10 replies
KPCKevin Powell - Community
Created by reeee on 8/24/2024 in #front-end
i want to change color of the active nav link in react
const Navbar = () => {

const {pathname} = useLocation();

return (

<ul id="navigation">
<Link to="/" className={(pathname === '/') ? 'active' : ''}><li>Home</li></Link>
<Link to="/about" className={(pathname === '/about') ? 'active' : ''}><li>About</li></Link>
<Link to="/service" className={(pathname === '/service') ? 'active' : ''}><li>Service</li></Link>
</ul>;
)
const Navbar = () => {

const {pathname} = useLocation();

return (

<ul id="navigation">
<Link to="/" className={(pathname === '/') ? 'active' : ''}><li>Home</li></Link>
<Link to="/about" className={(pathname === '/about') ? 'active' : ''}><li>About</li></Link>
<Link to="/service" className={(pathname === '/service') ? 'active' : ''}><li>Service</li></Link>
</ul>;
)
} is this method fine ?
2 replies
KPCKevin Powell - Community
Created by reeee on 8/22/2024 in #front-end
react snippets not working
i tried to type createBrowserRouter and ReactDOM, but i got no snippet suggestion even though i have the react snippets installed
1 replies
KPCKevin Powell - Community
Created by reeee on 8/18/2024 in #os-and-tools
how to retain all settings, extensions of vs code
for some reason my vs code is not opening at all, i tried everything... so im going to reinstall vs code, and i was wondering how can i retain all settings, extensions of vs code when i reinstall the vs code? pls help
22 replies
KPCKevin Powell - Community
Created by reeee on 8/16/2024 in #front-end
how to start a react app after i closed it
i started the react app yesterday and reopened it today and im not getting how to reopen the react app
8 replies
KPCKevin Powell - Community
Created by reeee on 8/13/2024 in #front-end
is it fine if i completely remove the app.css and index.css files in my react folder
is it fine?
2 replies
KPCKevin Powell - Community
Created by reeee on 8/13/2024 in #os-and-tools
i want to add "open with vs code" in file explorer
how do i do it
11 replies
KPCKevin Powell - Community
Created by reeee on 8/8/2024 in #os-and-tools
help me update my node js version
i want to update my node js to the latest version using the terminal
13 replies
KPCKevin Powell - Community
Created by reeee on 8/8/2024 in #os-and-tools
how do i create vite on a file that is inside 3 folders?
i want to create vite on a file that is inside 3 folders in my vs code, how do i do this?
36 replies
KPCKevin Powell - Community
Created by reeee on 7/11/2024 in #front-end
how to have multiple pages in a website?
22 replies
KPCKevin Powell - Community
Created by reeee on 7/11/2024 in #os-and-tools
how do i make the scrollbar size bigger?
No description
9 replies
KPCKevin Powell - Community
Created by reeee on 7/8/2024 in #front-end
does input box has a minimum width set by default?
even though i have not given my input box a width or min-width.. it still never goes below 202px.. is it becuz input box has a min width set by default?
19 replies
KPCKevin Powell - Community
Created by reeee on 7/8/2024 in #front-end
grid help
i have two rows in a grid container with 3 items.. i want to make the first row have two columns and the second row only one column.. how do i do this without selecting each individual item?
6 replies
KPCKevin Powell - Community
Created by reeee on 7/7/2024 in #front-end
is it bad practice to " * { box-sizing: border box; } "
is it bad practice to " * { box-sizing: border box; } "
2 replies