For example, you want to set 40% alpha transparence to #000000
(black color), you need to add 66
like this #66000000
.
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 | |
# Function to output usage instructions | |
function usage { | |
echo "Usage: $(basename $0) <options>" >&2 | |
echo | |
echo "Gets the current USD value" >&2 | |
echo | |
echo "OPTIONS:" >&2 | |
echo " --blue | -b : Dólar Blue" >&2 |
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
const { NerManager } = require("node-nlp"); | |
const manager = new NerManager({ threshold: 0.7 }); | |
manager.addNamedEntityText("brand", "bosch", ["es"], ["bosch", "Robert Bosch"]); | |
manager.addNamedEntityText("brand", "hoover", ["es"], ["hoover"]); | |
manager.addNamedEntityText("brand", "philips", ["es"], ["philips"]); | |
manager.addNamedEntityText("color", "negro", ["es"], ["Negro", "negrito"]); | |
manager.addNamedEntityText("color", "naranja", ["es"], ["naranja"]); |
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.escribehost.client.admin.application.sandbox.widgets; | |
import com.google.gwt.core.client.JavaScriptObject; | |
import com.googlecode.gwt.charts.client.ColumnFunction; | |
import com.googlecode.gwt.charts.client.ColumnType; | |
import com.googlecode.gwt.charts.client.Properties; | |
import com.googlecode.gwt.charts.client.RoleType; | |
/** | |
* Represents a calculated column. A calculated column creates a value on the fly for each row and adds it to the view. |
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 python | |
# -*- coding: utf-8 -*- | |
# Copyright 2012 Matt Martz | |
# All Rights Reserved. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); you may | |
# not use this file except in compliance with the License. You may obtain | |
# a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 |
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 python | |
# -*- coding: utf-8 -*- | |
# Copyright 2012 Matt Martz | |
# All Rights Reserved. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); you may | |
# not use this file except in compliance with the License. You may obtain | |
# a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 |
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
# Just in case | |
sudo apt-get install -y git | |
# Grabs ssh & gpg keys | |
cd $HOME | |
BACKUP_DIR=/data/ssd/backups/manual/secrets | |
scp -r -P 62022 [email protected]:"${BACKUP_DIR}/.gnupg ${BACKUP_DIR}/.ssh ${BACKUP_DIR}/.cert" . | |
# Clones repo | |
WORKSPACE=$HOME/Documents/Work/Workspace |
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
[oracle@a6573e40d8b8 dbfiles]$ cat /home/oracle/setup/log/configDB.log | |
Sat Apr 25 00:35:35 UTC 2020 | |
Start Docker DB configuration | |
Call configDBora.sh to configure database | |
Sat Apr 25 00:35:35 UTC 2020 | |
Configure DB as oracle user | |
Setup Database directories ... | |
SQL*Plus: Release 12.2.0.1.0 Production on Sat Apr 25 00:35:35 2020 |
NewerOlder