- loosen access door screws (x3)
- hard drive screws (x5)
- remove base screws (x5)
- under battery screws (x4)
- optical drive screw (x1)
- screws at side of under the optical drive (x2)
- Palm rest screws (x6)
- motherboard screws (x6)
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
{# | |
/** | |
* @file | |
* Returns HTML for a breadcrumb trail. | |
* | |
* @param $variables | |
* An associative array containing: | |
* - breadcrumb: An array containing the breadcrumb links. | |
* | |
* @ingroup themeable |
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
docker rmi $(docker images -q -f dangling=true) |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="Grid Alphabets"> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular.min.js"></script> | |
<style id="jsbin-css"> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="SVG Alphabets"> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>SVG Letters</title> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular.min.js"></script> | |
<style id="jsbin-css"> |
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
#define GET_BIT(X,N) ( ( (X) >> (N) ) & 1 ) | |
#define SET_BIT(X,N) ( (X) | (1 << (N) ) ) | |
#define RST_BIT(X,N) ( (X) & ~(1 << (N) ) ) |
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
package com.sam016.vsflatomation.service.ble; | |
import java.util.HashMap; | |
import java.util.UUID; | |
public class AllGattCharacteristics { | |
private static HashMap<String, String> attributes = new HashMap(); | |
static { | |
attributes.put("00002a00-0000-1000-8000-00805f9b34fb", "Device Name"); |
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
/* | |
Streaming.h - Arduino library for supporting the << streaming operator | |
Copyright (c) 2010-2012 Mikal Hart. All rights reserved. | |
This library is free software; you can redistribute it and/or | |
modify it under the terms of the GNU Lesser General Public | |
License as published by the Free Software Foundation; either | |
version 2.1 of the License, or (at your option) any later version. | |
This library is distributed in the hope that it will be useful, |
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 | |
# author: | |
# https://stackoverflow.com/a/28709668/1957036 | |
cecho() { | |
local code="\033[" | |
case "$1" in | |
black | bk) color="${code}0;30m";; | |
red | r) color="${code}1;31m";; |
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 bash | |
# | |
# One line prompt showing the following configurable information | |
# for git: | |
# time (virtual_env) username@hostname pwd git_char|git_branch git_dirty_status|→ | |
# | |
# The → arrow shows the exit status of the last command: | |
# - bold green: 0 exit status | |
# - bold red: non-zero exit status | |
# |