Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

258 total results found

Coding

git deploy on simpel.cc

Coding

Activate a webhook on github. Go to repos settings: gh browse -s On github you do the following: Click Webhooks > Add webhook. Fill in Payload URL with: https://simpel.cc/git-deploy/deploy.php?folder=SUBFOLDER Choose Content t...

Ausbildung

git error: repository not found

Coding

Following error messages: ERROR: Repository not found. fatal: Konnte nicht vom Remote-Repository lesen. Bitte stellen Sie sicher, dass die korrekten Zugriffsberechtigungen bestehen und das Repository existiert. Change config: vim .git/confi...

Projekte

JavaScript: scroll to bottom every second

Coding

Start it in console: var scroller; (function scroll() { // Do something every second window.scrollTo(0,document.body.scrollHeight); scroller = setTimeout(scroll, 1000); })(); Stop it: clearTimeout(scroller);

git: modify specific commit

Coding

You can use git rebase. For example, if you want to modify commit COMMIT, run: git rebase --interactive COMMIT^ Please note the caret ^ at the end of the command, because you need actually to rebase back to the commit before the one you wish to modif...

git: remove specific commit

Coding

To delete a special commit look for it's id (COMMIT) and do: git rebase --onto COMMIT^ COMMIT It's not important if you removed that problematic text in the commit after (COMMIT+1). The whole diff from COMMIT-1 to COMMIT will be deleted.

git: clear history of repository

Coding

### Remove the history from rm -rf .git ### recreate the repos from the current content only git init git add . git commit -m "initial commit" ### push to the github remote repos ensuring you overwrite history git remote add origin https://gith...

media query iDevice not working

Coding

If media queries on iPhone or iPad not working you have to "enable" it in html. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=yes user-scalable=no"> /* iPad portait */ @media (max-width: 768px) { body { font-size: 3...

ffmpeg MXF HDF01

Coding

It must be in two steps to get HDF01 files. First transcode with ffmpeg: {{ $stfldCmd := "" }} {{ $deintCmd := "" }} {{ $cropCmd := "" }} {{ $scaleCmd := "" }} {{ $padCmd := "" }} {{ $interlfpsCmd := "" }} {{ $colorspaceCmd := "" }} {{ $vfCmd := "" }} ...

how to github token

Coding

On GitHub Go to https://github.com/settings/tokens.Generate new token with minimum read:org, repo rights. On computer Windows git config --global credential.helper manager Is asking for token first time you git push. OSX gh auth login ...

Apple Mail: kann Outlook-E-Mail nicht löschen

Coding

Fehlermeldung: "Die Email "[Betreff]" konnte nicht in das Postfach "[Postfachname]" verschoben werden. Das angegebene Objekt wurde im Informationsspeicher nicht gefunden" Lösung:Mail in einen anderen Posteingang verschieben. Dort dann löschen.

git: Invalid executable path

Coding

Error message on windows: Invalid executable path: This is due to github.com/git-for-windows/git/issues/2036 problems executing git-for-windows on network drives.Go to wingit.blob.core.windows.net/files/index.html and grab a new snapshot, extract it ...

console: look what css or js is used

Coding

Use Drawer "coverage" for that.To open it hit [shift]+[cmd]+[p] and type "coverage".

console: monitor function

Coding

If you want to see when a defined function is called type monitor(that_special_function) into console.Every time that_special_function is called it will show a text. To end this monitoring type unmonitor(that_special_function)

Can't be opened because apple cannot check it for malicious software

Coding

Look for quarantine: xattr <app-path> You will see: com.apple.quarantine Remove it: xattr -d com.apple.quarantine <app-path> I made an alias for that: alias allow="xattr -d com.apple.quarantine" # add app-path to allow this app

git error: gpg beim Signieren der Daten fehlgeschlagen

Coding

stackoverflow.com/questions/41052538/git-error-gpg-failed-to-sign-data#41054093 Hot fix: run gpgconf --kill gpg-agent to kill any running agent that might be hung

github: personal access token with https

Coding

docs.github.com/en/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token

Outlook: Speicher anzeigen

Coding

In Outlook über dem Posteingang Rechtsklick auf die "E-Mail-Adresse" > ganz unten "Datendateieigenschaften" > unten Knopf "Ordnergröße" > Reiter "Serverdaten".