Skip to content

Instantly share code, notes, and snippets.

View marclove's full-sized avatar

Marc Love marclove

View GitHub Profile
@marclove
marclove / agent loop
Created March 21, 2025 00:54 — forked from jlia0/agent loop
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet
@marclove
marclove / AppleLogoWIthRgbOffset.swift
Created February 16, 2025 18:13 — forked from Volorf/AppleLogoWIthRgbOffset.swift
Apple Logo With RGB Offset
import SwiftUI
import CoreMotion
// Main View
struct AppleLogoWithRgbOffset: View {
// Initiate and pass a motion manager instance as
// an enviromental dependency when you initilize this view
@EnvironmentObject var motion: MotionManager
@marclove
marclove / Hide Ads On LinkedIn Instructions.md
Last active February 21, 2025 21:04
LinkedIn QoL Userscripts

Hide Ads On LinkedIn

  1. Add a userscripts browser extension like Tampermonkey or Greasemonkey.
  2. Install each of these scripts as a user script.

If you want to improve performance, you could merge these into a single function and observer, but the performance has been fine for me and this gives you flexibility on what aspects you want to hide.

@marclove
marclove / hideInstacartAds.js
Created February 10, 2025 15:04
Hide Instacart Ads
// ==UserScript==
// @name Hide Instacart Ads
// @namespace http://tampermonkey.net/
// @version 2025-02-05
// @description Stop polluting my listings with ads
// @author Marc Love
// @match https://*.instacart.com/*
// @icon https://d2guulkeunn7d8.cloudfront.net/assets/instacart_favicon_48x48-25ac28f848f7cf81a9c8a9aad693a898.png
// @run-at document-end
// @grant none
@marclove
marclove / clean_code.md
Created February 5, 2025 05:12 — forked from wojteklu/clean_code.md
Summary of 'Clean code' by Robert C. Martin

Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.


General rules

  1. Follow standard conventions.
  2. Keep it simple stupid. Simpler is always better. Reduce complexity as much as possible.
  3. Boy scout rule. Leave the campground cleaner than you found it.
  4. Always find root cause. Always look for the root cause of a problem.

Design rules

@marclove
marclove / DALLE-3 Prompt.md
Created October 27, 2023 13:59
DALLE-3 Prompt

Knowledge cutoff: 2022-01 Current date: 2023-10-05

Tools

dalle

// Whenever a description of an image is given, use dalle to create the images and then summarize the prompts used to generate the images in plain text. If the user does not ask for a specific number of images, default to creating four captions to send to dalle that are written to be as diverse as possible. All captions sent to dalle must abide by the following policies:
// 1. If the description is not in English, then translate it.
@marclove
marclove / .eslintrc
Created March 22, 2019 18:32
ESLint + Prettier + VSCode Configuration
{
"plugins": ["prettier"],
"extends": [
"plugin:prettier/recommended",
"plugin:jest/recommended"
],
"rules": {
// only rules that don't conflict with the rules declared in .prettierrc
}
// other eslint stuff
@marclove
marclove / docker-rebuild.sh
Created February 20, 2018 19:23
Docker Clean Rebuild
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
docker rmi -f $(docker images -q)
docker-compose build
docker-compose up -d
@marclove
marclove / Date.swift
Created July 31, 2017 07:09
UIKit & Foundation Extensions
extension Date {
func add(_ value: Int, _ component: Calendar.Component) -> Date! {
let calendar = Calendar.current
return calendar.date(byAdding: component, value: value, to: self)
}
func subtract(_ value: Int, _ component: Calendar.Component) -> Date! {
let calendar = Calendar.current
return calendar.date(byAdding: component, value: -value, to: self)
}
@marclove
marclove / Platform.swift
Created July 30, 2017 09:00
iOS Platform Conditional
struct Platform {
static let isSimulator: Bool = {
var isSim = false
#if arch(i386) || arch(x86_64)
isSim = true
#endif
return isSim
}()
}