recommend HTML editor tool [closed] - text-editor

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I used dreamweaver for HTML editing so far and its fine for UI developer I think.
But most weak point is too heavy.
I wonder if I should upgrade to something more lighter with full-featured.
Anyone recommend me HTML editor tool?
Those features are what I'm looking for.
not heavy to load
split mode (code / view)
custom colors for element/attribue/values...
auto-complete tag (code hint)
auto-add close tag
changes code same time interactively (like multiple sections.)
html validation check
wysiwyg

For simple light weight code editor I would recommend Bracket , Simply nice for HTML and Javascript coding and for split mode you can always use developer tool of browsers. I find them much better.

Assuming that your work on Windows (if not, let me know)
You could take a look to (All of them are WYSIWYG):
Microsoft Expression Web 4 (Free Version) Developed by Microsoft. Not exactly WYSIWYG but quite close and quite similar to Dreamweaver for an easy transition.
BlueGriffon Open Source
Aloha Open Source
I like Brackets a lot, but It's not WYSIWYG as you are request for.

Related

What language does Apple use to develop its website? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 years ago.
Improve this question
Apple's page for iPhoneX is stunning, and I would like to know how to replicate some features on the site. See the link (https://www.apple.com/iphone-xr/)
I have very little knowledge about web development. I know html and css are the most common languages used for web development. Is this the same for the Apple website?
I am particularly interested in how to create animations while scrolling, a feature I see in many websites. As the user scrolls, new images and moving text are displayed on screen.
The link used in the question as well as other regional websites of Apple Inc. are based on a typical HTML-CSS platform(primarily).
Please note that the animations are based on js (also css).
The animations look really nice as they have divided the pages into dedicated DIVs and have used plenty of effects like onHover ,mouseUP, visibilityChange, scrolling-related stuff and what not.
You can use Ctrl+Shift+I to inspect the elements on ANY wesite for that matter, that will give you the idea of what the contents of a site really are.... !!
What 'Inspect element' looks like
This effect can be achieved in the following ways:
Sorted from the most difficult:
Code it yourself using vanilla Javascript(see: https://css-tricks.com/lets-make-one-of-those-fancy-scrolling-animations-used-on-apple-product-pages/)
Code it yourself using a Javascript libraries
GSAP (see: https://youtu.be/wLUJ9VNzZXo)
ScrollMagic (see: https://scrollmagic.io/examples/expert/image_sequence.html )
or without coding:
Scrollsequence WordPress Plugin
(see: https://wordpress.org/plugins/scrollsequence/)

Groovy formatter/beautifier in Visual Studio Code [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
For supported files in VSCode we get an option (when you right click on the file editor) to Format Document (ALT+SHIFT+F).
But unfortunately for Groovy this option is not available. And according to the VSCode community, there are no plans to implement this feature.
Is there an alternative solution available, specifically for VSCode?
I don't know how well this works for formatting other than indentation, but I simply changed the file extension from .groovy to .js, right clicked in the file, and selected "Format Document". It fixed the indentation for me.
There is now a Visual Studio Code extension to Lint, Format and Auto-fix Groovy and Jenkinsfiles ! :)
https://marketplace.visualstudio.com/items?itemName=NicolasVuillamy.vscode-groovy-lint Visual Studio Code extension embedding npm-groovy-lint, itself embedding CodeNarc
It would only be available via an extension, which you can search for in the marketplace.
Unfortunately it doesn't look like there are many extensions for Groovy at all. And if that can be considered an indication of the language's popularity, it's highly unlikely that broad support would ever be added to VS Code out of the box.

man page editor for text screen [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Do you know any editor for man(1) pages which work on text screen (terminal and console)? Searching the interned did not gave any useful results as the words are very common.
Or should I learn the details of the format and write it by hand?
You can write it e.g. in markdown then convert it via e.g. pandoc to manpage format ((t|g)roff). Here is the fine manual: http://johnmacfarlane.net/pandoc/README.html .
HTH
Sure, go ahead and learn the format and write it by hand in a regular text editor.
On the other hand, the perl project uses a kind of universal markup called pod and then converts into manpages by running pod2man.
Man pages are written in plain text with a simple markup language called troff.
Actually there are several related markup systems all supported by a set of commands ending in roff: nroff, troff, and the all singing, all dancing super-set groff.
My Mac OS 10.5 systems has a nice summary of the history in man 7 roff.
As others have noted there are several tools around which can convert other markup formats to man pages.
The easiest way is to write content as "reStructuredText" (simpler than wiki syntax) and use docutils to generate manpage from it.
See this tutorial.

Watir with AutoIT tutorial? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Is there a tutorial for using AutoIT to handle modal windows in Watir or Firewatir?
Firstly let me again plug the hardware click duck punch for WATiR, which can be found here. This will allow you to do hardware left clicks on discoverable elements, and you can tweak it to do whatever you need. It will literally take your mouse pointer and do a top-level click at the coordinates.
Secondly there is a method in WATiR to handle modal dialogs:
ie.modal_dialog.text_field(:name, 'my_textfield').set('badger)
Although I think this is version specific, you may have to dig out an older version.
Thirdly, yes. Ish. Here are some resources that will be helpful:
List of AutoIT win message codes
AutoIT with Ruby
Steve Swanson being all helpful
There is also a method in Watir to send keystrokes: browser.SendKeys("boo{TAB}{ENTER}")
But an actual "This is how to use AutoIT in WATiR to interact with modal windows"? Not that I've ever seen or can find. If you wish to take this approach you may want to search for "Ruby AutoIT" rather than "WATiR AutoIT".
Every AutoIt installation comes by default with a tutorial on automating Notepad (notepad.exe), which also deals with the modal window that appears when you are asked to save a file. The tutorial explains the absolute basics, which depending on your own know-how, might not be what you need. If you need a more specific answer, then clarify what you're trying to do. As a final note, I want to add that there are no tutorials on how to deal with Watir or Firewatir specifically.
Use Ruby ability to access AutoIt methods.
Search for these lines:
require 'win32ole'; au3 = WIN32OLE.new("AutoItX3.Control")
Watir can handle different pop-ups on its own with little efforts. Look here.

Which Icon Editing Software would you recommend for creating icons for apps [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I once bought a single license of Microangelo for creating icons which served me well in the past, but now I'm helping run up a new Virtual Machine base for our dev team to use and would like to include a decent free icon editor in there.
I'd prefer something that fully supports creating icons for Windows Vista.
For all those of you thinking "Don't let a developer design graphics!" just pretend I said "for our UI Design Team" instead of "Dev Team", lol. ;)
That's simple, because it's free, powerfull and supports Vista Icons (256x256): IcoFx
On this site you can find a tool for (animated) cursors, too: AniFx
If you want to pay, I'd suggest a more powerful ones: Axialis Iconworkshop
I would use Inkscape to design the icons, and then render them scaled down and convert them to the final format with Gimp
The benefit of this is you can design the icon once, and produce it in many target sizes effortlessly.
That's what the OpenSource world are doing these days :) ( We even have Native SVG Icons now )
I would recommend Paint.NET, or The GIMP. They're not specifically for icons, but will do the job and much more. Also, both free.
EDIT: Paint.NET requires plugin (free).
For icons, there's IcoFX.

Resources