Skip to content

Instantly share code, notes, and snippets.

@eins78
eins78 / DisableAdobeUpdates.command
Created September 28, 2010 19:15
Disable updates from Adobe on Mac OS X
echo "................................................................................" &&
echo "Hi! This will update 2 .plist files to disable Adobe Updates as recommended by" &&
echo "Adobe on http://kb2.adobe.com/cps/408/kb408711.html" &&
echo "and http://kb2.adobe.com/cps/404/kb404813.html." &&
echo "Therefore you have to enter your password here. Open this file in TextEdit to see for yourself if you don't trust me." &&
echo "................................................................................" &&
sudo defaults write /Library/Preferences/com.adobe.AdobeUpdater.Admin 'Disable.Update' -bool 'YES' &&
sudo defaults write /Library/Preferences/com.adobe.CSXSPreferences 'UpdatesAllowed' -string '0' &&
echo "Settings updated. Reboot and have fun."
echo "................................................................................"
http://www.test.ewz.quatico.com/de/private/elektromobilitaet-privatkunden/zuhause-laden/meine-ladestation.html
#!/bin/bash
set -exu
apt-get purge -y docker docker-engine docker.io containerd runc
# https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository
apt-get update
apt-get install -y \
ca-certificates \
curl \
@eins78
eins78 / tutorial.md
Created August 4, 2018 14:21 — forked from swalkinshaw/tutorial.md
Designing a GraphQL API

Tutorial: Designing a GraphQL API

This tutorial was created by Shopify for internal purposes. We've created a public version of it since we think it's useful to anyone creating a GraphQL API.

It's based on lessons learned from creating and evolving production schemas at Shopify over almost 3 years. The tutorial has evolved and will continue to change in the future so nothing is set in stone.

@eins78
eins78 / Screen Shot 2014-08-04 at 11.56.25.png
Last active May 25, 2018 04:28
testing Input typeface with Atom editor
Screen Shot 2014-08-04 at 11.56.25.png
@eins78
eins78 / about-doctor-stats-plugin.md
Last active February 26, 2017 14:46
doctor stats plugin. install it on <professor.amiacyb.org> then click the "נקודות" box.

doctor stats plugin.

install it on http://professor.amiacyb.org then click the "נקודות" box.

install with bookmarklet here

or paste the JS code in the browser console, use a "userscripts" or "greasmonkey" browser extension, etc.

if installation was successful, the "נקודות" box will show a "?" pointer icon on mouse hover.

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello React!</title>
<script src="https://unpkg.com/react@15.3.1/dist/react.min.js"></script>
<script src="https://unpkg.com/react-dom@15.3.1/dist/react-dom.min.js"></script>
</head>
<body>
<div id="root"></div>
@eins78
eins78 / gist:8463493
Last active January 3, 2016 12:29
Re: The Next Phase of Node.js
From: "Max F. Albrecht" <1@178.is>
Subject: Re: [npm] Re: The Next Phase of Node.js
Date: Thu, 16 Jan 2014 22:07:09 +0100
To: "npm-@googlegroups.com" <npm-@googlegroups.com>
Am 15.01.2014 um 22:49 schrieb Isaac Schlueter <i@izs.me>:
> if you're happy with the current status quo, you can just take it easy and maybe eventually get a job where you use npm for > work stuff also :)
Hey, that's me! ;)
@eins78
eins78 / .gitignore
Last active December 20, 2015 11:39
flatiron-nconf-wtf
/node_modules/
@eins78
eins78 / index.html
Last active December 20, 2015 08:59
boostrap scrollspy test
// from <https://github.com/twbs/bootstrap-examples/blob/2998929b39eb3a4d587c6237d98095f9f5b0df2f/starter-template/starter-template.css>
body {
padding-top: 50px;
}
.starter-template {
padding: 40px 15px;
text-align: center;
}