Skip to content

Instantly share code, notes, and snippets.

View drazisil's full-sized avatar
💭
Always Online - Somewhere

Molly Crendraven drazisil

💭
Always Online - Somewhere
View GitHub Profile
for /r d:\ %f in (*) do @if %~zf gtr 1000000000 echo %f %~zf
#!/bin/sh
# This is a script that checks to see if the open ports on a host are what you expect them to be.
# If your firewall isn't doing what it's supposed to, it will post a message to Slack to alert you.
# Intended to be run as a cron job.
#
# Requires nmap to be installed
#
# Invoke as
# ./portscanyourself example.com 80 443
# To alert you if any ports other than 80 and 443 are listening on a host
git fetch -p && for branch in `git branch -vv | grep ': gone]' | awk '{print $1}'`; do git branch -D $branch; done
H/T: https://github.com/wearehive/project-guidelines
@drazisil
drazisil / RC4.js
Last active March 21, 2018 00:49
Pure JS Implementation of RC4
class MyRC4 {
constructor(key) {
const keyBytes = Buffer.from(key)
const keyLength = keyBytes.length
this.m_state = Array(256)
this.m_x = 0
this.m_y = 0
const opacity = 0.4;
const current = document.querySelector("#current");
const [maxHeight, maxWidth] = [current.height, current.width];
const imgs = document.querySelectorAll(".imgs img");
imgs[0].style.opacity = opacity;
import React, { Component } from "react";
import css from "./assets/css/style.css";
import img1 from "./assets/images/img1.jpeg";
import img2 from "./assets/images/img2.jpeg";
import img3 from "./assets/images/img3.jpeg";
import img4 from "./assets/images/img4.jpeg";
import AddImage from "./AddImage";
export default class Gallery extends Component {
constructor() {
import React, { Component } from "react";
import uniqueString from "unique-string";
import agent from "superagent";
import classNames from "classnames";
import logo from "./logo.svg";
import "./Gallery.css";
import ImageList from "./Components/ImageList";
import image1 from "./images/img1.jpeg";
import image2 from "./images/img2.jpeg";
import image3 from "./images/img3.jpeg";
import React, { Component } from "react";
import agent from "superagent";
import classNames from "classnames";
import logo from "./logo.svg";
import "./Gallery.css";
import ImageList from "./Components/ImageList";
import { FilePond } from "react-filepond";
export default class Gallery extends Component {
constructor() {
@drazisil
drazisil / 0_README.md
Last active March 30, 2023 10:41
Example code using react-filepond and multer to upload files to a server
@drazisil
drazisil / config.yml
Created April 9, 2019 11:15 — forked from lokst/config.yml
Sample steps to manually update Xcode to latest 10.2 version (not necessary once the Xcode 10.2 GA version image has been released on CircleCI)
version: 2
jobs:
build:
macos:
xcode: "10.2.0"
steps:
- run:
name: Update Xcode to latest 10.2 version
command: |
# Requires setting the XCODE_INSTALL_USER and XCODE_INSTALL_PASSWORD