Skip to content
View igoventura's full-sized avatar
🎯
Focusing
🎯
Focusing
Block or Report

Block or report igoventura

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. AsyncInjector.js AsyncInjector.js
    1
    class AsyncInjector {
    2
     constructor() {}
    3
    
    
    4
     injectScript(
    5
       document: any,
  2. Cookie as localstorage Cookie as localstorage
    1
    if (!window.localStorage) {
    2
      Object.defineProperty(window, "localStorage", new (function () {
    3
        var aKeys = [], oStorage = {};
    4
        Object.defineProperty(oStorage, "getItem", {
    5
          value: function (sKey) { return sKey ? this[sKey] : null; },
  3. Map sql query c# Map sql query c#
    1
    using System;
    2
    using System.Collections.Generic;
    3
    using System.Data.Common;
    4
    using System.Linq;
    5
    using System.Reflection;
  4. Object Array to Uppercase Object Array to Uppercase
    1
    Object.prototype.keys = function() { return Object.keys(this) }
    2
    
    
    3
    var a = [{nome: 'igo', sobrenome: 'ventura'}, {nome: 'igo', sobrenome: 'ventura'}, {nome: 'igo', sobrenome: 'ventura'}]
    4
    a.map(i => { i.keys().forEach(k => i[k] = i[k].toUpperCase()); return i })
  5. Teste CSS 001: Baseado no shot https... Teste CSS 001: Baseado no shot https://dribbble.com/shots/6428145-Fragrance-Store-Perfume-Search-AR-Scan/attachments
    1
    <!DOCTYPE html>
    2
    <html lang="en">
    3
    
    
    4
    <head>
    5
        <meta charset="UTF-8">
  6. DistanceCalculator.java DistanceCalculator.java
    1
    import java.math.BigDecimal;
    2
    
    
    3
    public class DistanceCalculator {
    4
    
    
    5
        /**