Skip to content

Instantly share code, notes, and snippets.

View zaynaib's full-sized avatar
🐢
Slowly learn D3.js

Zaynaib (Ola) Giwa zaynaib

🐢
Slowly learn D3.js
View GitHub Profile
@szimmer
szimmer / RladiesRTP_Beer.r
Last active April 22, 2020 03:12
Code from R-Ladies RTP 2020_04_21
# https://github.com/rfordatascience/tidytuesday/blob/master/data/2020/2020-03-31/readme.md
library(tidyverse)
# Get the Data
brewing_materials <- readr::read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2020/2020-03-31/brewing_materials.csv')
beer_taxed <- readr::read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2020/2020-03-31/beer_taxed.csv')
brewer_size <- readr::read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2020/2020-03-31/brewer_size.csv')
beer_states <- readr::read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2020/2020-03-31/beer_states.csv')
@heardk
heardk / OneNote-to-MD.md
Last active May 11, 2024 14:28
Convert notes from OneNote into Markdown

Converting One Note to Markdown

This is an example of how to convert notes from OneNote into Markdown to use in other, less annoying Note applications. I am using PowerShell on Windows here, but other shell/scripting environments would work as well. If you want separate .md files, you'll need to export your OneNote pages separately. Exporting a section, or a selection of pages creates a single .docx file.

  • Download and install Pandoc
  • Export each of your note pages to a .docx (Word) format using OneNote export from the File menu
  • Gather all of these .docx files into a directory
  • Open directory in File Explorer
  • Open Powershell from the File Explorer using File -> Open Windows Powersell
  • Run the following command:
@plembo
plembo / storeonenoteononedrive.md
Last active June 26, 2021 16:43
Storing OneNote notebooks on OneDrive

Storing OneNote notebooks on OneDrive

The Windows 10 OneNote app will soon be the only desktop version of OneNote. Microsoft will not be bundling OneNote with Office starting with Office 2019. The procedure for storing notebooks off the local hard drive was never well understood or publicized in part because OneNote's interface was a moving target.

Here's the simple scoop: The easiest way to keep your notebooks on OneDrive is to use the web interface for OneDrive to create them there in the first place. Simply drill down to the folder where you want to store the notebook, right click and select New... OneNote notebook. Then open the OneNote app and click ... More Notebooks, select the new notebook and open.

To move and existing notebook, follow these steps:

@MeFoDy
MeFoDy / DailyCssImages.md
Last active September 11, 2023 12:48
Daily CSS Images: full list of tasks

Daily CSS Images

Week 1

Day 1. Bear Cub

The challenge begins! Don't overthink it. A cub can be made in only a few shapes.

Day 2. Elephant

@MWins
MWins / project-ideas01.md
Last active May 15, 2024 05:39
Back end Projects - list

Project Ideas

Ok. I'm going to list off some ideas for projects. You will have to determine if any particular idea is good enough to include in a portfolio. These aren't creative ideas. They likely already exist. Some are way too advanced while others are simplistic.

I will recommend to post any project you make to github and make a github project page for it. Explain in as much detail as possible how you made it, how it can be improved etc. Document it.

If you pick an advanced idea, setup a development roadmap and follow it. This will show some project management skills.

Another piece of advice for those who are design challenged. Use different front end frameworks and use different themes for those frameworks to provide appealing designs without looking like yet another bootstrap site.

@tgirke
tgirke / _Nvim-R-Tmux.md
Last active October 13, 2023 05:29
Nvim-R-Tmux: An Integrated Working Environment for R

Nvim-R-Tmux: Neovim-based IDE for R

!!! This Gist tutorial is deprecated. Its new version is available here !!!

This is some red text.

  • Author: Thomas Girke
  • Last update: 18-Nov-2020

@jevakallio
jevakallio / reactiveconf-slam-poetry.md
Last active July 7, 2021 19:57
#ReactiveConf 2017 Lightning Talk Submission: JavaScript Slam Poetry

TL;DR: If you want to see me perform a spoken word poem about JavaScript in front of 1000 people (and on video), please ⭐ star this gist. If you're on mobile, you'll need to request desktop site.

JavaScript Slam Poetry

Javascript! Slam! Poetry!

@hackjutsu
hackjutsu / upstream.md
Last active December 11, 2023 07:44
[set upstream] What does '--set-upstream' do? #tags: git
git branch --set-upstream-to <remote-branch>
# example
git branch --set-upstream-to origin feature-branch

# show up which remote branch a local branch is tracking
git branch -vv

sets the default remote branch for the current local branch.

var path = require('path')
module.exports = {
'config': path.resolve('server', 'config', 'database.json'),
'migrations-path': path.resolve('server', 'migrations'),
'models-path': path.resolve('server', 'models'),
'seeders-path': path.resolve('server', 'seeders'),
}
@KaliaHayes
KaliaHayes / fcc-project-list.md
Created April 20, 2016 02:13 — forked from mikesprague/fcc-project-list.md
Free Code Camp Project List

My Free Code Camp Projects

Collection of projects I'm doing while working through the Free Code Camp full stack web developer certifications.

Front End Development Certification

Basic Front End Development Projects

  • Build a Tribute Page | Requirements | Demo | Source Code
  • Build a Personal Portfolio Page | Requirements | Demo | Source Code