Emacs tips

Essential shortcuts
M-: META key (ALT on most keyboards)
C-: CONTROL key
C-x C-f : open file
C-x b : switch to buffer
C-x k : kill buffer
C-s : search text forward
C-r : search text backward
C-+ / C– : Zoom in/out
C-space: mark set (start of the text to mark)
C-w: cut
M-w: copy
C-y: paste

Useful shortcuts
C-l : scroll to current line in the middle of the window
C-x 2 : split window horizontally
C-x 3 : split window vertically

Use of accents
M-x set-input-method latin-1-prefix
This will make accent characters combine with the following characters, so that you can type `” u’ to achieve `ü’, for example.

Interactively Find and Replace String Patterns on Multiple Files
We suppose all files are in the same folder.

  • Open the folder:
  • C-x d
  • Mark the files to be included in the find/replace operation: m. To unmark files: u
  • M-x dired-do-query-replace-regexp (or Q)
  • to accept a replacement: y, to skip: n
  • to accept for the whole file and move to next file: !
  • to continue the query-replace if you fall out of the loop:
  • M-, (i.e. Meta-comma)
  • to save all modified buffers (Emacs version > 22.2), show all buffers:
  • M-x ibuffer
  • select modified buffers: * u, save them: S (capital S)
  • If you simply want to search for a regexp, use:
  • M-x dired-do-search (or A)
  • use M-, (Meta-comma) to loop through the results

Dired — marking files with similar pattern
Useful for example if you want to mark simultaneously all .tex files in a folder.
% m .tex$
(if you omit the $, .tex~ files will be marked as well)

Regexp
Insert a newline in a regexp or replacement string: CTRL-Q CTRL-J

Change coding system (between DOS and Unix)
DOS to Unix: C-x RET f undecided-unix
Unix to DOS: C-x RET f undecided-dos

Buffer coding system
In my case, the coding system that works when writing LaTeX files in Norwegian is iso-latin-1-unix. It’s the default when I create new .tex files, however, it may change when pasting text from e.g. my browser. The following commands revert to the right coding system:
C-x RET f iso-latin-1-unix

Autocad tips

The tips were written with AutoCAD 2007 and 2008. Some of them might not be compatible with earlier versions.

General

Zoom [Z]: right-click and choose zoom then left-click and move your mouse up to zoom in and down to zoom out

Distance [DIST]: Measuring distances and angles

Undo [U] / Oops [OOPS]: Restores the last erased selection

Copy [CP]

Autocad text window [F2]

Retrieve the coordinate of a location [ID]: Lists the coordinates of the specified point and stores it as the last point. You may then draw points relative to this reference by typing @ in front of the relative coordinates.

Properties palette: Double-click any object

Copy / Paste between windows:

  • Select the points to copy
  • CTRL+C
  • Right-click in other window > Paste to Original Coordinates

Drawing

Coordinates:

  • absolute rectangular: x,y
  • relative rectangular: @x,y
  • relative polar: @distance<angle

Object snapping: Shift-Rightclick to get the object snapping menu

Line [line]: You can specify the coordinates of the line extremities in the command line. Hit the Escape key to terminate the line drawing

Point [point]: Choose the point format in Format > Point Style. If you want to draw a point with coordinates relative to another point, you need to identify that other point first with the ID command

Text [dtext]

Draw points with regular spacing [measure]: Choose a line and the spacing between the points and Autocad draws them automatically. Starts at the endpoint closest to the point you chose to select the object

Midpoint between two points [point > mtp]: After typing point, type mtp then choose two points

3D

Cylindrical coordinates: (@)distance<angle,distance
where the first distance is in the XY plane and the second distance is along the Z axis. You need to turn off dynamic input (DYN button in the bottom of the Autocad window) in order to type cylindrical coordinates. Dynamic inputs were introduced either in Autocad 2006 or in Autocad 2007.

Change view
If the predefined views (View > 3D Views >) don’t cover your needs, use the VPOINT command with the Rotate argument.
You are asked for the angle from the X Axis and then the angle from the XY plane. These two angles define the point that you will be looking at your drawing from. If you want to know the orientation of a part, line, etc. use the DIST command.

Layout / Plotting
Tools > Wizards > Create Layout…

Once the layout is created, double-click inside the viewport then you can zoom, pan and show layers the same way as you do in model view. When you’re finished, simply double-click outside the viewport.

When you plot a layout view, you get on the paper what you see on the screen.

Settings

Angles: Format > Units
Lets you choose the number of decimals and the rotation direction (trigonometric by default – check the Clockwise box else)
The Direction button lets you define the 0 degrees direction

