This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for /r d:\ %f in (*) do @if %~zf gtr 1000000000 echo %f %~zf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |