These instructions are currently for Fedora 30. I'll update them over the releases if anything changes.
Press the Win/Super key, type software and press Enter.
| # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | |
| # dependencies | |
| /node_modules | |
| /.pnp | |
| .pnp.js | |
| # testing | |
| /coverage |
| #' Render Table of Contents | |
| #' | |
| #' A simple function to extract headers from an RMarkdown or Markdown document | |
| #' and build a table of contents. Returns a markdown list with links to the | |
| #' headers using | |
| #' [pandoc header identifiers](http://pandoc.org/MANUAL.html#header-identifiers). | |
| #' | |
| #' WARNING: This function only works with hash-tag headers. | |
| #' | |
| #' Because this function returns only the markdown list, the header for the |
| // https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=09a4f12d1c599376037d00f054ac359f | |
| extern crate rand; | |
| use rand::Rng; | |
| use std::str; | |
| // use std::string; // .to_string() is already impl on u8 | |
| fn main() { | |
| let mut rng = rand::thread_rng(); | |
| let robot = rng.gen::<u8>().to_string(); | |
| let greeting: &str = &(format!("Hello, {}!", robot)); |
| /* | |
| ******************************************************************************************************************************** | |
| Credits: @Jeremy | |
| Posted: http://stackoverflow.com/questions/7048839/sql-server-query-to-find-all-permissions-access-for-all-users-in-a-database | |
| ******************************************************************************************************************************** | |
| Security Audit Report | |
| 1) List all access provisioned to a sql user or windows user/group directly | |
| 2) List all access provisioned to a sql user or windows user/group through a database or application role | |
| 3) List all access provisioned to the public role |
| license: mit | |
| height: 720 | |
| border: no |
| license: mit | |
| height: 720 | |
| border: no |
| license: mit | |
| height: 720 | |
| border: no |
| license: mit | |
| height: 720 | |
| border: no |
| #!/bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: <NAME> | |
| # Required-Start: $local_fs $network $named $time $syslog | |
| # Required-Stop: $local_fs $network $named $time $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Description: <DESCRIPTION> | |
| ### END INIT INFO |