AutoLISP

Loading AutoLISP file
Tools > AutoLISP > Load application…

Or:

(load “filename_without_extension”)

Make sure the file is located in a folder in the search path:

Tools > Options > Files, choose the first item in the list ‘Support File Search Path’, press ‘Add…’ then ‘Browse…’ and point to the folder where you stored your AutoLISP file.

Open Visual LISP (VLISP)
VLISP is an IDE to write and debug AutoLISP scripts.

Quick Reference
3DPOLY: Polyline (3D)

ATTSYNC: Updates all instances of a specified block with the current attributes defined for the block. To update all blocks, answer ‘Name’ then ‘*’

LAYER: Layer Manager

LIMITS: Drawing Limits

PLINE: Polyline (2D)

PURGE: Remove unused objects (layers, blocks, etc.)

REGEN: update the display of existing objects (points, etc.)

DXF editing
Add a layer
Locate the following text:

0
TABLE
2
LAYER

A few lines below there is the following text:

AcDbSymbolTable

Under the group code 70, increase the value by 1 unit, e.g. if you find:

70
4

change it to

70
5

Copy the text starting with:

0
LAYER

until just above the next similar text and paste it right below itself. Under the LAYER keyword, find the group code 5 and replace the handle value below with a value that is not used by another layer. Change the layer name under group code 2. The color code is found under group code 62.

Significant figures

John Denker argues that it is insane to use significant figures.

Instead one should follow these guidelines:

  • Keep all the original data. Do not round off the original data.
  • In the introductory class, the following “house rules” apply:
    • Basic 3-digit rule: For a number in scientific notation, the rule is simple: For present purposes, you are allowed to round it off to three digits (i.e. two decimal places). Example: 1.23456×108 may be rounded to 1.23×108
    • For a number not in scientific notation, the rule is almost as simple: convert to scientific notation, then apply the aforementioned 3-digit rule. (Afterwards, you can convert back, or not, as you wish.)
    • The point of these rules is to limit the amount of roundoff error. As a corollary, you are allowed to keep more than three digits if you wish, for any reason, or for no reason at all. This is makes sense because it introduces even less roundoff error.
    • As another corollary, trailing zeros may always be rounded off, since that introduces no roundoff error at all. Example: 1.80 may be rounded to 1.8, since that means the same thing. Conversely 1.8 can be represented as 1.80, 1.800, 1.8000000, et cetera.
    • These rules apply to intermediate steps as well as to final results.
    • These “house rules” apply unless/until you hear otherwise. They tell you what is considered significant at the moment. As such, they have zero portability outside the introductory class, and even within this class we will encounter some exceptions. Still, for now three digits is enough. There is method to this madness, but now is not the time to worry about it. We have more important things to worry about.

Time and date standard

In order to indicate that a time is measured in Universal Time (UTC), you can append a capital letter Z to a time as in

23:59:59Z or 2359Z

The strings

+hh:mm, +hhmm, or +hh

can be added to the time to indicate that the used local time zone is hh hours and mm minutes ahead of UTC. For time zones west of the zero meridian, which are behind UTC, the notation

-hh:mm, -hhmm, or -hh

is used instead. For example, Central European Time (CET) is +0100 and U.S./Canadian Eastern Standard Time (EST) is -0500. The following strings all indicate the same point of time:

12:00Z = 13:00+01:00 = 0700-0500

Torbjørn Trondsen om Sjømatindustrimeldingen

Torbjørn Trondsen publiserte 27.12.2015 en analyse (PDF) av Sjømatindustrimeldingen.

Her er noen utdrag:

“Verdiskapningen for investorer på Oslo børs sidestilles med verdiskapning i selve fiskeindustrien hvor også arbeidstakerne utgjør en viktig andel, og i kystkommunene som bringer råstoffet over kai.”

“Verdiskapning på kysten fremstilles også å stå i motsetning til verdiskapning for samfunnet (Side 49 punkt 7.6):
«Man må altså se at en vurdering av aktivitetskravet må balansere hensynene i deltakerlovens formålsparagraf: å legge til rette for økt verdiskapning versus at høstingen av de marine ressursene skal komme kystbefolkningen til gode»
og
«Det er altså grunn til å tro at en endring av aktivitetskravet[1] vil kunne legge til rette for økt samfunnsøkonomisk lønnsomhet og økt verdiskapning»”

“Departementet har bestemt at ferskfiskpakking i form av sortering, ising, pakking og videresalg av hel fersk fisk som har gitt suksess for 80% av norsk lakseeksport, ikke kan produseres av bearbeidingspliktig råstoff!”

