Skip to content

Instantly share code, notes, and snippets.

View iykekings's full-sized avatar
🦕
Contributing to Deno

Ikechukwu Eze iykekings

🦕
Contributing to Deno
View GitHub Profile
@iykekings
iykekings / sort_stack.md
Created December 16, 2019 14:01 — forked from seanchen1991/sort_stack.md
Problem description for the Sort Stack problem in JS

Sort Elements in a Stack

Given a Stack class like the following:

class Stack {
  constructor() {
    this.storage = [];
  }

 push(item) {
@iykekings
iykekings / webpack.config.js
Created February 14, 2020 16:57 — forked from bo01ean/webpack.config.js
swc-loader for create-react-app webpack
'use strict';
const fs = require('fs');
const path = require('path');
const webpack = require('webpack');
const resolve = require('resolve');
const PnpWebpackPlugin = require('pnp-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CaseSensitivePathsPlugin = require('case-sensitive-paths-webpack-plugin');
const InlineChunkHtmlPlugin = require('react-dev-utils/InlineChunkHtmlPlugin');
@iykekings
iykekings / audit-on-push.yml
Created December 12, 2020 12:04 — forked from LukeMathWalker/audit.yml
GitHub Actions - Rust setup
name: Security audit
on:
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
jobs:
security_audit:
runs-on: ubuntu-latest
steps: