constile.org

Ask me anything   CSS, HTML, JavaScript, Web development, ...
_ cssguidacompleta.com
_ twitter.com/giatro
_ github.com/giatro

twitter.com/giatro:

    rutgergeelen-deactivated2012082 asked: Hi,loved your Chrome extension 'Translate selection' but it stopped working some time ago (spinning ball when translations). According to the comments in the Chrome webstore more people have this problem. Is there anything I should do or is the extension broken since the last update?


    Answer:

    web service api changed! fix asap. Thanks.

    — 1 year ago
    ramatomo asked: è da qualche settimana che non mi funziona più il plugin di Chrome "translate selection". Prima di ricercare problemi in chrome volevo sapere se è un problema generale o sta succedendo solo a me.ho già provato a toglierlo e reinstallarlo. grazie. Filippo.


    Answer:

    Web service api changed! fix asap. Thanks!

    — 1 year ago
    riemann81 asked: Salve, ho riscontrato un bug nell'uso del suo plugin per google chrome (translate selection), ecco l'errore: "ERROR: Suspected Terms of Service Abuse." potrebbe aiutarmi a risolverlo? grazie


    Answer:

    Ok, il problema sono le API di Google: le sta dismettendo per creare un servizio a pagamento e sta riducendo il numero di richieste che possono essere inviate all’API.

    Soluzione: usarò altre API.

    — 1 year ago
    31 CSS Code Snippets To Make You A Better Coder

    31 CSS Code Snippets To Make You A Better Coder | Design your way - http://goo.gl/1dQnE - via @HTML5aldente

    — 2 years ago
    #Css 
    "Certe cose si fanno oggi perché ci faranno crescere domani."
    Wired #21 (dic 2010) editoriale di Riccardo Luna
    — 2 years ago
    "… fare meglio se possibile, ed è sempre possibile …"
    François Constantin, 1819
    — 2 years ago
    Tip JavaScript: `apply` method

    invoke foo.apply(w,[x,y,z]); it’s equivalent to invoke foo(x,y,z); with this equal to w.

    Example:

    foo = function(a,b,c) {
        return (a+b+c)*this.x;
    }
    
    foo.apply({x:4},[1,2,3]);
    // returns 24 (1+2+3)*4 = 6*4 = 24
    
    — 2 years ago with 6 notes
    "HTML, CSS & JavaScript are the three quarks of the Web"
    Gianluca Troiani, http://goo.gl/tMkJ9
    — 2 years ago
    Tip CSS3, 2D transforms: rotate

    Rotate foo 90 deg clock wise:

    div.rot90{
      -webkit-transform : rotate(90deg);
      -moz-transform : rotate(90deg);
      -o-transform : rotate(90deg);
    }
    

    Full example:

    <!DOCTYPE html>
    <html>
      <head>
        <meta charset="utf-8"> 
        <title>Tip CSS3, 2D transforms: rotate</title>
        <style>
          body{
            font:24px 'museo 300';
          }
          div{
            width:100px;
            height:100px;
            background:#668EB1;
            color:#FFF;
            margin:20px;
            padding:10px;
            border-radius:0 40px 0 0;
          }
          div.rot90{
            background:#F79300;
            color:#000;
            -webkit-transform : rotate(90deg);
            -moz-transform : rotate(90deg);
            -o-transform : rotate(90deg);
          }
        </style>
      </head>
      <body>
        <div>Hello, world.</div>
        <div class="rot90">Hello, world.</div>
      </body>
    </html>
    
    — 2 years ago with 1 note
    #tips CSS3  #2D tramsforms  #rotate 
    jQTouch Cheat Sheet →

    jQTouch Cheat Sheet: use it with phonegap to create iPhone and Android apps based on HTML5, CSS and JavaScript).

    — 2 years ago with 1 note
    #mobile  #app  #HTML5  #CSS  #JavaScript 
    Vito Sans on the Behance Network →

    A typeface born in a little town called San Vito lo Capo in Sicily (Italy).

    My Opinion: a beautiful font!

    — 2 years ago
    #fonts  #design