Skip to content

Instantly share code, notes, and snippets.

View ichoake's full-sized avatar

steven chaplinski ichoake

View GitHub Profile
@ichoake
ichoake / index.html
Created September 4, 2022 21:07
Responsive Resume
<div class="container cv pad-t-40 no-pad-lr">
<!-- Left Column -->
<div class="col-md-4 matchHeight no-pad-lr gray">
<div class="col-md-12 avatar">
<img src="https://www.w3schools.com/howto/img_avatar.png">
</div>
<div class="col-md-12 bio pad-b-20">
<div class="center">
<h1 class="name">John Doe</h1>
@SofijaErkin
SofijaErkin / debug_c++11_vscode_manually_mac.md
Last active March 8, 2023 09:36
Debugging C++11 with VSCode on Mac Or CodeLLDB debug C++11 with VSCode on Mac

Debug C++11 manually with VSCode(mac)

(ONLY FOR ONE SINGLE C/C++ FILE)

This is a Configuration for VSCode to debug C++11 on mac.

I'v used Clang++ to compile C++11, Code-Runner(VSCode Extension) to run C++11,

CodeLLDB(VSCode Extension) to debug C++11, C/C++ Clang Command Adopter

@bgoonz
bgoonz / fb-advertizing.md
Last active December 22, 2021 04:07
fb-advertizing.md

How to Advertise on Facebook: A No-Nonsense Guide for 2021

Excerpt

Learn how to use Facebook ads effectively to grow your online business. Our free guide is built for beginners who are new to paid advertising.


Imagine an advertising tool that helped you reach your ideal customers based on what they like, their interests, and their behaviors. A tool that saved you time and money by optimizing your ad delivery to get your message in front of those most likely to convert.

That’s what you get with Facebook advertising, a platform used by many ecommerce entrepreneurs and marketers, especially those just starting out who don’t have much advertising experience or a big ad budget. Anyone can fuel their business growth with Facebook ads, as long as they’re willing to learn the basics.

@bgoonz
bgoonz / all-html-metada-tags.html
Last active July 20, 2022 07:07
all-html-metada-tags.html
Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/
## Basic HTML Meta Tags
``` html
<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">
@kiranchavala
kiranchavala / spotify songs download
Last active July 5, 2021 16:08
spotify songs download
Install youtube-dl
brew install youtube-dl
Install ffmpeg for mp3 conversion
brew install ffmpeg
Installing spotify dl
@cderv
cderv / 00-New setup.md
Last active September 19, 2025 16:59
New computer setup
# installed by winget
winget install PowerShell-Preview
winget install git
git config --global user.name "Christophe Dervieux"
git config --global user.email christophe.dervieux@gmail.com
winget install rstudio
winget install vscode
winget install -e R
winget install Github.GithubDesktop
@stevecondylios
stevecondylios / resize-image-in-github-issue-github-flavored-markdown.md
Last active June 17, 2025 10:15
How to Resize an Image in a Github Issue (e.g. Github flavored Markdown)

How to Resize an Image in Github README.md (i.e. Github Flavored Markdown)

Percentage:

<img src="https://user-images.githubusercontent.com/16319829/81180309-2b51f000-8fee-11ea-8a78-ddfe8c3412a7.png" width=50% height=50%>

Pixels:

<img src="https://user-images.githubusercontent.com/16319829/81180309-2b51f000-8fee-11ea-8a78-ddfe8c3412a7.png" width="150" height="280">

@harish-r
harish-r / macos_cpp14.sh
Created March 30, 2020 00:40
Script to install C & C++ 14 GNU compiler in Mac OS Mojave
#!/bin/bash
sudo su
cd ~
mkdir gcc_all && cd gcc_all
#
curl -L https://ftpmirror.gnu.org/gcc/gcc-9.1.0/gcc-9.1.0.tar.xz | tar xf -
#
curl -L ftp://gcc.gnu.org/pub/gcc/infrastructure/gmp-6.1.0.tar.bz2 | tar xf -
curl -L ftp://gcc.gnu.org/pub/gcc/infrastructure/mpfr-3.1.4.tar.bz2 | tar xf -
curl -L ftp://gcc.gnu.org/pub/gcc/infrastructure/mpc-1.0.3.tar.gz | tar xf -
@Snarp
Snarp / google-docs-copy.js
Last active September 24, 2025 05:14
Script to allow copying from a protected Google Doc
/*
<https://stackoverflow.com/questions/40296831/is-it-possible-to-force-a-copy-of-a-protected-google-doc>
NOTE - 2021-05-24
-----------------
The script below isn't the fastest way to copy-and-paste from a protected
Google Doc. Before trying it, I'd suggest following MikoFrosty's advice from
the comments:
@grant
grant / index.html
Last active December 22, 2021 04:05
Docs Quickstart
<!DOCTYPE html>
<html>
<head>
<title>Google Docs API Quickstart</title>
<meta charset="utf-8" />
</head>
<body>
<p>Google Docs API Quickstart</p>
<!--Add buttons to initiate auth sequence and sign out-->
<button id="authorize_button" style="display: none;">Authorize</button>