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
#search h3.r a[href*="www.w3schools.com"] { | |
pointer-events: none; | |
cursor: default; | |
} | |
#search h3.r a[href*="www.w3schools.com"]::after { | |
content: ""; | |
position: absolute; | |
top: 0; | |
left: 0; |
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
// https://xkcd.com/936/ | |
selbstgefälligste-darlehen-philosophieren-sprechfenster | |
verwitwete-pseudolegierung-vertrödele-fernfahrer | |
neuronale-videos-piepen-wanderführer | |
weihnachtliche-printen-erwachten-bambus | |
pejorativstes-palais-erklärte-übermacht | |
dekorativster-lutscher-schwante-halt | |
tugendsamste-ablichtung-verplant-truppe | |
vollmundigerer-boß-lindere-altersgrenzen |
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 UIKit | |
// Message Type | |
struct Message<Target> { | |
let action: (Target) -> () | |
init(_ action: (Target) -> ()) { | |
self.action = action | |
} |
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 $ from "./query" | |
class AppManager { | |
constructor(viewControllerClasses) { | |
this.viewControllerClasses = viewControllerClasses | |
this.assemble() | |
} | |
// Find html nodes for the registered view controller classes. |
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
tmpfile=$(mktemp) | |
prjfile=project.pbxproj | |
plutil -convert xml1 ${prjfile} -o - \ | |
| plutil -replace "objects.071AC71E45E94004142F8190.includeInIndex" -string 2 -o - - \ | |
| pl \ | |
> ${tmpfile} | |
cat ${tmpfile} > ${prjfile} | |
rm -f ${tmpfile} |
OlderNewer