I no longer mantain this list. There are lots of other very comprehensive JavaScript link lists out there. Please see those, instead (Google "awesome JavaScript" for a start).
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
| library("shiny") | |
| x <- runApp(shinyApp( | |
| fluidPage( | |
| "Password:", | |
| tags$input(id = "password", type = "password"), | |
| actionButton("done", "Done") | |
| ), | |
| function(input, output) { | |
| observe({ |
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
| # | |
| # File: Get-HelpByMarkdown.ps1 | |
| # | |
| # Author: Akira Sugiura ([email protected]) | |
| # | |
| # | |
| # Copyright (c) 2014 Akira Sugiura | |
| # | |
| # This software is MIT License. | |
| # |
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
| library(rvest) | |
| # example of using phantomjs for scraping sites that use a twisty maze | |
| # of javascript to render HTML tables or other tags | |
| # grab phantomjs binaries from here: http://phantomjs.org/ | |
| # and stick it somehere PATH will find it | |
| # this example scrapes the user table from: |
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 perl | |
| # wikilink2link.pl - Convert GitHub wikilinks to Markdown links. | |
| # | |
| # Preserves wikilink-like substrings in delimited code and fenced code | |
| # blocks. | |
| # | |
| # Now lives at: <https://gist.github.com/daf711474eb53318b722> | |
| # | |
| # USAGE |
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
| R_COMPLETION=FALSE | |
| R_LIBS=~/R | |
| TMPDIR=/tmp | |
| _R_CHECK_FORCE_SUGGESTS_=false | |
| GITHUB_PAT=[redacted] | |
| DO_PAT=[redacted] |
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
| function Set-WinStoreSetting { | |
| param ( | |
| [Parameter(Mandatory=$true, Position=0)][string]$PackageName, | |
| [Parameter(Mandatory=$true, Position=1)][string]$SettingName, | |
| [Parameter(Mandatory=$true, Position=2)][string]$SettingValue | |
| ) | |
| $settingsFile = [IO.Path]::Combine($env:LOCALAPPDATA, 'Packages', $PackageName, 'Settings\settings.dat') | |
| # temporary paths |
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
| ' OMNI | |
| ' Author: Andre Terra | |
| ' Name: CycleAccentBackgrounds | |
| ' URL: https://gist.github.com/airstrike/11f58afb9b44c2c81291 | |
| ' Version: 1.2.1 | |
| Sub CycleAccentBackground() | |
| Dim NextColor As Integer | |
| Dim NextColorRGB As Long | |
| Dim ThemeColor As Long |
SchemaSpy is a neat tool to produce visual diagrams for most relational databases.
Here's how to use it to generate schema relationship diagrams for PostgreSQL databases:
-
Download the jar file from here (the current version is v6.1.0)
-
Get the PostgreSQL JDBC driver (unless your installed version of java is really old, use the latest JDBC4 jar file)
-
Run the command against an existing database. For most databases, the schema (-s option) we are interested in is the public one:
When working with API clients there are several distinct areas of concern. Each of these happen in sequence and are used with the goal of receiving a Domain Model at the end.