Skip to content

Instantly share code, notes, and snippets.

View seanquijote's full-sized avatar
🏠
Working from home

Sean Quijote seanquijote

🏠
Working from home
View GitHub Profile
@seanquijote
seanquijote / my-fizzbuzz-sample.js
Created February 17, 2021 13:15
My FizzBuzz Sample
var output;
var maxNum = 100;
const run = () => {
for (var i = 1; i <= maxNum; i++) {
output = "";
if (divide(i, 3) == 0) {
appendOutput("Fizz");
}
@seanquijote
seanquijote / nodejs-laravel-auto-setup.sh
Created December 3, 2020 11:31
Simple Auto-Setup Script for NodeJS and Laravel
#!/usr/bin/env bash
#title : Simple Auto-Setup Script for NodeJS and Laravel
#description : Installs all dependencies for NodeJS and Laravel web apps
#author : seanquijote
#date_created : 20200428
#date_lastupdated : 20200521
#version : 0.0.4
#==============================================================================
read -e -p "Enter Username: " UNAME
Text to Speech For Pepegas
*Only tested with Brian voice*
Testing your message
You can use the following website which emulates TTS:
https://5e7en.me/tts
Cheering vs Donations

Demo:

Spoiler warning

Spoiler text. Note that it's important to have a space after the summary tag. You should be able to write any markdown you want inside the <details> tag... just make sure you close <details> afterward.

console.log("I'm a code block!");
#include <Windows.h>
#include "../../API/RainmeterAPI.h"
struct ACCENTPOLICY {
int nAccentState;
int nFlags;
int nColor;
int nAnimationId;
};
struct WINCOMPATTRDATA {
@gokulkrishh
gokulkrishh / media-query.css
Last active October 31, 2024 17:39
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */
@mobilemind
mobilemind / git-tag-delete-local-and-remote.sh
Last active November 2, 2024 08:30
how to delete a git tag locally and remote
# delete local tag '12345'
git tag -d 12345
# delete remote tag '12345' (eg, GitHub version too)
git push origin :refs/tags/12345
# alternative approach
git push --delete origin tagName
git tag -d tagName
@juliuscsurgo
juliuscsurgo / Bootstrap: no blue glow
Created January 3, 2013 01:29
Twitter Bootstrap: remove the blue glow in the form inputs
input[type="text"], textarea {
outline: none;
box-shadow:none !important;
border:1px solid #ccc !important;
}