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
machine:
node:
version: v0.11.13
environment:
COVERALLS_REPO_TOKEN: "xxx"
CIRCLE_ARTIFACTS: "coverage"
general:
artifacts:
- "coverage" # relative to the user's home directory
'use strict'
var gulp = require('gulp')
var standard = require('gulp-standard')
var mocha = require('gulp-mocha')
var istanbul = require('gulp-istanbul')
var coveralls = require('gulp-coveralls')
gulp.task('standard', function () {
return gulp.src(['./app.js'])
'use strict'
var gulp = require('gulp')
var standard = require('gulp-standard')
var mocha = require('gulp-mocha')
var istanbul = require('gulp-istanbul')
var coveralls = require('gulp-coveralls')
var output_path = process.cwd()
@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
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 / 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
npx lockfile-lint --path npm-shrinkwrap.json --allowed-hosts npm yarn --validate-https
npx: installed 33 in 2.348s
ABORTING lockfile lint process due to error exceptions
Unable to find relevant lockfile parser for "npm-shrinkwrap.json", consider passing the --type option.
Error
at new ParsingError (/home/drazisil/.npm/_npx/12990/lib/node_modules/lockfile-lint/node_modules/lockfile-lint-api/src/common/ParsingError.js:27:33)
at ParseLockfile.parseSync (/home/drazisil/.npm/_npx/12990/lib/node_modules/lockfile-lint/node_modules/lockfile-lint-api/src/ParseLockfile.js:53:13)
const result = await superagent
.put(`${putURL}`)
.send(uploadFile) // sends a JSON post body
.set("Content-Type", "application/x-gzip")
.set("Content-Encoding", "gzip")
.set("x-amz-acl", "public-read")
.set("Content-Length", Buffer.byteLength(uploadFile));