Skip to main content

Home/ Web Development, Design & Programming/ Group items tagged code-generator

Rss Feed Group items tagged

Vernon Fowler

@font-face gotchas « Paul Irish - 1 views

  • There are a few reasons why smiley is a better solution: Webkit+Font Management software can mess up local references, like turning glyphs into A blocks.  (crbug.com/33173) On OS X, Font Management software may alter system settings to show a dialog when trying to access a local() font that's accessible outside of Library/Fonts. More detail on my bulletproof post. (crbug.com/29729) Font Explorer X is also known to mess up other stuff in Firefox: bugzil.la/531771 Although it's unlikely, you could reference a local() font which is completely different than what you think it is. (Typophile post on different fonts, same name) At the very least its a risk, and you're ceding control of the type to both the browser and host machine. This risk may not be worth the benefit of avoiding the font download. These are all pretty edge case issues, but it's worth considering. FontSquirrel has already made the smiley syntax the new default in the Generator, and you should use it going forward as well.
  • And.. regarding @font-face syntax I now recommend the bulletproof smiley variation over the original bulletproof syntax.
  • @font-face { font-family: 'Graublau Web'; src: url('GraublauWeb.eot'); src: local('?'), url('GraublauWeb.woff') format('woff'), url('GraublauWeb.ttf') format('truetype'); }
  • ...5 more annotations...
  • in Webkit (Chrome/Safari), applying font-weight:bold to faux-bold some @font-face'd text will not succeed. Same applies for font-style:italic.
  • text-transform doesn't play well with @font-face in current implementations.
  • @font-face doesnt play nice with css transitions.
  • If a @font-face declaration is within a media query @media screen { ..., it will fail in Firefox.
  • SVG Fonts - Currently SVG is the only way to get webfonts working on iPhone and iPad.
  •  
    "There are a few reasons why smiley is a better solution: Webkit+Font Management software can mess up local references, like turning glyphs into A blocks.  (crbug.com/33173) On OS X, Font Management software may alter system settings to show a dialog when trying to access a local() font that's accessible outside of Library/Fonts. More detail on my bulletproof post. (crbug.com/29729) Font Explorer X is also known to mess up other stuff in Firefox: bugzil.la/531771 Although it's unlikely, you could reference a local() font which is completely different than what you think it is. (Typophile post on different fonts, same name) At the very least its a risk, and you're ceding control of the type to both the browser and host machine. This risk may not be worth the benefit of avoiding the font download. These are all pretty edge case issues, but it's worth considering. FontSquirrel has already made the smiley syntax the new default in the Generator, and you should use it going forward as well. "
mikhail-miguel

Programminghelper - Code faster with AI: type a description & Artificial Intelligence w... - 0 views

  •  
    Programminghelper: Code faster with AI: type a description & Artificial Intelligence will generate the code (programming-helper.com).
Vernon Fowler

Best Practices for Speeding Up Your Web Site - 1 views

  • Arranging the images in the sprite horizontally as opposed to vertically usually results in a smaller file size. Combining similar colors in a sprite helps you keep the color count low, ideally under 256 colors so to fit in a PNG8. "Be mobile-friendly" and don't leave big gaps between the images in a sprite. This doesn't affect the file size as much but requires less memory for the user agent to decompress the image into a pixel map. 100x100 image is 10 thousand pixels, where 1000x1000 is 1 million pixels
  • Minification is the practice of removing unnecessary characters from code to reduce its size thereby improving load times. When code is minified all comments are removed, as well as unneeded white space characters (space, newline, and tab). In the case of JavaScript, this improves response time performance because the size of the downloaded file is reduced.
  • Many web sites fall in the middle of these metrics. For these sites, the best solution generally is to deploy the JavaScript and CSS as external files. The only exception where inlining is preferable is with home pages, such as Yahoo!'s front page and My Yahoo!. Home pages that have few (perhaps only one) page view per session may find that inlining JavaScript and CSS results in faster end-user response times. For front pages that are typically the first of many page views, there are techniques that leverage the reduction of HTTP requests that inlining provides, as well as the caching benefits achieved through using external files. One such technique is to inline JavaScript and CSS in the front page, but dynamically download the external files after the page has finished loading. Subsequent pages would reference the external files that should already be in the browser's cache.
  • ...1 more annotation...
  • CSS Sprites are the preferred method for reducing the number of image requests. Combine your background images into a single image and use the CSS background-image and background-position properties to display the desired image segment.
henisha

QR Code Scanner - 1 views

  •  
    QR Code Scanner & Barcode Reader is the fastest ⚡ and safe QR code reader / barcode scanner application. We made it completely user friendly and easy to use. Just point your device to QR code or barcode you want to scan and QR Code Scanner app will automatically scan and read it.
quality web

Why You Should Use PHP Code Generators in Web Programming - 0 views

  •  
    For new PHP programmers, code generators can prove to be extremely beneficial. This post describes the benefits of using them in web programming.
jvsoon

WP MASTER DEVELOPER PRO - 1 views

When it comes to coding, WP Master Developer Pro is a tool like no other... ...but wouldn't it be great to be able to create WordPress plugins, even the complex ones with lots of features, WITHOUT...

design web Development website webdesign tools web design programming company

started by jvsoon on 25 Apr 17 no follow-up yet
henisha

QR Code Scanner - 0 views

  •  
    QR Code Scanner is the fastest and most user-friendly application. Change your Smartphone into a powerful QR Code Reader, Barcode scanner, and Data Matrix scanning utility. Open the app, point the camera at the code and you're done! Functions of QR barcode scanner include history of scanned QR codes and barcodes. Direct search online with multiple search engines options.
applicontech

Make your business visible to get targeted audience and beat the competition in marketing - 61 views

Does anyone have an idea How we can implement SEO for different ext of the same site? I have two different ext https://applicontech.com & https://applicontech.ae

web development website webdesign programming tools web design company

tom studer

10 of the Best CSS3 Code Generators » SitePoint - 0 views

  •  
    CSS3 changes everything. There are 116 new properties* with multiple vendor prefixes and different syntaxes. No one could be expect you to memorize everything. Fortunately, there are a number on free online tools which will help you create modern CSS3 code to cut and paste into your stylesheets…
Jochen Burkhard

Mastering CSS Coding: Getting Started - Smashing Magazine - 0 views

    • Jochen Burkhard
       
      A CSS-Primer one would dream of... Well done guys!
  • Quick tip: Because block elements typically span 100% of their parent container’s width, floating an element to the right knocks it down to the next line. This also applies to plain text that runs next to it because the floated element cannot squeeze in the same line.
  • Reverse the order of the HTML markup
  • ...2 more annotations...
  • Specify an exact width for the neighboring element
  • To horizontally align non-textual elements, use the margin property.
  •  
    CSS has become the standard for building websites in today's industry. Whether you are a hardcore developer or designer, you should be familiar with it. CSS is the bridge between programming and design, and any Web professional must have some general knowledge of it. If you are getting your feet wet with CSS, this is the perfect time to fire up your favorite text editor and follow along in this tutorial as we cover the most common and practical uses of CSS.
ronoet

10 Best WordPress page builders to save your valuable time! - Electronthemes - 0 views

  •  
    What to do: Page Builder's simple drag and drop interface means you'll never get to write one line of code. Page Builder generates all the highly efficient code for your website when you try to make a website. Page Builder gives you complete flexibility. You can choose the precise number of columns for every row and therefore the precise weight of every column right down to the percentage point-to-point.
mikhail-miguel

RTutor - Quickly generate & test R code, powered by OpenAI's Davinci & Shiny (rtutor.ai). - 0 views

  •  
    RTutor: Quickly generate & test R code, powered by OpenAI's Davinci & Shiny (rtutor.ai).
mikhail-miguel

CodeAssist - Generate code for popular programming languages (plugins.jetbrains.com). - 0 views

  •  
    CodeAssist: Generate code for popular programming languages (plugins.jetbrains.com).
mikhail-miguel

CodeGeeX - CodeGeeX: 13B params, 20+ langs, 15+ for code generation & translation (hugg... - 0 views

  •  
    CodeGeeX: CodeGeeX: 13B params, 20+ langs, 15+ for code generation & translation (huggingface.co).
mithun biswas

create your own website for free - 0 views

  •  
    create your own website for free without having coding knowledge by using css3 gradient generator all Text, box, radius, shadow and Icons etc
Jochen Burkhard

Mastering CSS Coding: Getting Started - Smashing Magazine - 13 views

  •  
    CSS has become the standard for building websites in today's industry. Whether you are a hardcore developer or designer, you should be familiar with it. CSS is the bridge between programming and design, and any Web professional must have some general knowledge of it. If you are getting your feet wet with CSS, this is the perfect time to fire up your favorite text editor and follow along in this tutorial as we cover the most common and practical uses of CSS.
  •  
    CSS has become the standard for building websites in today's industry. Whether you are a hardcore developer or designer, you should be familiar with it. CSS is the bridge between programming and design, and any Web professional must have some general knowledge of it. If you are getting your feet wet with CSS, this is the perfect time to fire up your favorite text editor and follow along in this tutorial as we cover the most common and practical uses of CSS.
1 - 20 of 56 Next › Last »
Showing 20 items per page