Skip to content

Instantly share code, notes, and snippets.

View morisono's full-sized avatar

morisono

View GitHub Profile
@dhoeric
dhoeric / 0_README.md
Last active April 12, 2025 16:13
Google Calendar - Public Holiday Calendars
@cmod
cmod / hugofastsearch.md
Last active April 17, 2025 23:32 — forked from eddiewebb/readme.md
Fast, instant client side search for Hugo static site generator
@coltenkrauter
coltenkrauter / fix-wsl2-dns-resolution
Last active April 9, 2025 09:37
Fix DNS resolution in WSL2
More recent resolution:
1. cd ~/../../etc (go to etc folder in WSL).
2. echo "[network]" | sudo tee wsl.conf (Create wsl.conf file and add the first line).
3. echo "generateResolvConf = false" | sudo tee -a wsl.conf (Append wsl.conf the next line).
4. wsl --terminate Debian (Terminate WSL in Windows cmd, in case is Ubuntu not Debian).
5. cd ~/../../etc (go to etc folder in WSL).
6. sudo rm -Rf resolv.conf (Delete the resolv.conf file).
7. In windows cmd, ps or terminal with the vpn connected do: Get-NetIPInterface or ipconfig /all for get the dns primary and
secondary.
rank frequency lemma
1 41309.50
2 23509.54
3 22216.80
4 20431.93
5 20326.59
6 20110.69
7 19235.55
8 17292.36
9 16841.17 する
@chen-ding-71
chen-ding-71 / README.md
Last active May 3, 2024 18:26
World University Ranking in 2015

The dataset is about the world university ranking in 2015 published by Center for World Univeristy Rankings.

Attributes

  1. world_rank: quantitative
  2. institution: categorical
  3. country: categorical
  4. national_rank: quantitative
  5. quality_of_education: quantitative
  6. alumni_employment: quantitative
  7. quality_of_faculty: quantitative
@HeratPatel
HeratPatel / git-flow.md
Last active April 6, 2025 21:54
Git Flow: Git branches workflow for larger and continues releasing projects. #git #gitflow

Git Flow: A Successful Git branching model

Alt Text

Gitflow is a Git workflow design that was first published and made popular by Vincent Driessen at nvie. The Gitflow defines a strict branching model designed around the project release. This provides a robust framework for managing larger projects.

Gitflow is ideally suited for projects that have a scheduled release cycle. This workflow doesn’t add any new concepts or commands beyond what’s required for the Feature Branch Workflow. Instead, it assigns very specific roles to different branches and defines how and when they should interact. In addition to feature branches, it uses individual branches for preparing, maintaining, and recording releases. Of course, you also get to leverage all the benefits of the Feature Branch Workflow: pu

@pcgeek86
pcgeek86 / cheatsheet.ps1
Last active April 12, 2025 17:44
PowerShell Cheat Sheet / Quick Reference
Get-Command # Retrieves a list of all the commands available to PowerShell
# (native binaries in $env:PATH + cmdlets / functions from PowerShell modules)
Get-Command -Module Microsoft* # Retrieves a list of all the PowerShell commands exported from modules named Microsoft*
Get-Command -Name *item # Retrieves a list of all commands (native binaries + PowerShell commands) ending in "item"
Get-Help # Get all help topics
Get-Help -Name about_Variables # Get help for a specific about_* topic (aka. man page)
Get-Help -Name Get-Command # Get help for a specific PowerShell function
Get-Help -Name Get-Command -Parameter Module # Get help for a specific parameter on a specific command
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active April 20, 2025 09:54
Conventional Commits Cheatsheet

Conventional Commit Messages starline

See how a minor change to your commit message style can make a difference.

Tip

Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs

Commit Message Formats

Default

@fabionoth
fabionoth / using_db_nmap.sh
Last active February 27, 2025 20:15
Guide to using db_nmap
#Start postgres
root@kali ~# systemctl start postgresql
#Start metasploit database
root@kali ~# msfdb init
#Start metasploit framework
root@kali ~# msfconsole
#Iniciado o Metasploit

GoでISUCONを戦う話

mercari.go #4 https://mercari.connpass.com/event/105640/

自己紹介

  • catatsuyというIDで各種SNS活動しています
    • かたついって呼ばれています
  • メルカリのSREチームで主にGoを書いています
  • 前職はピクシブでpixivのHTTPS化・PHP7.1化・HTTP/2化や、広告サーバーの新機能追加など色々やっていました