This file contains 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
<monitors version="1"> | |
<configuration> | |
<clone>no</clone> | |
<output name="eDP-1"> | |
<vendor>LGD</vendor> | |
<product>0x0541</product> | |
<serial>0x00000000</serial> | |
<width>1920</width> | |
<height>1080</height> | |
<rate>60</rate> |
This file contains 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
-- MySQL dump 10.15 Distrib 10.0.20-MariaDB, for osx10.10 (x86_64) | |
-- | |
-- Host: localhost Database: civicrmdev_idg3g | |
-- ------------------------------------------------------ | |
-- Server version 10.0.20-MariaDB | |
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | |
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | |
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | |
/*!40101 SET NAMES utf8 */; |
This file contains 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
function submit() { | |
var selected = $(".modal-body input:checked").val(); | |
for (i = 0; i < questions.length; i++) { | |
if ( selected === questions[i].correctAnswer ) { | |
console.log(selected + " was selected"); | |
console.log("You selected the correct answer:" + questions[i].correctAnswer); | |
var scs = i; | |
} | |
if ( scs === 0 || scs === 5 || scs === 10 || scs === 15 || scs === 20 ) { | |
score1 = score1 + 10; |
This file contains 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
#!/usr/bin/env python | |
#-*- coding: utf-8 -*- | |
# RescueTime Data Exporter | |
# Dan Nixon | |
# 18/09/2011 | |
import urllib | |
apiKey = "API_KEY" |
This file contains 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
#!/bin/bash | |
## Thanks to https://gist.github.com/xurizaemon for sorting this version out for me! :) | |
DEB_OR_UBU=$(lsb_release -ds | cut -d " " -f 1) | |
INSTALLED_VERSION=$(dpkg -s libc6 | grep Version | awk '{ print $2 }') | |
FIXED_VERSION="" | |
if [ "$DEB_OR_UBU" == "Ubuntu" ]; then | |
UBUNTU_RELEASE=$(lsb_release -sr | cut -d '.' -f 1) | |
case $UBUNTU_RELEASE in |
This file contains 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
#!/bin/bash | |
# The original @ https://gist.github.com/proffalken/08e9649ee7083fc3c5bd has been updated to | |
# include these changes and adds support for Ubuntu. Use that version again now. | |
INSTALLED_VERSION=$(dpkg -s libc6 | grep Version | awk '{ print $2 }') | |
DEBIAN_RELEASE=$(lsb_release -sr | cut -c 1) | |
case $DEBIAN_RELEASE in | |
6) |
This file contains 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
#!/bin/bash | |
INSTALLED_VERSION=$(dpkg -s libc6 | grep Version | awk '{ print $2 }') | |
DEBIAN_RELEASE=$(lsb_release -sr | cut -c 1) | |
case $DEBIAN_RELEASE in | |
6) | |
FIXED_VERSION=2.11.3-4+deb6u4 ;; | |
7) | |
FIXED_VERSION=2.13-38+deb7u7 ;; |