Skip to content
  • Home
  • Search
  • Tools
  • About
  • Terms of Service Agreement
  • Log In
  • Guest

INFO: TIPS

Posted on March 23, 2018March 19, 2020 By Andre Dias
support, techs

Target This page is intended to point to interesting techs to help on daily tasks. You may suggest using “comment”.   BROWSER BrowserOpener:  Open links with different browsers according to rules CODING Code.xyz The online code editor for building APIs in a single click. DEMO CODOTA – JAVA AUTOCOMPLETION PLUS AI www.codata.com DATABASE panoply – on-line … Read More “INFO: TIPS” »

CEP: BASE DE DADOS DE CEP EM MYSQL, POSTGRESQL E DICAS ADICIONAIS

Posted on February 12, 2018March 19, 2020 By Andre Dias
database

NOTE: English is the usual language here on the purpose to increase sharing possibilities once it is an international language, however the information here is just about some specific brazilean stuff – the CEP, our USPC, so it was written in the native language. Certa vez andei precisando criar massa de dados em vários bancos … Read More “CEP: BASE DE DADOS DE CEP EM MYSQL, POSTGRESQL E DICAS ADICIONAIS” »

PHANTOMJS: ADDING TIMEOUT FOR WAITING RESPONSES

Posted on November 5, 2017March 19, 2020 By Leonardo Regis
javascript

/** * Wait until the test condition is true or a timeout occurs. Useful for waiting * on a server response or for a ui change (fadeIn, etc.) to occur. * * @param testFx javascript condition that evaluates to a boolean, * it can be passed in as a string (e.g.: “1 == 1” or … Read More “PHANTOMJS: ADDING TIMEOUT FOR WAITING RESPONSES” »

NODEJS: TYPSCRIPT – FAST CONFIGURATION TO USE

Posted on November 5, 2017March 19, 2020 By Leonardo Regis
javascript

run: npm init npm i @types/node tsc –init into tsconfig.json, uncoment the line below: “moduleResolution”: “node” /* Specify module resolution strategy: ‘node’ (Node.js) or ‘classic’ (TypeScript pre-1.6). */

ANGULARJS: TYPESCRIPT – USING DIRECTIVE FOR FOCUS

Posted on October 26, 2017March 19, 2020 By Leonardo Regis
javascript

  import angular = require(‘angular’); /* @ngInject */ export class SetFocus implements angular.IDirective { private $log: angular.ILogService; publicstaticFactory(): angular.IDirectiveFactory { return () = >newFocus(); } publiclink:angular.IDirectiveLinkFn = (scopeS: angular.IScope, elementS: JQuery, attrsS: angular.IAttributes) => { if (!this.$log) { this.$log=angular.injector([‘ng’]).get(‘$log’); } if (attrsS.focus===’true’) { elementS[0].focus() ; } scopeS.$on(attrsS.focus, (e) => { elementS[0].focus(); }); } }; // … Read More “ANGULARJS: TYPESCRIPT – USING DIRECTIVE FOR FOCUS” »

AWS: LAMBDA: SNS PUSHING

Posted on October 12, 2017March 19, 2020 By Leonardo Regis
javascript

const aws = require(‘aws-sdk’); const sns = new aws.SNS(); sns.publish( { Message: message, TopicArn: ‘TOPIC_ARN’ }, function(err, data) { if (err) { console.log(err.stack); return; } console.log(‘push sent’); console.log(data); } );

AWS: S3: NOJEJS – PUTOBJECT

Posted on October 12, 2017March 19, 2020 By Leonardo Regis
javascript

Create the permission in IAM: … { “Effect”: “Allow”, “Action”: [ “s3:putObject” ], “Resource”: “arn:aws:s3:::my_corporate_bucket/*” } … Tips: You can get the resource ARN just by clicking the bucket and clicking into the button “Copy Bucket ARN” take a look into the link: api on amazon  the name of the allowed operations are the fuction ones … Read More “AWS: S3: NOJEJS – PUTOBJECT” »

NODEJS: HTTPS – QUICKSAMPLE

Posted on October 10, 2017March 19, 2020 By Leonardo Regis
javascript

A sample of creating a get request using nodejs on https let https = request(‘https’); const options = { hostname: ‘www.panda.tv’, path: ‘ajax_chatinfo?roomid=89757’, headers: { ‘User-Agent’: ‘Mozilla/5.0’ } }; console.log(‘generated options’ + options); const req = https.get(options, (res) => { let body = ”; console.log(‘Status:’, res.statusCode); console.log(‘Headers:’, JSON.stringify(res.headers)); res.setEncoding(‘utf8’); res.on(‘data’, (chunk) => body += chunk); … Read More “NODEJS: HTTPS – QUICKSAMPLE” »

JAVA: HTTP – SIMPLE CALL

Posted on October 10, 2017March 19, 2020 By Leonardo Regis
java

class Base { private final String USER_AGENT = “Mozilla/5.0”; public void testConnection ( URL url){ try { HttpURLConnection con = (HttpURLConnection) url.openConnection(); // optional default is GET con.setRequestMethod(“GET”); //add request header con.setRequestProperty(“User-Agent”, USER_AGENT); int responseCode = con.getResponseCode(); System.out.println(“\nSending ‘GET’ request to URL : ” + url); System.out.println(“Response Code : ” + responseCode); BufferedReader in = … Read More “JAVA: HTTP – SIMPLE CALL” »

AWS: LAMBDAS – ENVIROMENT VARIABLES

Posted on October 9, 2017August 26, 2020 By Leonardo Regis
javascript

link of aws tutorial  Create the enviroment variable into lambda into the console or some script. //TODO create a sample here of scripting that Call it into the code using the variable process.env.variablename. It will be like the below code, for a myvar name. let localvariable = process.env.myvar;

Posts pagination

Previous 1 … 8 9 10 Next

Search

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Filter by Categories
angular
bootstrap
browser
computer science
container
data persistence
database
devops
editors
hardware
health
hosting
info
internet
it
java
javascript
network
node.js
play
protocol
security
self-help
selfhelp
server
services
soft
software engeneering
sql
support
Systems
techs
Uncategorized
versioning
web
web design
windows
wordpress

Recent Posts

  • Angular From Scratch Tutorial – Step 9: Modal
  • Angular From Scratch Tutorial – Step 8: Miscellany
  • Angular From Scratch Tutorial – Index
  • angular: Reading JSON files
  • NODE.JS: SEQUELIZE: MVC Project – 4TH STEP

Categories

  • angular (19)
  • bootstrap (6)
  • browser (4)
  • computer science (4)
  • container (1)
  • data persistence (2)
  • database (11)
  • devops (1)
  • editors (1)
  • hardware (4)
  • health (2)
  • hosting (1)
  • info (1)
  • internet (2)
  • it (1)
  • java (13)
  • javascript (32)
  • network (6)
  • node.js (1)
  • play (1)
  • protocol (1)
  • security (4)
  • self-help (1)
  • selfhelp (1)
  • server (2)
  • services (1)
  • soft (1)
  • software engeneering (1)
  • sql (1)
  • support (2)
  • Systems (1)
  • techs (3)
  • Uncategorized (2)
  • versioning (6)
  • web (1)
  • web design (5)
  • windows (3)
  • wordpress (4)

Copyright © 2025 .

Theme: Oceanly by ScriptsTown

We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept All”, you consent to the use of ALL the cookies. However, you may visit "Cookie Settings" to provide a controlled consent.
Cookie SettingsAccept All
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT