- Set
browser.download.animateNotifications
toFalse
- Set
security.dialog_enable_delay
to0
- Set
network.prefetch-next
toFalse
(Only on slow internet connections) - Set
browser.newtabpage.activity-stream.feeds.telemetry
tofalse
- Set
browser.newtabpage.activity-stream.telemetry
tofalse
- Set
browser.ping-centre.telemetry
tofalse
- Set
toolkit.telemetry.archive.enabled
tofalse
- Set
toolkit.telemetry.bhrPing.enabled
tofalse
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
@RestController | |
class HelloWorld { | |
@RequestMapping("/") | |
public String hello(){ | |
return "Hello World!"; | |
} | |
} |
ssh-keygen -t rsa -b 4096 -C "[email protected]"
- Windows PowerShell was built upon .NET and only worked on Windows
- PowerShell Core is open sourced and built on .NET Core 2.x, work on Windows, Linux, macOS, ARM
APT (Ubuntu's Advanced Packaging Tool)
# installing a package
sudo apt install zsh
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
{"lastUpload":"2020-11-10T23:43:02.343Z","extensionVersion":"v3.4.3"} |
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 sh | |
sudo apt-get install -y \ | |
git \ | |
g++ \ | |
libgtk-3-dev \ | |
gtk-doc-tools \ | |
gnutls-bin \ | |
valac \ | |
intltool \ |
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
import java.nio.ByteBuffer; | |
import java.nio.ByteOrder; | |
import java.util.UUID; | |
/** | |
* This class provides helper methods to work with UUID, for instance, converting UUID into 16-byte | |
* array for database column BINARY(16) and vice versa. | |
*/ | |
public final class UuidUtil | |
{ |
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/bash | |
#title :wildfly-install.sh | |
#description :The script to install Wildfly 10.x | |
#more :http://sukharevd.net/wildfly-8-installation.html | |
#author :Dmitriy Sukharev | |
#date :2016-06-18T02:45-0700 | |
#usage :/bin/bash wildfly-install.sh | |
#tested-version1 :10.0.0.CR3 | |
#tested-distros1 :Ubuntu 15.10; Debian 7,8; CentOS 7; Fedora 22 | |
#tested-version2 :10.0.0.Final |
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
FROM public.ecr.aws/lambda/nodejs:14 | |
## | |
# Install necessary package for building Node.js Canvas | |
## | |
RUN yum -y update \ | |
&& yum -y groupinstall "Development Tools" \ | |
&& yum install -y nodejs gcc-c++ cairo-devel libjpeg-turbo-devel pango-devel giflib-devel zlib-devel librsvg2-devel | |
COPY *.js package* ./ |