“Eksport av ikke bearbeidet råstoff i konteinere direkte fra fartøy kan med fordel begrenses for å fremme verdiskapning på land. På Island straffes slik eksport med kvotekutt.”

Et av forslagene fra Torbjørn Trondsen:
“Kvoter tildelt leveringspliktige trålere tilhører industrien i de
lokalsamfunn og kommuner som er tilgodesett i trålerkonsesjonene.
Hvis ikke leveringspliktige trålere kan eller vil levere fangstene
av den kvaliteten og på de tidspunkt bedriftene i de tilgodesette lokalsamfunn etterspør, gis bedriftene i samråd med kommunene fullmakt til å leie ut kvotene til andre fartøyer som er villige til å levere den råstoffkvaliteten som industrien og de best betalende markeder etterspør.”

 

Fiskerifond i Loppa (2017)

Denne siden er et arbeidsdokument ifm. revidering av vedtekter for fiskerifond i Loppa i 2017.

Fondsvedtekter i forskjellige kommuner:

Kommentarer

Loppa

  • utvikling av kvotefaktorer 2004-2015: – 49 %
  • vedtekter for fiskerifondet
    • maks 100 kNOK, maks 50 % av investering
    • krav
      • bosatt og skattepliktig i kommunen
      • fisker på blad B eller kombinasjonsnæring
      • skal eie minst 51 % selv, minimum 10 % egenkapital
      • intensjon om lokal leveranse
  • Problemer med fondet: pengene gis bort så fondet tømmes bare. Det er nå bare ca. 30 kNOK igjen. Dessuten er summene for små, og blir dermed brukt på småprosjekter som fiskerne har råd til å betale av egen lomme. Fondet er dermed ikke med på å “fremme fiskeriene” i kommunen.

Andøy

  • Regelverk for stønadslån til fiskefartøy i Andøy
  • Stønadslånsordning fiskefartøy er utelukkende en låneordning, som er en hjelp for å få på plass egenkapital til fortrinnsvis unge fiskere, som vil ta steget til å bli egen båteier. Har tilsvarende stønadslånsordning landbruk.
  • Næringsfond (av noen kalt fiskerifond) er et fond som utelukkende gir tilskudd. Det er mindre tilskudd til investeringer, markedsføring, produktutvikling, studiereiser, markedsundersøkelser, kompetanseheving, deltakelse på etablereropplæring m.v.
  • Retningslinjer for næringsfondet: bruker bare retningslinjene som er gitt fra departementshold når næringsfond er bevilget til fylkeskommunene. Ikke vedtatt noe kommunalt.
  • Næringslån. Fra denne ordningen (fond) kan det ytes lån til forskjellige slags tiltak – fortrinnsvis investeringer. Ingen regler annet enn at det gis lån med rente- og avdragsfri periode på 2 år for deretter nedbetaling over 5 år.
  • Iflg. næringssjef Bjørnar Sellevold, er det uaktuelt å slå disse ordningene sammen.

Lebesby

Av de kommunene jeg har undersøkt, ser Lebesby ut til å ha den mest gjennomtenkte fiskeripolitikken.

Hasvik

  • utvikling av kvotefaktorer 2004-2015: – 36 %
  • næringsfond (har ikke eget fiskerifond)
  • I tillegg er Sørvær Kystinvest opprettet med de millionene som en fikk for leveringsplikten til Riston-tråleren. Her er pengene stort sett brukt opp. Der er eget regelverk for dette. Ordføreren er i styret for kommunen. Jeg har ikke fått svar på henvendelse.
  • Representant for Kystfiskarlaget sier næringsfondet ikke er tilfredsstillende. Beløpene er for små. De vil være til hjelp for en gruppe-2-fisker, men blir en dråpe i havet for en fisker som skal gå til anskaffelse av gruppe-1-fartøy: dette koster i størrelsesorden 10 MNOK.

Måsøy

  • Utvikling av kvotefaktorer 2004-2015: – 20 %
  • Måsøy i Vekst er et kommunalt foretak (KF) med eget styre som disponerer midler til næring så lenge Måsøy er en omstillingskommune.
  • Fiskerifondet er sammenslått med næringsfondet. I slutten av 2015 var det 300 kNOK på fondet.
  • Måsøys største utfordring er at de mister fiskere til Nordkapp pga. krabbefiske. Fiskerne bor i Måsøy, men har adresse i Nordkapp. Næringsfondet klarer ikke å stanse blødningen.

Deatnu-Tana

Hammerfest

Kommunestyremøte Loppa 18.12.15

Sakspapirer:

