Skip to content

Instantly share code, notes, and snippets.

View daryllukas's full-sized avatar
🏠
Working from home

Daryl Lukas daryllukas

🏠
Working from home
View GitHub Profile
@daryllukas
daryllukas / ViewControllerUtils.swift
Created November 25, 2021 07:29
Loading indicator for iOS
//
// ViewControllerUtils.swift
// DesignMiami
//
// Created by Daryl Lukas on 11/24/21.
//
import Foundation
import UIKit

Display contents of config file with comments and newlines

egrep -v ^# /path/to/config/file.conf | grep -v ^$

dump/output/list Linux password expiry info for all users

A command like this should show you the expiration status for all accounts defined in your /etc/passwd/ file
cut -f 1 -d: /etc/passwd | xargs -n 1 -I {} bash -c " echo {} ; chage -l {}"

@daryllukas
daryllukas / 0_reuse_code.js
Created January 20, 2016 07:34
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
@daryllukas
daryllukas / makehub
Created March 31, 2014 13:45
Crop Pest Monitoring/Detection
# Title
Crop Pest Monitoring/Detection
# Picture
media: http://www.deviantsart.com/2dllqr2.jpg
# Objective
A automated pest monitoring system using a webcam and a Raspberry Pi
# Duration
1 Day
# Age Group
all
@daryllukas
daryllukas / AutoWebCam
Created March 31, 2014 13:38
Takes pictures using WebCam every X seconds and uploads to dropbox
# Imports
import pygame
import pygame.camera
import time
import dropbox
# Developer Keys
# Get your app key and secret from the Dropbox developer website
DROPBOX_APIKEY = '<API-KEY>'
DROPBOX_APPSECRET = '<APP-SECRET>'