Windows 10 users: you won't need this guide. NVidia has made signed drivers available with the modifications outlined here, although it's been said you'll have to get them from third-party vendors - distributing them like they do with notebook GPU drivers. I use drivers bundled with the Razer Core enclosure.
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
| var npm = require("npm"); | |
| var fs = require("fs-extra"); | |
| var chokidar = require("chokidar"); | |
| var packagePaths = [ | |
| "../mobile-app/node_modules/shared-package/lib", | |
| "../web-app/node_modules/shared-package/lib", | |
| ]; | |
| var noop = () => {}; |
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
| [ 0.000000] Linux version 4.6.0-rc3 (kas@kshutemo-desk) (gcc version 5.3.0 (Gentoo 5.3.0 p1.0, pie-0.6.5) ) #37 SMP PREEMPT Mon Apr 11 18:18:13 MSK 2016 | |
| [ 0.000000] Command line: BOOT_IMAGE=../vmlinuz dolvm rw root=UUID=dc179bdb-77c0-4166-8d43-f828994c99a0 rootdelay=1 intel_mmu=igfx_off iommu=pt drm.debug=0xe initrd=../initramfs | |
| [ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 | |
| [ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' | |
| [ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' | |
| [ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' | |
| [ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. | |
| [ 0.000000] x86/fpu: Using 'eager' FPU context switches. | |
| [ 0.000000] e820: BIOS-provided physical RAM map: | |
| [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable |
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 {TranslateLoader} from "ng2-translate/ng2-translate"; | |
| import {Observable} from "rxjs/Observable"; | |
| import fs = require('fs'); | |
| export class TranslateUniversalLoader implements TranslateLoader { | |
| constructor(private prefix: string = 'i18n', private suffix: string = '.json') {} | |
| /** | |
| * Gets the translations from the server | |
| * @param lang |
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
| /** | |
| * Lodash mixins for combinatorics | |
| * by: wassname & visangela | |
| * url: https://gist.github.com/wassname/a882ac3981c8e18d2556/edit | |
| * lodash contrib issue: https://github.com/node4good/lodash-contrib/issues/47 | |
| * lic: same as lodash | |
| * Inspired by python itertools: https://docs.python.org/2.7/library/itertools.html | |
| * | |
| * Usage: | |
| * permutations([0,1,2],2) // [[0,1],[0,2],[1,0],[1,2],[2,0],[2,1]] |
This article has been updated and is available here.
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
| print("UPDATE AUG 2023: this script is beyond old and broken") | |
| print("You may find interesting and more up to date resources in the comments of the gist") | |
| exit() | |
| from slacker import Slacker | |
| import json | |
| import argparse | |
| import os | |
| # This script finds all channels, private channels and direct messages |
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
| onPrepare: function() { | |
| var disableNgAnimate = function() { | |
| angular | |
| .module('disableNgAnimate', []) | |
| .run(['$animate', function($animate) { | |
| $animate.enabled(false); | |
| }]); | |
| }; | |
| var disableCssAnimate = function() { |