Skip to content

Instantly share code, notes, and snippets.

@A973C
A973C / custom.css
Last active December 18, 2015 06:09 — forked from gregrickaby/custom.css
Custom CSS style for TT-RSS
/* Reset
------------------------------------------------------------ */
body#ttrssMain,
body#ttrssPrefs,
body#ttrssLogin,
body {
color: #000;
font-family: "Arial", sans-serif;
font-size: 100%; /* Set to default browser size, 16px */
line-height: 1.5;
<?php
define('OAUTH2_CLIENT_ID', '');
define('OAUTH2_CLIENT_SECRET', '');
$authorizeURL = 'https://github.com/login/oauth/authorize';
$tokenURL = 'https://github.com/login/oauth/access_token';
$apiURLBase = 'https://api.github.com/';
session_start();
#!/opt/local/bin/php
<?php
/*
1) replace the shebang (first line) with the path to your php binary
(probably something like /usr/bin/php)
2) move the file to /usr/local/bin/datauri.php
(this should be in your PATH)
3) chmod ugo+rx /usr/local/bin/datauri.php
(make the script executable for everyone)
@A973C
A973C / ajax-form.js
Created September 2, 2013 15:09 — forked from havvg/ajax-form.js
jQuery(function($) {
$('form[data-async]').live('submit', function(event) {
var $form = $(this);
var $target = $($form.attr('data-target'));
$.ajax({
type: $form.attr('method'),
url: $form.attr('action'),
data: $form.serialize(),
@A973C
A973C / remove_crw.cmd
Last active September 1, 2015 04:43 — forked from xvitaly/remove_crw.cmd
Remove telemetry updates for Windows 7 and 8.1
echo Uninstalling KB3075249 (telemetry for Win7/8.1)
start /w wusa.exe /uninstall /kb:3075249 /quiet /norestart
echo Uninstalling KB3080149 (telemetry for Win7/8.1)
start /w wusa.exe /uninstall /kb:3080149 /quiet /norestart
echo Uninstalling KB3021917 (telemetry for Win7)
start /w wusa.exe /uninstall /kb:3021917 /quiet /norestart
echo Uninstalling KB3022345 (telemetry)
start /w wusa.exe /uninstall /kb:3022345 /quiet /norestart
echo Uninstalling KB3068708 (telemetry)
start /w wusa.exe /uninstall /kb:3068708 /quiet /norestart
@A973C
A973C / CSS Glitched Text.markdown
Last active September 10, 2015 04:46 — forked from CodeMyUI/CSS Glitched Text.markdown
CSS Glitched Text
@A973C
A973C / YouTube embedding.markdown
Last active September 10, 2015 04:48 — forked from CodeMyUI/YouTube embedding.markdown
YouTube embedding
@A973C
A973C / Pure CSS content filter.markdown
Last active September 10, 2015 04:49 — forked from CodeMyUI/Pure CSS content filter.markdown
Pure CSS content filter

Pure CSS content filter

I saw some JS filter setups, so naturally I had to see if I could make a CSS one. Pretty simple.

A Pen by Sam Gordon on CodePen.

License.

@A973C
A973C / Link Style Tests.markdown
Last active September 10, 2015 04:49 — forked from CodeMyUI/Link Style Tests.markdown
Link Style Tests

#webdev series - Colorful text animation #updated

Colorful text animation

Fluid and configurable colorful text animation module made with scss. Use it wherever you want but please give credit ;)

In use http://hendrysadrak.com

A Pen by Hendry Sadrak on CodePen.