Saker

PS 66/15 – Endringer av regelverket for næringsfondet

NOTATER
Fondet skal prioritere kompetansehevende tiltak, forstudier, forprosjekt og mindre investeringstiltak
Hvem kan få støtte: bedrifter, organisasjoner og enkeltpersoner som har viksomhet i kommunen eller som har som mål å skape virksomhet som gir kommunen arbeidsplasser og skatteinntekt
Typer tilskudd: kompetansehevende tiltak, forstudie, forprosjekt, mindre investeringstiltak og kritisk private servicetiltak
Endring som foreslås er at det er teknisk, plan og næring som er fondsstyret.
Det er også gitt muligheten til å støtte nærbutikkene slik at de får muligheten til å opprettholde tilbudet.

PS 67/15 – Kommuneplanens samfunnsdel 2015-27

 

PS 68/15 – Veilys i Bergsfjord – utskifting av blanktrådlinje

 

PS 69/15 – Risiko- og sårbarhetsanalyse for Loppa kommune

 

PS 70/15 – Sammenslåing av psykiatri og rus

 

PS 71/15 – Hjemmebasert omsorg

 

PS 72/15 – Rekrutterings- og stabiliseringstiltak leger

 

PS 73/15 – Bemanning legekontoret

 

PS 74/15 – Opprettelse av stilling Introduksjonskoordinator

 

PS 75/15 – Budsjettregulering 2015 Investering – Småbedriftssenteret

 

PS 76/15 – Budsjettregulering 2015 – Kjøp av bil

 

PS 77/15 – Budsjettregulering ikke påbegynte prosjekter

 

PS 78/15 – Vannledning Ystnesveien

 

PS 79/15 – Avløp Ystnesveien

 

PS 80/15 – Årsbudsjett 2016 – Økonomiplan 2016-2019

 

PS 81/15 – Referatsaker

Inkscape quick reference

CTRL+B: show/hide scrollbars
CTRL+arrow: move the canvas
CTRL+G/U: group/ungroup objects
CTRL+F1: gradient tool
CTRL+D: duplicate an object

DIALOGS
CTRL+SHIFT+W: swatches dialog (colors)
CTRL+SHIFT+F: fill and stroke dialog (colors)
CTRL+SHIFT+A: align dialog

TRANSFORM KEYS
< > : scale
[ ] : rotate
ALT+transform key: move relative to the scale of the canvas

SELECT OBJECTS
SHIFT+drag: rubberband selection
CTRL+click: select object within a group
TAB: select objects (in z-order)
ALT+click: select through the z-order stack of objects at the click point
ALT+drag: drag object selected with ALT+click

TOOLS
SPACE/s: selector tool
t: text tool
r: rectangle tool
e: ellipse tool
p: freehand
z: zoom
F7: dropper tool (color pick) — SHIFT-click assigns stroke color

Z-ORDER
Home: raise to top
End: lower to bottom
PgUp: raise
PgDn: lower

Insert math symbols
While editing text, press CTRL+U then type the Unicode code of the symbol. A preview is shown in the status bar. Press Enter when finished.
If you save your work as eps, it is recommended that you set the option “convert text to path” to preserve symbols.

Useful symbol codes:

  • multiplication dot (LaTeX: cdot): 00B7
  • square (LaTeX: ^2): 00B2
  • cube (LaTeX: ^3): 00B3
  • degree: 00B0
  • pi: 1D70B

Overview of all Unicode sets
Latin-1 punctuation
Mathematical Alphanumeric Symbols

Loppa Sps posisjoner 2015-19

Ronja Garden – 48277026 – ronja_garden@hotmail.com – skype: ronja_garden

  • fast: kommunestyret, formannskapet, Loppa boligstiftelse

 

Fabrice Caline – 47293868 – fabrice.caline@gmail.com – skype: fabrice.caline

  • fast: kommunestyret, levekårsutvalget, eldrerådet, viltnemnda
  • vara: formannskapet, Bergsfjord Fiskeriservice, VEFAS IKS

 

Ann Tove Wilhelmsen  – 46932407 – ann.t.wilhelmsen@loppa.kommune.no – skype: ann.tove.wilhelmsen

  • fast: klagenemnda, eldrerådet

 

Turid Grønbech – 95936684 – tur-g@online.no – skype: facebook:tur-g

  • vara: levekårsutvalget

 

Ingrid Olsen – 90030284 – ijoh-ol@online.no

  • vara: levekårsutvalget, rådet for mennesker med nedsatt funksjonsevne

 

Bjørnar Bårdsen – 99421776

  • vara: kontrollutvalget