# Git : Collaborer efficacement sur un même repo
## 1. Récupérer les branches de ses collaborateurs
Quand tes collaborateurs pushent directement sur ton repo (pas un fork), leurs branches sont sur `origin`.
### Récupérer toutes les branches distantes
```bash
git fetch origin
```
### Récupérer une seule branche spécifique
```bash
git fetch origin nom-de-la-branche
```
### Lister les branches distantes disponibles
```bash
git branch -r
```
### Basculer sur une branche d'un collaborateur
### Background
* In production environments using Cloudflare (business plan), video uploading
performed by Rails can be blocked (page may load `No internet connection`) for
files larger than 100 MB.
* To verify if Cloudflare is the issue and not Nginx:
* Check nginx for the following option: `client_max_body_size 500M;`
* Usually within the `server {}` block
* Check the following logs:
* `tail -f /var/log/nginx/error.log`
* `tail -f /var/log/nginx/access.log`
* If nothings git log --patch
git log -p
git log -p app/\(features\)/beacon-money-account/info/free-activation/components/FreeActivationHero.tsx
git log -p ec60ac4 #using commit hash
# or using https://github.com/jonas/tig
tig
curl --location 'https://api.ayvens.com/rms/carmarket/b2c/vehicleads/' \
--header 'x-Ald-Subscription-Key: 6b2007dc3a864fcea99040d8c3e72a69' \
--header 'x-country: fr' \
--header 'User-Agent: Mozilla/5.0' \
--header 'x-partner: ald'
you can add filters if neededsearch for
locationCount --> 525
registrationNumber
previousSalePriceGross
previousSalePriceNet
freeCarBenefit
16990
https://autoselect.arval.fr/voitures-occasion/offer/toyota-corolla-hybride-122h-dynamic-business-stage-academy-129192
23990
https://autoselect.arval.fr/voitures-occasion/offer/toyota-corolla-hybride-140h-active-130002var EquipmentBookingUtils = Class.create();
EquipmentBookingUtils.prototype = {
checkBooking: function(equipmentId, equipmentType, startTime, endTime) {
var result = {
booked_by: "",
approver: ""
};
var gr = new GlideRecord('u_equipment_booking');
gr.query();
while (gr.next()) {
if (gr.u_equipment == equipmentId && gr.u_status != 3) {
if (startTime > gr.u_start_time && startTime1. go to question link : https://www.examtopics.com/discussions/microsoft/view/153758-exam-dp-700-topic-3-question-9-discussion/
2. open consol
3. past this document.getElementById('notRemoverPopup').style.display = 'none';
4. if pasting is not allowed type 'allow pasting'/**
* @param {number} n
* @param {number[][]} edges
* @param {number} k
* @return {number}
*/
var maxStability = function (n, edges, k) {
// -----------------------------
// Disjoint Set Union (Union-Find)
// -----------------------------
class DSU {
constructor(n) {
this.parent = Array.from({ length: n }, (_, i) => i);
this.size = Array(n).fill(1);
this.components = n; // track how many connected components remain
}
## systemd‑journal: useful command
- **Check disk usage** \
`journalctl --disk-usage`
- **Clean journal** \
`sudo journalctl --vacuum-time=7d` \
(**7d** - delete files older 7days)
- **Set limit size** \
`sudo journalctl --vacuum-size=500M`\
(**500M** - keep only the last 500Mb)
- **Delete all journal logs** \
`sudo rm -rf /var/log/journal/*` \
`sudo systemctl restart systemd-journald`
## systemd‑journal: configuration
- open file configuration: \
`sudo nano /etc/systemd/journald.conf
`
```var urls = document.getElementsByTagName('a');
for (var i = 0; i < urls.length; i++) {
console.log(urls[i].href);
}/**
* @param {number} n
* @return {number}
*/
/**
* @param {number} n
* @return {number}
*/
var bitwiseComplement = function(n) {
// Edge case:
// LeetCode defines the complement of 0 as 1.
// Binary: "0" → flip → "1"
if (n === 0) return 1;
// We want to build a mask of all 1s that covers
// exactly the bit-length of n.
//
// Example: n = 10 (1010)
// mask should become 1111 (binary) = 15
//
// Start mask at 1 (binary: 1)
let mask = 1;
(transferring all over the world except banned/blacklisted countries)
Paypal Transfer Rates :
Code:
(Payment Only BTC or PM)
$3000 Transfer = $250 Charges
$3500 Transfer = $230
$4500 Transfer = $400
$6000 Transfer = $500
$8000 Transfer = $550
I have some balance like as and I can still remit more high balance into PayPal acct.
BUY BLANK/CLONED ATM/Credit CARD WITH OVER $100,000 READY FOR CASH OUT
We are a professional carding team with a large ring around the globe. With over 2 #region AutoRecover Module
function Get-AutoRecoverDatInfo {
$LatestSSMSVersionDirectory = Get-ChildItem -Path "${env:APPDATA}\Microsoft\SSMS" -Directory | Sort-Object | Select-Object -Last 1 -ExpandProperty FullName
Get-ChildItem -Path "${LatestSSMSVersionDirectory}\AutoRecoverDat" -Filter *.dat | ForEach-Object {
$File = $_
$Content = Get-Content -Path $File.FullName -Raw -Encoding Unicode
$Lines = [regex]::Split($Content, "(?<={00000000-0000-0000-0000-000Set ws = CreateObject("WScript.Shell")
' 无限循环
Do
' 模拟按下 F15 键 (无实际功能的键,但能刷新系统的活跃倒计时)
ws.SendKeys "{F15}"
' 暂停 4 分钟 (240000 毫秒) 换取 CPU 不占用
WScript.Sleep(240000)
Loop
@echo off
:: 获取当前活动的 RDP 会话 ID
for /f "skip=1 tokens=3" %%s in ('query user %USERNAME%') do (
%windir%\System32\tscon.exe %%s /dest:console
)https://dev.to/m_s_360/a-practical-guide-to-managing-multiple-git-accounts-with-ssh-3134