- 2015-02-20: OX 10.10.5 on Apple hardware can successfully build
- NOTE: Credit and thanks to Amit Singh
- Reference:
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
| { | |
| "requests":[ | |
| { | |
| "id": "123458", | |
| "name": "Josette", | |
| "surname": "Charrier", | |
| "home_city": "München", | |
| "home_country": "Deutschland", | |
| "handicap": 10 | |
| }, |
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
| 'use strict'; | |
| import React, { | |
| AppRegistry, | |
| Component, | |
| StyleSheet, | |
| Text, | |
| View, | |
| TouchableOpacity, | |
| LayoutAnimation, | |
| } from 'react-native'; |
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
| ## Builder for NixOS configurations defined at the end of the file to be built into KVM VM's | |
| { system ? builtins.currentSystem }: | |
| let | |
| loadcfg = cfgfile: { config, pkgs, ...}: { | |
| imports = [ <nixos/modules/virtualisation/qemu-vm.nix> cfgfile ]; | |
| config = { | |
| networking.extraHosts = '' | |
| 176.32.0.254 template | |
| ''; |
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
| ## enable multilib see https://wiki.archlinux.org/index.php/Multilib | |
| sudo vim /etc/pacman.conf | |
| ## this is not a comprehensive list as installed on an existing system, look for errors in the terminal after running the Eve Launcher exe | |
| sudo pacman -S wine wine_gecko winetricks q4wine wine-mono lib32-gnutls samba lib32-mpg123 lib32-sdl lib32-libldap lib32-libpulse | |
| mkdir ~/Wine | |
| cd ~/Wine | |
| WINEARCH=win32 WINEPREFIX=~/Wine/win32 winecfg |
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
| #!/usr/bin/env bash | |
| # TODO: Look at nixpkgs/pkgs/build-support/setup-hooks/auto-patchelf.sh | |
| # https://ms-vsliveshare.gallery.vsassets.io/_apis/public/gallery/publisher/MS-vsliveshare/extension/vsliveshare/0.3.423/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage | |
| set -eu | |
| TOOLS="patchelf xsel" | |
| DEPS="utillinux.out openssl.out icu zlib curl.out lttng-ust libsecret libkrb5" |
I hereby claim:
- I am dejanr on github.
- I am dejanr (https://keybase.io/dejanr) on keybase.
- I have a public key ASD_ZnmyADuGJ8VRhAbUr9glgd3exzO2YFd0hZISMLxnHQo
To claim this, I am signing this object:
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
| 'use strict'; | |
| require('webpack'); | |
| const CopyAssets = require('copy-webpack-plugin'); | |
| const fs = require('fs'); | |
| const MiniCssExtractPlugin = require('mini-css-extract-plugin'); | |
| const os = require('os'); | |
| const path = require('path'); | |
| const runMode = require('run-mode'); |
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
| #!/usr/bin/env bash | |
| setup() { | |
| git stash push | |
| git checkout gh-pages | |
| } | |
| cleanup() { | |
| git checkout master | |
| git stash pop |
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
| #!/bin/sh | |
| # FIRST STOP THE zfs-zed SERVICE | |
| systemctl stop zfs-zed | |
| # FORCE UNLOAD ZFS KERNEL MODULES | |
| lsmod | grep zfs | cut -d' ' -f1 | xargs rmmod -f | |
| # NOW ADD THE FOLLOWING TO /etc/nixos/configuration.nix | |
| # |