Skip to content

Instantly share code, notes, and snippets.

@Skylarkroam
Skylarkroam / background.js
Created March 11, 2019 18:57
Vivid Browser
//added to git
// chrome.windows.getAll({}, function (winArr) {
// // print(winArr)
// for (var win of winArr) {
// SinWave(win);
// }
// });
// function SinWave(win) {
@deenie1
deenie1 / build.gradle.kts
Created May 1, 2024 20:34 — forked from marcellogalhardo/build.gradle.kts
Root gradle.build.kts global settings for KAPT
allprojects {
afterEvaluate {
// Global KAPT flags applied to all projects.
extensions.findByType<KaptExtension>()?.apply {
// Do not replace unknown types (including types for the generated classes) by NonExistentClass.
correctErrorTypes = true
// Provide links to locations in the original Kotlin code rather than generated Java stubs
// as it reports errors encountered during annotation processing.
@weirdoonthebus
weirdoonthebus / index.html
Created December 10, 2016 21:09
Right Now
<!--
photo background by marcelo quinan via unsplash: https://unsplash.com/marceloquinan -->
<header id="header"><h1>Right Now</h1><form><input id="search" type="text"placeholder="Search or say 'Ok Google'"></form></header>
<article>
<section id="section"></section>
<section></section>
<section></section>
<section></section>
<section></section>
</article>
@weirdoonthebus
weirdoonthebus / adventure-time-origami.markdown
Created December 10, 2016 21:06
Adventure Time Origami
@MakotoIshikawa
MakotoIshikawa / 01_SharePointWebPartFolding.html
Last active May 1, 2024 20:34
SharePoint の Web パーツを開閉する
<style>
.ms-webpart-chrome h2 {
position: relative;
margin: 0 0 4px;
padding: 0.8em 0 0.8em 1.5em;
border: 2px solid #993366;
font-size: 1.143em;
font-weight: bold;
background-color: #FFEEFF;
}
@harunpehlivan
harunpehlivan / index.html
Created December 7, 2021 21:35
User Profile
<!-- main -->
<section class="main">
<div class="points"></div>
<div class="shield-left"></div>
<div class="shield-right"></div>
<!-- card -->
<div class="card">
<div class="detail">
<div class="detail-images"><img src="https://assets.codepen.io/76692/internal/avatars/users/default.png?fit=crop&format=auto&height=80&version=1523479757&width=80" alt="Picture"></div>
<h3>HARUN PEHLİVAN </h3>
@jtubert
jtubert / popup.js
Created January 19, 2016 04:14
Chrome extension for saving top visited sites in Google spreadsheet
var settings;
var email;
var id;
loadSavedSettings();
function loadSavedSettings() {
// buttonSettings
if (!window.localStorage.buttonSettings) {
@Marcc24k
Marcc24k / Responsive Animated Profile Card.markdown
Created March 11, 2016 00:54
Responsive Animated Profile Card

Responsive Animated Profile Card

This was a great project for me to practice new skills. I learned a lot on the way and I hope to a few more versions. Thanks for checking it out!

A Pen by Marc Cook on CodePen.

License.

@iwanPlays
iwanPlays / A Place, Forbidden Freesound Credits
Created May 23, 2020 12:24
A Place, Forbidden Freesound Credits
Additional Assets Used:
Footstep sounds, felix.blume, CC0 (modified)
https://freesound.org/people/felix.blume/sounds/413839/
Filing cabinet drawer sound, LloydEvans09, CC0 (modified)
https://freesound.org/people/LloydEvans09/sounds/185842/
Lamp on/off sound, Goup_1, Attribution
https://freesound.org/people/Goup_1/sounds/171148/
@obfusk
obfusk / break.py
Last active May 1, 2024 20:32
python "breakpoint" (more or less equivalent to ruby's binding.pry); for a proper debugger, use https://docs.python.org/3/library/pdb.html
import code; code.interact(local=dict(globals(), **locals()))