Skip to content

Instantly share code, notes, and snippets.

View jim-at-jibba's full-sized avatar
🦄

James G. Best jim-at-jibba

🦄
View GitHub Profile
import React from "react";
import {
View,
SafeAreaView,
useWindowDimensions,
TextInput,
} from "react-native";
import Animated, {
Extrapolate,
interpolate,
@jim-at-jibba
jim-at-jibba / content_discovery_all.txt
Created February 12, 2021 16:05 — forked from m4ll0k/content_discovery_all.txt
a masterlist of content discovery URLs and files (used most commonly with gobuster)
This file has been truncated, but you can view the full file.
`
~/
~
ים
___
__
_
@jim-at-jibba
jim-at-jibba / cookbook.sql
Created June 3, 2016 19:23 — forked from greghelton/cookbook.sql
MySQL Database for Cookbook, Recipes, Ingredients
-- start the server: $ mysqld --console
-- login: $ mysql -u root --password=wxyz
-- run the script: mysql> source /Users/javapro/dev/src/sql/Cookbook.sql
-- the script:
drop database if exists Cookbook;
create database Cookbook;
connect Cookbook;
@jim-at-jibba
jim-at-jibba / amazon-ec2-ftp.md
Created March 22, 2016 11:46 — forked from gunjanpatel/amazon-ec2-ftp.md
amazon ec2 LAMP and FTP installation and setup
@jim-at-jibba
jim-at-jibba / 0_reuse_code.js
Last active August 29, 2015 14:08
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
<div class="home-slide flexslider">
<?php if(get_field('home_slide_repeater')): ?>
<ul>
<?php while(has_sub_field('home_slide_repeater')): ?>
<li>
<?php $image = wp_get_attachment_image_src(get_sub_field('home_slide_image'), 'home-slide'); ?>
/*******************************************************************************
1. DEPENDENCIES
*******************************************************************************/
var gulp = require('gulp'); // gulp core
sass = require('gulp-sass'), // sass compiler
uglify = require('gulp-uglify'), // uglifies the js
jshint = require('gulp-jshint'), // check if js is ok
rename = require("gulp-rename"); // rename files
concat = require('gulp-concat'), // concatinate js