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
# Prompts user for password until the password is correct | |
# Useful for programs where you must get the correct password from the user in order to execute a command | |
passOk="false" | |
while [ "$passOk" != "true" ] | |
do | |
echo -n "Password: " | |
read password # Grabs username | |
if [[ $(echo $password | sudo -k -S echo valid) = "valid" ]] &>/dev/null; then | |
echo "Correct password" |
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
#include <iostream> | |
using namespace std; | |
string exec(const char* cmd); // Used for executing terminal commands in c++ | |
string getPassword(); // Prompts the user for their system password and checks to see if it is the correct password | |
// If the password is correct, it returns it in a string | |
int main(int argc, char *argv[]) { // Example implementation of getPassword() |
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
#include <iostream> | |
#include <string> | |
#include <vector> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <math.h> | |
#include <cstdio> | |
#include <memory> | |
#include <stdexcept> | |
#include <fstream> |
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
#include <iostream> | |
#include <sstream> | |
using namespace std; | |
int main(int argc, char *argv[]) { | |
bool b = true; | |
// High school level | |
if (true) { | |
cout << "simple conditional" << endl; | |
} |
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 | |
USAGE=$'Usage: imessage <number> <text>\nExample: message 9121231234 \"Hello!\"' | |
if [ "$#" -ne "2" ]; then | |
echo "$USAGE" | |
exit 1; | |
fi | |
exec <"$0" || exit; | |
for i in {1..12} # Reads the first x lines of the program | |
do | |
read v |
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
#include <termios.h> | |
#include <unistd.h> | |
#include <stdio.h> | |
#include <iostream> | |
#include <string> | |
using namespace std; | |
const char BACKSPACE_KEY = 127; | |
const char RETURN_KEY = 10; |
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
#!/usr/bin/python | |
import numbers | |
def findDivisor(num): | |
# 2,3 are the most common divisor for many numbers hence going by divisor of 2,3 can be quicker | |
# if not then by the same number as divisor | |
if num%2 == 0: | |
return 2 | |
elif num%3==0: | |
return 3 |
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
bone_coefficient = -1; | |
addition_constant = -1; | |
error_margin = -1; | |
bone_length = -1; | |
bone_coefficients = [[[0 for col in range(2)]for row in range(3)] for x in range(6)] | |
# Femur | |
bone_coefficients[0][0][0] = 2.32 | |
bone_coefficients[0][0][1] = 2.47 | |
bone_coefficients[0][1][0] = 2.10 |
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 plistlib | |
import os | |
import sys | |
import getpass | |
# usage: python contact_reaper.py or python3 contact_reaper.py | |
# tested on macOS Mojave (10.14) | |
def get_main_dir_path(): | |
return "/Users/" + getpass.getuser() + "/Library/Application Support/AddressBook/Sources/" |
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 <Foundation/Foundation.h> | |
#import <IOKit/IOKitLib.h> | |
#import <IOKit/graphics/IOGraphicsLib.h> | |
// this helped me out a lot <3: https://stackoverflow.com/questions/3239749/programmatically-change-mac-display-brightness | |
int main(int argc, char *argv[]) { | |
io_iterator_t iterator; | |
kern_return_t result = IOServiceGetMatchingServices(kIOMasterPortDefault, IOServiceMatching("IODisplayConnect"), &iterator); | |
OlderNewer