User Tools

Site Tools


links:programutveckling

Programutveckling

Tutorials

Raywenderlich Android, Swift, iOS, and lots of more

Webdesign

Domänhanteraren SE-domäner, mm
Info.se gratis omlänkning till enklare webadress
NVU gratis web-editeringsprogram
WYSIWYG Web Builder
Firefox extensions plugins
Golden htaccess password generator
Sprays medlemars hemsidor
Java.com
W3 validator Kontroll av HTML/XHTML
W3 CSS validator Kontroll av CSS
CSS ZenGarden demonstrering hur mycket det går att ändra en sidas utseende bara mha CSS

Tips, Tricks

Utbildning

Scripts

Webpage-tools.com skapar kod för websidor
Search Bliss webmaster tools, skapa kod för hemsida
Hotscripts en samling av scripts av olika slag (ASP, PHP, java, mm)
Java-scripts gratis javascripts
Java scripts made easy
Free-PHP
DynamicDrive Dhtml-scripts
FreeProgramming Resources PHP, mm
Scripts directory
Sourceforge
AtomicOxide PHP-skript
HomeWebTools verktyg för att online skapa skript-kod
DynamicDrive.com
     Snowing javascrip

Wiki

WikiMatrix jämför wiki's

Qwikiwiki enkel wiki, flatfile-databas, PHP, simpel
DokuWiki flatfile-databas, namespaces, PHP
TWiki
MoinMoinWiki phyton
MediaWiki MySQL, mm
     MediaWiki info

Blog

Pivot Blog script PHP pivot_snippets
BlogCMS Blog med fotogalleri, wiki, forum, news
BlogRolling länkad-lista-verktyg för blog'ar
Bloglines Blog, rss-feed
Xanco Xanco is a free mobile weblog, or lifelog. Stödjer foto.
Mobla Blogga via mobil eller mail, även bilder

Menyer

Bookmarks

Sitebar
MarkTree data sparas i filer, PHP

Fotogalleri

se foto-sidan
Lightbox2 Popup-script med java

MySQL

PHPAdmin MySQL admin frontend

Kalendrar

Forum

GPS

<BOOKMARK:GPS>
WorldKit Map script
GPXviewer java script
gpsPhoto.pl Pearl script, skriver goeinfo från GPX-fil till ExIf-info

Mail

Räknare

Forum

Leverantörer

1Go.dk gratis webhotell
Internetplads.dk sök efter gratis webhotell

Batch kommandon

BAT-fil

Linux bash

C/C++

Guidelines

Python

JSON

CodeBeautifyer json readable

Node.js

SIP

SIP Forum
SIP Center
SIPit SIP Interoperability Test Event
Tech Invite a Portal for promoting Internet and Telecom Standardization Knowledge

Linux commands

How To Find Files by Content

Type the command as follows:

grep 'string' *.txt
grep 'main(' *.c
grep '#include<example.h>' *.c
grep 'getChar*' *.c
grep -i 'ultra' *.conf
grep -iR 'ultra' *.conf

Where

; -i : Ignore case distinctions in both the PATTERN (match valid, VALID, ValID string) and the input files (math file.c FILE.c FILE.C filename).
; -R : Read all files under each directory, recursively

Highlighting searched patterns
You can highlight patterns easily while searching large number of files:

$ grep --color=auto -iR 'getChar();' *.c

Displaying file names and line number for searched patterns
You may also need to display filenames and numbers:

$ grep --color=auto -iRnH 'getChar();' *.c

Where

; -n : Prefix each line of output with the 1-based line number within its input file.
; -H : Print the file name for each match. This is the default when there is more than one file to search.
$grep --color=auto -nH 'DIR' *

You can also use find command:

$ find . -name "*.c" -print | xargs grep "main("

IoT

PlatformIO for Raspberry Pi, Aurdino

Homey app development

Java scripts

Arduino

Fritzing Fritzing is an open-source hardware initiative that makes electronics accessible as a creative material for anyone
GxEPD2 at GitHub Arduino Display Library for SPI E-Paper Displays

WeMOS D1

links/programutveckling.txt · Last modified: 2024-11-24 16:09 by anders_admin