You see:
####Site wide shortcuts
s
Focus search barg
n
Go to Notificationsg
d
Go to Dashboard?
Bring up this help dialogj
Move selection downk
Move selection upx
Toggle selection
#!/bin/sh | |
# from https://gradle.org/install/ | |
# | |
# Upgrade with the Gradle Wrapper | |
# If your existing Gradle-based build uses the Gradle Wrapper, you can easily upgrade by | |
# running the wrapper task, specifying the desired Gradle version: | |
## update gradlew | |
./gradlew wrapper --gradle-version=4.6 |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Example Vue + DataTables</title> | |
<!-- I happened to be using the bootstrap styling w/ DataTables. You may not need this. --> | |
<link rel="stylesheet" href="/path/to/datatables/DataTables-1.10.16/css/dataTables.bootstrap4.min.css"> | |
</head> | |
<body> | |
<div id="example-page"> | |
package org.json; | |
/* | |
Copyright (c) 2002 JSON.org | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is |
You see:
####Site wide shortcuts
s
Focus search barg
n
Go to Notificationsg
d
Go to Dashboard?
Bring up this help dialogj
Move selection downk
Move selection upx
Toggle selectionInstalling AccessBooks Realtime (http://synergration.com/software/accessbooks-realtime/) fails for me. | |
I get an error saying IsLicense30.dll failed to register. HRESULT -2147024770 |
This general centering issue was filed here: https://bugs.chromium.org/p/chromium/issues/detail?id=598805
For dragging 1px width change: https://bugs.chromium.org/p/chromium/issues/detail?id=598818 See the section below, "Resizing, one pixel at a time".
For the missing resize bars: https://bugs.chromium.org/p/chromium/issues/detail?id=598822 See the section below, "Resize bar is not always available".
package util; | |
/* | |
* The MIT License (MIT) | |
* | |
* Copyright (c) 2016 Broc Seib | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights |
package example.rs; | |
import org.codehaus.jackson.map.annotate.JsonSerialize; | |
@JsonSerialize(as=Description.class) | |
public interface Description { | |
public String getColor(); | |
public String getName(); |
/** | |
* This code snippet came from an answer I posted on stackoverflow and was derived from work presented | |
* among other answers and comments. The post is here: | |
* http://stackoverflow.com/questions/2820249/base64-encoding-and-decoding-in-client-side-javascript/15016605#15016605 | |
* | |
* This is not very readable code, and would be better served by being written out such that it is understandable, and | |
* letting a minifier tool do the minification. However, it does work and is easy to copy and paste where needed rather | |
* than creating a larger library dependency when that is not desirable. So take it at face value. | |
* | |
* I posted it here when someone requested to use it and asked about a license. You are free to use this code however |
#!/usr/local/bin/perl -w | |
# | |
# $Id: system_backup,v 1.13 2006/09/15 02:48:23 bseib Exp $ | |
## | |
# 'system_backup' | |
# | |
# Description: Run the unix 'dump' command on various filesystems, using a different | |
# dump level depending on the day of the month. Day 1 always gets a full | |
# level zero dump. A "towers of hanoi"-ish pattern is used for dump levels. | |
# |